@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
  --max-width-text: 640px;
  --max-width-block: 1400px;
}

pre {
    border-radius: 10px;
}

pre::-webkit-scrollbar {
    background-color: rgba(255, 255, 0, 0);
    height: 10px;
}

pre::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    border: 2px solid #2d2d2d;
    margin: 3px;
    height: 6px;
    margin: 1px;
}

pre::-webkit-scrollbar-track {
    height: 7px;

}

body {
    /* border: 1px solid black; */
    position: relative;
    /* max-width: 1440px; */
    margin: 0 auto;
}
img{
  cursor: pointer;
}

figure {
  /* height: 400px; */
  border-radius: 0px;
  gap: 3px;
  box-sizing: border-box;
}
/* Mobil görünüm için */
/* @media (max-width: 768px) {
  figure {
      height: 300px !important; 
  /* }
} */

/* @media (max-width: 480px) {
  figure {
      height: 200px !important;
  }
} */ 
figure img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.figure-1 {
  display: flex;
  overflow: hidden;
}
.figure-1 img {
  width: 100%;
}


.figure-2 {
  display: grid;
  /* grid-template-columns: 50% 50%; */
  grid-template-areas:
    "img1 img2";
  overflow: hidden;
}.figure-2 img:nth-child(1) {
  grid-area: img1;
  width: 100%;
  /* height: 100%; */
}.figure-2 img:nth-child(2) {
  grid-area: img2;
  width: 100%;
  /* height: 100%; */
}

.figure-3 {
  display: grid;
  /* grid-template-columns: 50% 50%; */
  grid-template-areas:
    "img1 img2 img3";
  overflow: hidden;
}.figure-3 img:nth-child(1) {
  grid-area: img1;
  width: 100%;
  /* height: 100%; */
}.figure-3 img:nth-child(2) {
  grid-area: img2;
  width: 100%;
  /* height: 100%; */
}.figure-3 img:nth-child(3) {
  grid-area: img3;
  width: 100%;
  /* height: 100%; */
}

.figure-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "img1 img2 img3 img4";
  overflow: hidden;
  gap: 5px;
}

.figure-4 img:nth-child(1) { grid-area: img1; width: 100%; }
.figure-4 img:nth-child(2) { grid-area: img2; width: 100%; }
.figure-4 img:nth-child(3) { grid-area: img3; width: 100%; }
.figure-4 img:nth-child(4) { grid-area: img4; width: 100%; }



.figure-5 {
  display: grid;
  grid-template-columns: 65% 35%;
  grid-template-rows: 50% 50%;
  grid-template-areas:
    "img1 img2"
    "img1 img3";
  overflow: hidden;
}

.figure-5 img:nth-child(1) {
  grid-area: img1;
  width: 100%;
  /* height: 100%; */
}

.figure-5 img:nth-child(2) {
  grid-area: img2;
  width: 100%;
  /* height: 100%; */
}

.figure-5 img:nth-child(3) {
  grid-area: img3;
  width: 100%;
  /* height: 100%; */
}

.figure-6 {
  display: grid;
  grid-template-columns: 35% 35% 30%;
  grid-template-rows: 50% 50%;
  grid-template-areas:
    "img1 img2 img3"
    "img1 img2 img4";
  overflow: hidden;
}

.figure-6 img:nth-child(1) {
  grid-area: img1;
  width: 100%;
  /* height: 100%; */
}

.figure-6 img:nth-child(2) {
  grid-area: img2;
  width: 100%;
  /* height: 100%; */
}

.figure-6 img:nth-child(3) {
  grid-area: img3;
  width: 100%;
  /* height: 100%; */
}
.figure-6 img:nth-child(4) {
  grid-area: img4;
  width: 100%;
  /* height: 100%; */
}

.figure-7 {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  grid-template-areas:
    "img1 img2"
    "img3 img4";
  overflow: hidden;
}
.figure-7 img {
  width: 100%;
  /* height: 100%; */
}





@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)){
    header {
        width: calc(100% - 0px);
        /* max-width: 1440px; */
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1818181818); */
         position: fixed;
        top: -1px;
       /* left: 0px;
        right: 0px; */
        z-index: 10;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        /* background-color: #ffffffcc; */
        /* opacity: 0.2; */
        /* filter: blur(20px);  */
        /* background-color: #fafafccc; */
        backdrop-filter: saturate(1.1) blur(20px);
        -webkit-backdrop-filter: saturate(1.1) blur(20px);

        transition: all .4s ease;
    }  
}
header {
    width: calc(100% - 0px);
    /* max-width: 1440px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1818181818);
    position: fixed;
    top: -1px;
   /*  left: 0px;
    right: 0px; */
    z-index: 10;
    
    /* background-color: #ffffffcc; */
    /* opacity: 0.2; */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    /* filter: blur(20px);  */
    /* background-color: #fafafccc; */
    backdrop-filter: saturate(1.1) blur(20px);
    -webkit-backdrop-filter: saturate(1.1) blur(20px);
    transition: all .4s ease;
}
header .header_wrap {
    height: 60px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* z-index: 10000000; */
    /* background-color: #ffffff00; */
    /* filter: blur(0px); */
}
.name {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.name a {
    text-decoration: none;
    font-size: large;
}
.name svg {
    margin-right: 5px;
    display: none;
}
/* header nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
} */
header nav {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    background-color: #fff;
    width: 250px;
    height: 100vh;
    border-left:1px solid rgba(0, 0, 0, 0.3);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.3); 
    top: 0px;
    left: unset;
    right: 0px;
    transform: unset;
    margin: 0 auto;
    padding: 70px 20px;
    z-index: -1;

}
header nav a {
    font-size: large;
    margin-right: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    white-space: nowrap;
}
header nav a:last-child {
    margin-right: 0px;
}






