/* =========================================================
   KATEGORİ SAYFASI — TEMİZ VE OPTİMİZE CSS
   ========================================================= */

.sz-main-wrapper{
  background:#fff;
  width:100%;
  font-family:"Cairo",sans-serif;
}

.sz-custom-container{
  max-width:1300px;
  margin:0 auto;
  padding:15px 15px;
  font-family:inherit;
}

/* =========================================================
   HEADER / HERO
   ANA SAYFA GİRİŞ KUTUSUNA YAKIN
   ========================================================= */

.sz-new-header{
  position:relative;
  margin-bottom:20px;
  padding:14px 20px 12px;
  border:1px solid #e8e8e8;
  border-bottom:1px solid #e8e8e8;
  background:#fff;
  box-shadow:none;
  overflow:hidden;
}

.sz-new-header::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:#bd081c;
}

.sz-flex-row{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

/* =========================================================
   BAŞLIK ALANI
   ========================================================= */

.sz-title-area{
  flex:1;
  min-width:0;
}

.sz-page-title{
  display:block;
  margin:0;
  font-size:30px;
  line-height:1.15;
  font-weight:700;
  color:#111;
  font-family:inherit;
}

.sz-page-title::before{
  display:none;
}


/* =========================================================
   GRID
   ========================================================= */

.sz-grid-container{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:20px;
}

.sz-card-item{
  border:1px solid #f1f1f1;
  border-radius:0;
  overflow:hidden;
  background:#fff;
  transition:.25s;
}

.sz-card-item:hover{
  box-shadow:0 6px 16px rgba(0,0,0,.05);
}

.sz-card-item a{
  text-decoration:none;
  color:inherit;
  font-family:inherit;
}

/* Görsel */

.sz-img-box{
  height:180px;
  overflow:hidden;
}

.sz-img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:none;
}

.sz-card-item:hover img{
  transform:none;
}

/* Kart içerik */

.sz-card-text{
  padding:14px;
}

.sz-card-title{
  font-size:14px;
  font-weight:600;
  margin:0;
  line-height:1.45;
  color:#333;
  font-family:inherit;
}

/* =========================================================
   SEO TEXT
   ========================================================= */

.sz-category-seo-text{
  margin-top:35px;
  padding:28px;
  background:#fff;
  border:1px solid #f3f3f3;
  border-left:3px solid #bd081c;
  border-radius:0;
  line-height:1.85;
  color:#444;
  font-family:inherit;
}

/* SEO başlık */

.sz-seo-content,
.sz-seo-content p,
.sz-seo-content li,
.sz-seo-content a,
.sz-seo-content strong,
.sz-seo-content b,
.sz-seo-content h2,
.sz-seo-content h3{
  font-family:inherit;
}

.sz-seo-content h2,
.sz-seo-content h3{
  position:relative;
  padding-left:16px;
  margin-bottom:16px;
  color:#1f1f1f;
  font-weight:700;
}

.sz-seo-content h2{font-size:22px;}
.sz-seo-content h3{font-size:18px;}

.sz-seo-content h2::before,
.sz-seo-content h3::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:7px;
  height:7px;
  background:#bd081c;
  border-radius:50%;
}

/* Paragraf */

.sz-seo-content p{
  margin-top:0;
  margin-bottom:18px;
  font-size:17px;
  color:#4a4a4a;
}

.sz-seo-content > p:first-of-type{
  font-size:18px;
  color:#2b2b2b;
}

/* Liste */

.sz-seo-content ul,
.sz-seo-content ol{
  margin-bottom:22px;
  padding-left:0;
  list-style:none;
}

.sz-seo-content li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
}

.sz-seo-content ul li::before{
  content:"“";
  position:absolute;
  left:6px;
  top:-1px;
  font-size:20px;
  color:#bd081c;
}

/* Link */

.category .sz-seo-content a{
  color:#b31217;
  text-decoration:none;
  border-bottom:1px solid rgba(179,18,23,.25);
  transition:.2s;
}

.category .sz-seo-content a:hover{
  color:#8f0e12;
  border-bottom:1px solid rgba(179,18,23,.6);
}

/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width:768px){

  .sz-new-header{
    padding:12px 14px 10px;
  }

  .sz-page-title{
    font-size:24px;
  }

  .sz-grid-container{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .sz-img-box{
    height:130px;
  }

  .sz-card-text{
    padding:10px;
  }

  .sz-card-title{
    font-size:13px;
  }

  .sz-follow-txt{
    display:none;
  }

  .sz-category-seo-text{
    margin-top:30px;
    padding:22px 16px;
    border-radius:0;
  }

  .sz-seo-content h2{font-size:19px;}
  .sz-seo-content h3{font-size:16px;}

  .sz-seo-content p{
    font-size:16px;
    line-height:1.85;
  }
}

/* Kategori Sayfası Kapsayıcı */
.site-main--category{
  margin:0 auto 30px;
  width:100%;
  max-width:1400px;
  padding:0;
}

/* Kategori Başlık ve Açıklama */
.section-header--category{
  text-align:center;
  margin-bottom:18px;
}

.section-title--category{
  margin:0;
  font-size:28px;
  font-weight:700;
}

.category-desc{
  max-width:700px;
  margin:10px auto 0;
  color:#666;
  line-height:1.7;
}

/* Kategori Sayfası Kart Stilleri */
.post-card-title--category{
  margin:0;
  line-height:1.3;
  font-size:19px;
  font-weight:700;
  color:#111;
}