.container {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0px auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: static;
    margin-top: 100px;
}
.containerRow {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0px auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: static;
    margin-top: 115px;
    min-height: 100vh;
    padding-bottom: 100px !important;
}

aside{
    position: static;
    top: unset;
    width: calc(100% - 20px);
    /* background-color: rgb(250, 250, 250); */
    /* border-radius: 5px; */
    /* margin: 10px; */
   }

main{
    flex: 5;
    padding:0px  20px;
    margin: 0px auto;
    /* min-height: 100vh; */
    width: 100%;
}

aside:first-child{
  order: 3;
}
aside:last-child{
  order: 1;
  position: fixed;
  top: 60px;
  left: 0px;
  right: 0px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    /* filter: blur(20px);  
     background-color: #0000002e; */
    backdrop-filter: saturate(1.1) blur(20px);
    -webkit-backdrop-filter: saturate(1.1) blur(20px);
    transition: all .4s ease;
    width:100% ;
    margin: 0px auto;
    padding: 5px;
}
main{
  order: 2;
}

@media (min-width: 1024px)  {

    .containerRow {
        width: 100%;
        /* max-width: 1400px; */
        margin: 0px auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: row;
        position: static;
        margin-top: 100px;
        
    }
      aside{
        position: sticky;
        top: 100px;
        flex: 2;
        right: unset;
        left: unset;
        user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    /* filter: blur(20px);  */
     background-color: #88bdff33; 
    backdrop-filter: saturate(1.1) blur(20px);
    -webkit-backdrop-filter: saturate(1.1) blur(20px);
        border-radius: 10px;
        padding: 5px;
        width:calc(100% - 20px) ;
        margin: 0px 10px;
       }



       aside:first-child{
        order: 1;
        right: unset;
        left: unset;
      }
      aside:last-child{
        order: 3;
        position: sticky;
        top: 100px;
        right: unset;
        left: unset;
      }
      main{
        order: 2;
        padding: 0px;
      }
}


/* .center {
    width: 100%;
    height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
} */

article iframe , article video {
  width: 100%;
  aspect-ratio: 16 / 9;
}



article .block{
  margin: 30px auto;
}
article .block p:nth-child(1),article .block h1:nth-child(1),article .block h2:nth-child(1),article .block h3:nth-child(1),article .block h4:nth-child(1),article .block h5:nth-child(1),article .block h6:nth-child(1){
  margin-top: 0px;
}
article .block p:nth-last-child(1){
  margin-bottom: 0px;
}

.block .gallery1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: var(--max-width-text);
    margin: 0 auto;
}
.block .gallery1 img {
    width: calc(25% - 10px);
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.block .gallery2 {
  column-count: 4; /* Kaç sütun */
  column-gap: 10px;
}

.block .gallery2 img {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  break-inside: avoid; /* Taşmaları engeller */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery2 {
  column-count: 4;       /* 4 sütun */
  column-gap: 15px;      /* Sütunlar arası boşluk */
  max-width: var(--max-width-block);
  margin: 0 auto;
}

.gallery2 img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  break-inside: avoid;   /* Taşmaları engelle */
  object-fit: cover;
}
.gallery2 img:nth-child(3n) {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16; /* Daha dikey */
  object-fit: cover;
}

.gallery2 img:nth-child(5n) {
  aspect-ratio: 16 / 9; /* Daha yatay */
  object-fit: cover;
}


.gallery3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-auto-rows: 120px; /* Kare temel boyut */
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}

.gallery3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Farklı boyutlarda mozaik efektleri */
.gallery3 img.wide {
  grid-column: span 2; /* 2 kare genişliğinde */
}
.gallery3 img.tall {
  grid-row: span 2; /* 2 kare yüksekliğinde */
}
.gallery3 img.big {
  grid-column: span 2;
  grid-row: span 2; /* 2x2 kare */
}



.gallery4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-auto-rows: 120px; /* Kare birim */
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}

.gallery4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery4 img:nth-child(1) {
  grid-column: span 2;
}
/* 🔹 3. eleman → yatay geniş */
.gallery4 img:nth-child(3n) {
  grid-column: span 2;
}

/* 🔹 5. eleman → dikey uzun */
.gallery4 img:nth-child(5) {
  grid-row: span 3;
}

/* 🔹 7. eleman → 2x2 büyük kare */
.gallery4 img:nth-child(7n) {
  grid-column: span 2;
  grid-row: span 2;
}

/* 🔹 10. eleman → dikey uzun */
.gallery4 img:nth-child(10) {
  grid-row: span 2;
}

/* 🔹 12. eleman → dikey uzun */
.gallery4 img:nth-child(12) {
  grid-column: span 3;
}










#articles {
    position: sticky;
    /* left: 10px; */
    top: 65px;
    width: calc(100% - 20px);
    margin: 10px auto;
    /* height: 55px; */
    /* padding: 10px; */
    border-radius: 5px;
    /* border: 1px solid rgb(0, 0, 0); */
    /* background-color: #ffffff; */
    overflow-y: hidden;
    transition: all .4s ease;
    z-index: 3;
}
#contents {
    position: fixed;
    /* left: -100vw; */
    width: 100vw;
    /* height: calc(100vh - 54px); */
    /* background-color: #fafafccc; */
    overflow-y: scroll;
    transition: all .4s ease;
    z-index: 3;
    /* backdrop-filter: saturate(1.8) blur(20px); */
    /* border-left: 1px solid rgba(0, 0, 0, 0.1818181818);
    border-right: 1px solid rgba(0, 0, 0, 0.1818181818); */
}


aside a{
    display: block;
    list-style: none;
    width: 100%;
    /* color: #2f2f2f; */
    text-wrap: pretty;
    line-height: 1;
    text-decoration: none;
    font-size: 17px;
    transition: all .1s linear;
    border-radius: 5px;
    padding: 7px;
    padding-left: 10px;
}

aside a:hover {
   /* background-color: #F5F5F5; */
   
}

/* ::-webkit-scrollbar {
    width: 0;
} */



/* article iframe{
    width: 100%;
    height: calc(100% );
    border: none;
    border-radius: 10px;
} */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oranı = 9 / 16 = 0.5625 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
  }

 
  #scopeArticleBox a.active {
    color: #FE7743 !important;
    /* font-weight: bold !important; */
  }


article {
    width: 100% !important;
    /* min-height: 100vh; */
    padding: 0px !important;
    margin: 0px auto !important;
    /* padding-bottom: 100px !important; */
}
article h1:empty::before{
    content: "Başlık ekleyin";
}
article  p:empty::before{
    content: "Yazmaya başlayın #tag ler icin  # kullanın";
}
article ul, article ol{
  width: 100%;
  max-width: var(--max-width-text);
  margin: 30px auto;
  padding-left: 20px;
}
article ul ul, article ol ol, article ol ul, article ul ol{
  width: 100%;
  margin: 20px auto;
}
.blog_main_1{
    width: 100% !important;
    max-width: 1200px !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 0px !important;
    flex-wrap: wrap;
}
#breadcrumb{
    width: 100% !important;
    max-width: var(--max-width-text) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto !important;
    margin-bottom: 20px;
}
#breadcrumb a{
    text-decoration: none;
    /* color: #5f5f5f; */
    margin-right: 20px;
}#breadcrumb a:last-child{
    text-decoration: none;
    /* color: #5f5f5f; */
    margin-right: 0px;
}
#breadcrumb a:hover{
    /* color:#2d2d2d; */
}
.blog_main_1 .first_div {
    margin: 10px;
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 0px;
    border: 1px solid black;
    display: none;
}

.blog_main_1 .first_div h1 {
    line-height: 1;
}

.blog_main_1 .first_div p {
    margin: 10px 0;
}

.blog_main_1 .first_div img {
    width: 100%;
}

.blog_main_1 .post_div {
    /* margin: 10px; */
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    /* color: #2d2d2d; */
    padding: 10px;
    text-decoration: none;
    border: 1px solid transparent;
}
.blog_main_1 .post_div:hover {
   /* background-color: #e55757; */
    /* color: black; */
    /* border: 1px solid rgba(0, 0, 0, 0.1818181818); */
    /* box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1818181818); */
    /* transition: all .4s ease;
    border: 1px solid black; */
}
.blog_main_1 .post_image {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center center;
    margin-bottom: 26px;
    transition: all .8s ease;
    border-radius: 10px;
    /* border: 2px solid black; */
}

.blog_main_1 .post_count {
    display: block;
    font-size: 20px;
    font-weight: bolder;
    display: none;
}

.blog_main_1 .post_title {
    font-size: 24px;
    font-weight: bolder;
    width: 100%;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; */
}

.blog_main_1 .post_title::before {
    content: '\2014';
}

.blog_main_1 .post_author {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Maksimum 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Taşan kısmı "..." yap */
    white-space: normal;
    /* Satır kırılmasına izin ver */
}

.blog_main_1 .post_description {
    font-size: 20px;
    width: 100%;
    margin-top: 10px;
    /* Genişliği belirle (içeriğe göre ayarla) */
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; */
}

.blog_main_1 .post_link {
    display: block;
    font-size: 18px;
    font-weight: bolder;
    text-decoration: none;
    margin-top:20px;
    /* color:#5f5f5f; */
}
.blog_main_1 .post_link:hover {
    /* color: tomato !important; */
}
hr {
    width: 100%;
    margin: 10px 0;
    border: 1px solid black;
}


footer {
    height: fit-content;
    width: 100%;
    /* height: 100vh; */
    padding: 50px;
    /* background-color: #F5F5F5; */
    border-top: 1px solid gainsboro;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
footer a{
    text-decoration: none;
    margin-right: 10px;
    /* color: #424242; */
}

/* @media (min-width: 425px)  {

    .blog_main_1 .post_div,
    .blog_main_1 .first_div {
        margin: 10px;
        width: calc((100% - 40px) / 2);

    }
   
} */

@media (min-width: 768px)  {

    .blog_main_1 .post_div,
    .blog_main_1 .first_div {
        margin: 20px;
        width: calc((100% - 120px) / 2);

    }
   
}

@media (min-width: 1025px) {

    .blog_main_1 .post_div,
    .blog_main_1 .first_div {
        margin: 20px;
        width: calc((100% - 160px) / 2);

    }
   
    header nav {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        position: absolute;
        background-color: unset;
        width: unset;
        height: unset;
        border-left: none;
        box-shadow: unset; 
        top: unset;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
        padding: unset;
        z-index: unset;
    
    }
    header nav a {
        font-size: large;
        margin-right: 20px;
        margin-bottom: unset;
        text-decoration: none;
        /* color: black; */
        white-space: nowrap;
    }

    .bi-list{
        display: none;
    }
 
}


@media screen and (min-width:1200px) {

    .name svg {
        display: inline;
    }

    #articles, #contents {
        position: sticky;
        left: 0px;
        top: 64px;
        width: 300px;
        height: auto;
        /* height: calc(100vh - 74px); */
        /* background-color: rgba(220, 182, 182, 0); */
        border: none;
        font-size: x-large;
        border-radius: 10px;
        padding: 10px;
        overflow-y: auto;
    }

    /* aside li {
        font-size: xx-large;
        margin-bottom: 0;
        line-height: 1;
        font-weight: lighter;
    }

    aside a {
        font-size: xx-large;
        margin-bottom: 0;
        line-height: 1;
    } */

    #toggleArticles, #toggleContents {
        display: none;
    }



}





 /* Küçük mobil cihazlar (320px - 480px) */
@media (max-width: 480px) {
    .font1 { font-size: 24px; }
    .font2 { font-size: 26px; }
    .font3 { font-size: 28px; }
    .font4 { font-size: 30px; }
    .font5 { font-size: 32px; }
    .font6 { font-size: 34px; }
    .font7 { font-size: 36px; }
  }
  
  /* Orta mobil cihazlar (481px - 767px) */
  @media (min-width: 481px) and (max-width: 767px) {
    .font1 { font-size: 26px; }
    .font2 { font-size: 28px; }
    .font3 { font-size: 30px; }
    .font4 { font-size: 32px; }
    .font5 { font-size: 34px; }
    .font6 { font-size: 36px; }
    .font7 { font-size: 38px; }
  }
  
  /* Tabletler (768px - 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .font1 { font-size: 28px; }
    .font2 { font-size: 30px; }
    .font3 { font-size: 32px; }
    .font4 { font-size: 34px; }
    .font5 { font-size: 36px; }
    .font6 { font-size: 38px; }
    .font7 { font-size: 40px; }
  }
  
  /* Dizüstü bilgisayar ve küçük masaüstü cihazlar (1025px - 1280px) */
  @media (min-width: 1025px) and (max-width: 1280px) {
    .font1 { font-size: 32px; }
    .font2 { font-size: 34px; }
    .font3 { font-size: 36px; }
    .font4 { font-size: 38px; }
    .font5 { font-size: 40px; }
    .font6 { font-size: 42px; }
    .font7 { font-size: 44px; }
  }
  
  /* Büyük masaüstü cihazlar (1281px ve üzeri) */
  @media (min-width: 1281px) {
    .font1 { font-size: 36px; }
    .font2 { font-size: 40px; }
    .font3 { font-size: 44px; }
    .font4 { font-size: 48px; }
    .font5 { font-size: 52px; }
    .font6 { font-size: 56px; }
    .font7 { font-size: 60px; }
  }
  




  /* Sürüklenen öğe için özel sınıf */
.sortable-ghost {
    opacity: 0.5;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Seçilen öğeye özel stil */
.chosen-item {
    background-color: rgb(255, 255, 255);
    border: 1px solid #000000; border-radius: 10px;
    padding: 2px 9px;
}

/* Sürüklenen öğe için stil */
.dragging {
    border: 1px dashed #000000;
    opacity: 0.7;
}


.post_list_link{
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-decoration: none;
    width: 100%;
    height: fit-content;
    margin-bottom: 0px;
    padding: 10px;
    line-height: 1;
    font-size: medium;
}
.post_list_link .inlineSpan{
    /* display: inline-block; */
    /* width: 4em; */
    height: min-content;
    position: relative;
    margin:0px 2px;
    line-height: 1 !important;
}
/* .post_list_link .inlineSpan::after,.post_list_link .inlineSpan::before{
    content: '"';
} */
.post_list_link:hover{
    /* background-color: #F5F5F5; */
    border-radius: 5px;
}
.post_list_link>img{
    width: 60px !important;
    height: 60px !important;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
    object-fit: cover;
    object-position: center center;
}.post_list_link div{
    /* width: calc(100% - 70px); */
    width: 100%;
    height: auto;
    display: inline-block;
}


#scopeArticleBox,.articles_list{
 position: sticky;
 top: 60px;
}
.dev_post_t{
    border: 1px solid gainsboro;
    border-radius: 50px;
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bolder;
    /* color: #2d2d2d; */
    margin-right: 10px;
}

.comments_container{
    width: 100%;
    max-width: var(--max-width-text);
    min-height: 200px;
    height: auto;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #2d2d2d;
    border-radius: 20px;
    /* background: linear-gradient(transparent , ghostwhite); */
}
.comments_container #commentsUl{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
.comments_container #commentsUl li{
    width: 100%;
    text-decoration: none;
    list-style:circle;
    margin-top: 10px;
    margin-left: 20px;
}

.other_post{
    width: 100%;
    height: auto;
    background: linear-gradient(transparent , #F5F5F5) ;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    /* justify-content: flex-start; */
    flex-wrap: wrap;
    /* gap: 5px; */
    padding: 10px;
    margin-top: 100px;
}
.other_post_title{
    width: 100%;
    height: auto;
    font-size: 30px;
    /* color: #2d2d2d; */
    margin-bottom: 20px;
    text-align: center;
}
.other_post_item{
    width: 100%;
    /* border: 1px solid black; */
    padding: 10px;
    /* background-color: #fff; */
    margin-bottom: 20px;
}
.other_post_item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    margin-bottom: 10px;
}
.other_post_item a{
    text-decoration: none;
    /* color: #000000; */
    /* margin-top: 10px; */
}
.other_post_item a:hover{
    text-decoration: underline;
    /* color: #5c5c5c; */
}




@media (min-width: 768px) {
  
    .other_post{
        width: 100%;
        height: auto;
        background: linear-gradient(transparent , #F5F5F5) ;
        display: flex;
        /* align-items: flex-start; */
        /* justify-content: flex-start; */
        flex-direction: row;
        flex-wrap: wrap;
        /* gap: 5px; */
        padding: 100px;
        margin-top: 100px;
    }
    .other_post_item{
        width: 25%;
        /* border: 1px solid black; */
        padding: 20px;
        /* background-color: #fff; */
        margin-bottom: 20px;
    }
}


/* article.style1 */
article.style1 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    margin: 30px auto !important;
    padding: 10px;
    position: relative;
    border-left: 2px solid black;
  }
  
  article.style1 ol,article.style1 ul{
    margin-left: 15px;
  }

  article.style1 h1,
  article.style1 h2,
  article.style1 h3,
  article.style1 h4,
  article.style1 h5,
  article.style1 h6{
        scroll-margin-top: 70px;
    }

  
    article.style1 h1,
    article.style1 h2,
    article.style1 h3,
    article.style1 h4,
    article.style1 h5,
    article.style1 blockquote,
    article.style1 table,
    article.style1 h6,
    article.style1 p{
        margin: 30px auto;
        width: 100%;
        max-width: var(--max-width-text);
    }

    article.style1 figure, 
    article.style1 figure img,
    article.style1 > img,
    article.style1 ol,
    article.style1 ul,
    article.style1 pre{
        width: 100%;
    }

    article.style1 figure, 
    article.style1 iframe,
    article.style1 video{
        width: 100%;
        max-width: var(--max-width-text);
        margin: 30px auto;
    }
    article.style1 iframe,
    article.style1 video{
        display: block;
    }
    article.style1 ol,
    article.style1 ul,
    article.style1 pre{
        width: 100%;
        margin: 30px auto;
    } article.style1 ol,article ul{
      margin-left: 15px;
    }
    article.style1 details p{
      margin: 10px auto !important;
      width: 100%;
      padding: 0px 20px;
    }
 
    article.style1 figure{
      margin-bottom: 30px;
    }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px){
   
  }
  
  @media (min-width: 769px) {
 

  }
  
  @media (min-width: 1025px) {
  
  }
  
  @media (min-width: 1201px) {
  
 
   
  }
  
  @media (min-width: 1401px) {
  

  }
  
  @media (min-width: 1601px) {

  }
/* article.style2 */

article.style2 h1,
article.style2 h2,
article.style2 h3,
article.style2 h4,
article.style2 h5,
article.style2 h6{
    scroll-margin-top: 70px;
}
article.style2 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    margin: 50px auto !important;
  }
  article.style2 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style2 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style2 ol,article ul{
    margin-left: 15px;
  }
  

  
  article.style2 h1,
  article.style2 h2,
  article.style2 h3,
  article.style2 h4,
  article.style2 h5,
  article.style2 blockquote,
  article.style2 table,
  article.style2 h6,
  article.style2 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style2 figure, article.style2 figure img,
  article.style2 > img,
  article.style2 ol,
  article.style2 ul,
  article.style2 pre{
      width: 100%;
  }

  article.style2 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }
  article.style2 ol,
  article.style2 ul,
  article.style2 pre{
      width: 100%;
      margin: 30px auto;
  }article.style2 ol,article.style2 ul{
    margin-left: 15px;
  }
  article.style2 figure{
    margin-bottom: 30px;
  }

  article.style2 h1::before {
      content: attr(data-category); /* data-title atributunun içeriğini alır */
      display: block; /* Blok olarak göstermek için (isteğe bağlı) */
      font-size: 1.2rem; /* Stil özellikleri */
      color: gray; /* Renk */
      margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
  }
  article.style2 h1::after {
      content: attr(data-date); /* data-title atributunun içeriğini alır */
      display: block; /* Blok olarak göstermek için (isteğe bağlı) */
      font-size: 1.2rem; /* Stil özellikleri */
      color: gray; /* Renk */
      margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
  }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
 

  }
  
  @media (min-width: 1025px)  {
    article.style2 details,
    article.style2 h2,
    article.style2 h3,
    article.style2 h4,
    article.style2 h5,
    article.style2 h6,
    article.style2 table,
    article.style2 ol,
    article.style2 ul,
    article.style2 p{
      margin: 30px auto;
      width: 65%;
  }

  
  article.style2 figure,
  article.style2 iframe,
  article.style2 pre,
  article.style2 img{
      width: 80% ;
      margin:  0px auto;
  }

  article.style2 blockquote,
  article.style2 h1{
      margin: 30px auto;
      width: 90%;
  }

  article.style2 figure:first-of-type{
      width: 100% ;
  }
  article.style2 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }
  }
  
  @media (min-width: 1201px)  {
 
  
  }
  
  @media (min-width: 1401px) {
   


  }
  
  @media (min-width: 1601px) {

  }




/* article.style3 */
article.style3 h1,
article.style3 h2,
article.style3 h3,
article.style3 h4,
article.style3 h5,
article.style3 h6{
    scroll-margin-top: 70px;
}
article.style3 blockquote {
    font-style: italic;
    margin: 1.5rem auto !important;
    line-height: 1.3;
  }article.style3
  article.style3 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style3 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style3 ol,article.style3 ul{
    margin-left: 15px;
  }
 

   
  article.style3 h1,
  article.style3 h2,
  article.style3 h3,
  article.style3 h4,
  article.style3 h5,
  article.style3 blockquote,
  article.style3 table,
  article.style3 h6,
  article.style3 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style3 figure, article.style3 figure img,
  article.style3 > img,
  article.style3 ol,
  article.style3 ul,
  article.style3 pre{
      width: 100%;
  }

  article.style3 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style3 figure{
    margin: 0px auto;
    margin-bottom: 30px;
  }
  article.style3 ol,
  article.style3 ul,
  article.style3 pre{
      width: 100%;
      margin: 30px auto;
  }article.style3 ol,article.style3 ul{
    margin-left: 15px;
  }
  
  article.style3 h1::after {
      content:attr(data-date) attr(data-category); /* data-title atributunun içeriğini alır */
      display: block; /* Blok olarak göstermek için (isteğe bağlı) */
      font-size: 1.2rem; /* Stil özellikleri */
      color: gray; /* Renk */
      margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
  }
  


     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {

  }
  
  @media (min-width: 769px){
    /* article.style3 h1{
      font-size: 4rem;
    } */
    
  article.style3 details,
  article.style3 h1,
  article.style3 h2,
  article.style3 h3,
  article.style3 h4,
  article.style3 h5,
  article.style3 blockquote,
  article.style3 table,
  article.style3 h6,  article ol,
  article.style3 ul,
  article.style3 pre,
  article.style3 p{
      margin: 30px auto;
      width: 80%;
  }
 
  article.style3 figure ,
  article.style3 iframe,
  article.style3 img{
      width: 80% ;
      /* margin: 0px auto; */
  }

  article.style3 figure:first-of-type{
    width: 100% ;
}
article.style3 details p{
  margin: 10px auto !important;
  width: 100%;
  padding: 0px 20px;
}
  }
  
  @media (min-width: 1025px)  {
 
  }
  
  @media (min-width: 1201px) {
 
   
   
  }
  
  @media (min-width: 1401px) {

  }
  
  @media (min-width: 1601px) {

    
  
  }





/* article.style4 */
article.style4 h1,
article.style4 h2,
article.style4 h3,
article.style4 h4,
article.style4 h5,
article.style4 h6{
    scroll-margin-top: 70px;
}
article.style4 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    margin: 50px auto !important;
    text-align: center;
  }
  article.style4 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style4 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style4 ol,article.style4 ul{
    margin-left: 15px;
  }
  

 
  
  article.style4 h1,
  article.style4 h2,
  article.style4 h3,
  article.style4 h4,
  article.style4 h5,
  article.style4 blockquote,
  article.style4 table,
  article.style4 h6,
  article.style4 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style4 figure, article.style4 figure img,
  article.style4 > img,
  article.style4 ol,
  article.style4 ul,
  article.style4 pre{
      width: 100%;
  }
  article.style4 ol,
  article.style4 ul,
  article.style4 pre{
      width: 100%;
      margin: 30px auto;
  }article.style4 ol,article.style4 ul{
    margin-left: 15px;
  }
  article.style4 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style4 figure{
    margin-bottom: 30px;
  }
    article.style4 h1{
        text-align: center;
    }


    article.style4 h1::before {
      content: attr(data-category); /* data-title atributunun içeriğini alır */
      display: block; /* Blok olarak göstermek için (isteğe bağlı) */
      font-size: 1.2rem; /* Stil özellikleri */
      color: gray; /* Renk */
      margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
  }
  article.style4 h1::after {
      content: attr(data-date); /* data-title atributunun içeriğini alır */
      display: block; /* Blok olarak göstermek için (isteğe bağlı) */
      font-size: 1.2rem; /* Stil özellikleri */
      color: gray; /* Renk */
      margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
  }


     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
 
  }
  
  @media (min-width: 1025px)  {
   
  }
  
  @media (min-width: 1201px)  {
  
    article.style4 h1{
        font-size: 3rem;
        width: 95%;
        margin-bottom: 30px;
    }

    article.style4 details,
    article.style4 h2,
    article.style4 h3,
    article.style4 h4,
    article.style4 h5,
    article.style4 blockquote,
    article.style4 table,
    article.style4 h6,
    article.style4 p{
        margin: 30px auto;
        width: 80%;
    }

    article.style4 iframe,
    article.style4 ol,
    article.style4 ul,
    article.style4 pre{
        width: 80% !important;
    }

    article.style4 figure,
    article.style4 img{
        width: 100%;
    }

    article.style4 details p{
      margin: 10px auto !important;
      width: 100%;
      padding: 0px 20px;
    }

  }
  
  @media (min-width: 1401px) {
  
    /* article.style4 h1{
        font-size: 4rem;
    } */

  }
  
  @media (min-width: 1601px) {

  }








/* article.style5 */
article.style5 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    margin: 50px auto !important;
  }
  article.style5 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style5 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style5 ol,article.style5 ul{
    margin-left: 15px;
  }
  
  article.style5 h1,
  article.style5 h2,
  article.style5 h3,
  article.style5 h4,
  article.style5 h5,
  article.style5 h6{
      scroll-margin-top: 70px;
  }

 
   
  article.style5 h1,
  article.style5 h2,
  article.style5 h3,
  article.style5 h4,
  article.style5 h5,
  article.style5 blockquote,
  article.style5 table,
  article.style5 h6,
  article.style5 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style5 figure, article.style5 figure img,
  article.style5 > img,
  article.style5 ol,
  article.style5 ul,
  article.style5 pre{
      width: 100%;
  }
  article.style5 ol,
  article.style5 ul,
  article.style5 pre{
      width: 100%;
      margin: 30px auto;
  }article.style5 ol,article.style5 ul{
    margin-left: 15px;
  }
  article.style5 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style5 figure{
    margin-bottom: 30px;
  }

    article.style5 h1::before {
        content: attr(data-category); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }
    article.style5 h1::after {
        content: attr(data-date); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
    article.style5 details,
    article.style5 h1,
    article.style5 h2,
    article.style5 h3,
    article.style5 h4,
    article.style5 h5,
    article.style5 blockquote,
    article.style5 table,
    article.style5 h6,
    article.style5 p{
        margin: 30px auto;
        width: 80%;
    }
    article.style5 iframe,
    article.style5 ol,
    article.style5 ul,
    article.style5 pre{
        width: 80% !important;
    }

    article.style5 figure,
    article.style5 img{
        width: 80% ;
        margin: 0px auto;
    }

    article.style5 figure:first-of-type{
      width: 100% ;
      margin: 0px auto;
  }
  article.style5 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }
  }
  
  @media (min-width: 1025px){
 
   
  }
  
  @media (min-width: 1201px) {
  
  
  }
  
  @media (min-width: 1401px) {


  }
  
  @media (min-width: 1601px) {

  

  }






/* article.style6 */
article.style6 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    margin: 50px auto !important;
  }
  article.style6 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style6 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style6 ol,article.style6 ul{
    margin-left: 15px;
  }
  
  article.style6 h1,
  article.style6 h2,
  article.style6 h3,
  article.style6 h4,
  article.style6 h5,
  article.style6 h6{
      scroll-margin-top: 70px;
  }
    
  article.style6 h1,
  article.style6 h2,
  article.style6 h3,
  article.style6 h4,
  article.style6 h5,
  article.style6 blockquote,
  article.style6 table,
  article.style6 h6,
  article.style6 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style6 figure, article.style6 figure img,
  article.style6 > img,
  article.style6 ol,
  article.style6 ul,
  article.style6 pre{
      width: 100%;
  }

  article.style6 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style6 figure{
    margin-bottom: 30px;
  }
  article.style6 ol,
  article.style6 ul,
  article.style6 pre{
      width: 100%;
      margin: 30px auto;
  }article.style6 ol,article.style6 ul{
    margin-left: 15px;
  }
    article.style6 h1::before {
        content: attr(data-category); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }
    article.style6 h1::after {
        content: attr(data-date); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }


     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px){
    
    article.style6 details,
    article.style6 blockquote,
    article.style6 table,
    article.style6 p{
        margin: 30px auto;
        width: 80%;
    }
    article.style6 iframe,
    article.style6 ol,
    article.style6 ul,
    article.style6 pre{
        width: 80% !important;
    }
   
    article.style6 figure,
    article.style6 img{
        width: 80% ;
        margin: 0px auto;
    }

    article.style6 figure:first-of-type{
      width: 100% ;
      margin: 0px auto;
  }
  article.style6 details p{
    margin: 10px auto !important;
    width: 100% !important;
    padding: 0px 20px;
  }
  }
  
  @media (min-width: 1025px) {
   
  
  }
  
  @media (min-width: 1201px) {

  }
  
  @media (min-width: 1401px)   {
   
   

  }
  
  @media (min-width: 1601px)  {

   

  }





/* article.style7 */
article.style7 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
  }
  article.style7 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style7 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style7 ol,article.style7 ul{
    margin-left: 15px;
  }
  

  article.style7 h1,
  article.style7 h2,
  article.style7 h3,
  article.style7 h4,
  article.style7 h5,
  article.style7 h6{
      scroll-margin-top: 70px;
  }
  
  article.style7 h1,
  article.style7 h2,
  article.style7 h3,
  article.style7 h4,
  article.style7 h5,
  article.style7 blockquote,
  article.style7 table,
  article.style7 h6,
  article.style7 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style7 figure, article.style7 figure img,
  article.style7 > img,
  article.style7 ol,
  article.style7 ul,
  article.style7 pre{
      width: 100%;
  }
  article.style7 ol,
  article.style7 ul,
  article.style7 pre{
      width: 100%;
      margin: 30px auto;
  }article.style7 ol,article.style7 ul{
    margin-left: 15px;
  }
  article.style7 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style7 figure{
    margin-bottom: 30px;
  }
    article.style7 h1::before {
        content: attr(data-category); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }
    article.style7 h1::after {
        content: attr(data-date); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
   
    article.style7 details,
    article.style7 h2,
    article.style7 h3,
    article.style7 h4,
    article.style7 h5,
    article.style7 table,
    article.style7 h6,
    article.style7 p{
        margin: 30px 0;
        margin-left: auto;
        width: 60%;
    }
    
    article.style7 iframe,
    article.style7 ol,
    article.style7 ul,
    article.style7 pre{
        margin: 30px 0;
        margin-left: auto;
        width: 60% !important;
    }
    article.style7 h1,
    article.style7 figure,
    article.style7 img{
        width: 100% ;
        margin: 0px auto;
    }
    article.style7 blockquote{
        width: 80%;
        margin-right: 0px;
        margin-left: auto !important;
    }
    article.style7 details p{
      margin: 10px auto !important;
      width: 100%;
      padding: 0px 20px;
    }

  }
  
  @media (min-width: 1025px){
   
  
  
  }
  
  @media (min-width: 1201px) {
  
  

  }
  
  @media (min-width: 1401px){
   
  
  

  }
  
  @media (min-width: 1601px) {


  }





/* article.style8 */

article.style8 blockquote {
    font-style: italic;
    margin: 1.5rem 0px;
  }
  article.style8 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style8 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style8 ol,article.style8 ul{
    margin-left: 15px;
  }
  

 
   
  article.style8 h1,
  article.style8 h2,
  article.style8 h3,
  article.style8 h4,
  article.style8 h5,
  article.style8 blockquote,
  article.style8 table,
  article.style8 h6,
  article.style8 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style8 figure, article.style8 figure img,
  article.style8 > img,
  article.style8 ol,
  article.style8 ul,
  article.style8 pre{
      width: 100%;
  }

  article.style8 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style8 figure{
    margin-bottom: 30px;
  }
  article.style8 ol,
  article.style8 ul,
  article.style8 pre{
      width: 100%;
      margin: 30px auto;
  }article.style8 ol,article.style8 ul{
    margin-left: 15px;
  }
    article.style8 h1,
    article.style8 h2,
    article.style8 h3,
    article.style8 h4,
    article.style8 h5,
    article.style8 h6{
        scroll-margin-top: 70px;
    }

    article.style8 h1::before {
        content: attr(data-category); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }
    article.style8 h1::after {
        content: attr(data-date); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
    
    article.style8 details,
    article.style8 h2,
    article.style8 h3,
    article.style8 h4,
    article.style8 h5,
    article.style8 table,
    article.style8 h6,
    article.style8 p{
        margin: 30px 0;
        margin-right: auto;
        width: 60%;
    }
    
    
    article.style8 iframe,
    article.style8 ol,
    article.style8 ul,
    article.style8 pre{
        margin: 30px 0;
        margin-right: auto;
        width: 60% !important;
    }
    article.style8 h1,
    article.style8 figure,
    article.style8 img{
        width: 100% ;
    }
    article.style8 blockquote{
        width: 80%;
        margin-left: 0px;
        margin-right: auto !important;
    }
    article.style8 details p{
      margin: 10px auto !important;
      width: 100%;
      padding: 0px 20px;
    }
  }
  
  @media (min-width: 1025px){
   

  
  }
  
  @media (min-width: 1201px) {
  


  }
  
  @media (min-width: 1401px){

  

  }
  
  @media (min-width: 1601px) {

 

  }
/* article.style9 */

article.style9 h1,
article.style9 h2,
article.style9 h3,
article.style9 h4,
article.style9 h5,
article.style9 h6{
    scroll-margin-top: 70px;
}
article.style9 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
  }
  article.style9 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style9 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style9 ol,article.style9 ul{
    margin-left: 15px;
  }
  

  article.style9 h1,
  article.style9 h2,
  article.style9 h3,
  article.style9 h4,
  article.style9 h5,
  article.style9 blockquote,
  article.style9 table,
  article.style9 h6,
  article.style9 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style9 figure, article.style9 figure img,
  article.style9 > img,
  article.style9 ol,
  article.style9 ul,
  article.style9 pre{
      width: 100%;
  }
  article.style9 ol,
  article.style9 ul,
  article.style9 pre{
      width: 100%;
      margin: 30px auto;
  }article.style9 ol,article.style9 ul{
    margin-left: 15px;
  }
  article.style9 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style9 figure{
    margin-bottom: 30px;
  }
    article.style9 h1::before {
        content: attr(data-category); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }
    article.style9 h1::after {
        content: attr(data-date); /* data-title atributunun içeriğini alır */
        display: block; /* Blok olarak göstermek için (isteğe bağlı) */
        font-size: 1.2rem; /* Stil özellikleri */
        color: gray; /* Renk */
        margin-bottom: 0.5rem; /* Altındaki içeriğe biraz boşluk bırakır */
    }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
    
    article.style9 details,
    article.style9 iframe,
    article.style9 ol,
    article.style9 ul,
    article.style9 pre,
    article.style9 h2,
    article.style9 h3,
    article.style9 h4,
    article.style9 h5,
    article.style9 table,
    article.style9 h6,
    article.style9 p{
        margin: 30px 0;
        margin-right: 100px;
        margin-left: auto;
        width: 60%;
    }
    article.style9 figure,
    article.style9>img{
        margin: 30px 0;
        margin-right: 100px;
        margin-left: auto;
        width: 60%;
    }
    article.style9 h1{
        width: 100% ;
    }

    article.style9 blockquote{
        width: 80%;
    }
    article.style9 details p{
      margin: 10px auto !important;
      width: 100%;
      padding: 0px 20px;
    }
  }
  
  @media (min-width: 1025px){
   

  
  }
  
  @media (min-width: 1201px) {


  }
  
  @media (min-width: 1401px){
   
  
  

  }
  
  @media (min-width: 1601px) {



  }
/* article.style10 */

article.style10 h1,
article.style10 h2,
article.style10 h3,
article.style10 h4,
article.style10 h5,
article.style10 h6{
    scroll-margin-top: 70px;
}

article.style10 blockquote {
    font-style: italic;
    margin: 1.5rem 0;
  }
  article.style10 blockquote::before{
    content: '"';
    font-size: 2rem;
  }
  article.style10 blockquote::after{
    content: '"';
    font-size: 2rem;
  }
  article.style10 ol,article.style10 ul{
    margin-left: 15px;
  }
  
   
  article.style10 h1,
  article.style10 h2,
  article.style10 h3,
  article.style10 h4,
  article.style10 h5,
  article.style10 blockquote,
  article.style10 table,
  article.style10 h6,
  article.style10 p{
      margin: 30px auto;
      width: 100%;
  }

  article.style10 figure,
  article.style10 figure img,
  article.style10 > img,
  article.style10 ol,
  article.style10 ul,
  article.style10 pre{
      width: 100%;
  }
  article.style10 ol,
  article.style10 ul,
  article.style10 pre{
      width: 100%;
      margin: 30px auto;
  }article.style10 ol,article.style10 ul{
    margin-left: 15px;
  }
  
  article.style10 details p{
    margin: 10px auto !important;
    width: 100%;
    padding: 0px 20px;
  }

  article.style10 figure{
    margin-bottom: 30px;
  }
    article.style10 h1{
        border-bottom: 5px solid gainsboro;
        margin-bottom: 30px !important;
        padding-bottom: 20px;
    }



     /* Medya sorguları ile duyarlı font ölçeklendirmesi */
  @media (max-width: 425px) {
  
  }
  
  @media (min-width: 426px) {
   
  }
  
  @media (min-width: 769px) {
    
    article.style10 details,
    article.style10 iframe,
    article.style10 ol,
    article.style10 ul,
    article.style10 pre,
    article.style10 h2,
    article.style10 h3,
    article.style10 h4,
    article.style10 h5,
    article.style10 table,
    article.style10 h6,
    article.style10 p{
        margin: 30px auto;
        width: 60%;
    }
    
    article.style10 h1{
        width: 100% !important;
        margin: 0px auto;
    }
    
    article.style10 figure,
    article.style10 > img{
        width: 80% !important;
        margin: unset !important;
        margin-left: auto !important;
    }

    article.style10 blockquote{
        width: 60%;
    }
    article.style10 details p{
      margin: 10px auto !important;
      width: 100%;
      padding: 0px 20px;
    }

  }
  
  @media (min-width: 1025px){
   

  
  }
  
  @media (min-width: 1201px) {
  
  

  }
  
  @media (min-width: 1401px){
   
 
  

  }
  
  @media (min-width: 1601px) {

 

  }