.blog-detail{
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-detail h1{
  font-size: 34px;
  color:#3c2a1e;
  margin-bottom:20px;
}



.blog-detail p{
  font-size:16px;
  line-height:1.8;
  color:#4a3f35;
  margin-bottom:16px;
}
/* ============================
   SENİN HALIN – BLOG DETAIL (PREMIUM)
   sisal blogları için özel stil
============================ */

/* Sayfa arka planı */
body{
  background: #f8f6f2;
}

/* Ana container */
.blog-detail{
  max-width: 980px;
  margin: 70px auto;
  padding: 0 18px;
}

/* Üst başlık alanı */
.blog-detail h1{
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.3px;
  color: #3c2a1e;
  margin: 0 0 12px;
}

/* Küçük açıklama (istersen ekle: <p class="blog-lead">..</p>) */
.blog-lead{
  font-size: 16px;
  line-height: 1.7;
  color: #6d5e4f;
  margin: 0 0 22px;
}

/* Meta satırı (istersen ekle)
   <div class="blog-meta">
     <span>Senin Halın</span><span>•</span><span>5 dk okuma</span>
   </div>
*/
.blog-meta{
  display: flex;
  gap: 10px;
  align-items: center;
  color: #8b7b6c;
  font-size: 13px;
  margin-bottom: 18px;
}
.blog-meta span:nth-child(2){
  opacity: .6;
}

.blog-cover {
  margin: 35px 0 45px;
}

.blog-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;   /* ✅ TAM SIĞAR */
  background: #f4f1ec;   /* boşluk olursa çirkin durmasın */
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}



/* İçerik kartı */
.blog-content-wrap{
  background: #ffffff;
  border: 1px solid rgba(160,132,103,.20);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

/* Paragraflar */
.blog-detail p{
  font-size: 16px;
  line-height: 1.9;
  color: #4a3f35;
  margin: 0 0 16px;
}

/* Ara başlıklar (istersen ekle: <h2> / <h3>) */
.blog-detail h2{
  font-size: 22px;
  color: #3c2a1e;
  margin: 26px 0 10px;
}
.blog-detail h3{
  font-size: 18px;
  color: #3c2a1e;
  margin: 20px 0 8px;
}

/* Liste */
.blog-detail ul{
  margin: 10px 0 18px 18px;
  color: #4a3f35;
  line-height: 1.9;
}
.blog-detail li{
  margin-bottom: 6px;
}

/* Info / Uyarı kutusu (istersen)
   <div class="blog-box info">...</div>
   <div class="blog-box warn">...</div>
*/
.blog-box{
  border-radius: 14px;
  padding: 14px 16px;
  margin: 18px 0 20px;
  font-size: 14px;
  line-height: 1.7;
}
.blog-box.info{
  background: rgba(160,132,103,.10);
  border: 1px solid rgba(160,132,103,.25);
  color: #4a3f35;
}
.blog-box.warn{
  background: rgba(178,34,34,.08);
  border: 1px solid rgba(178,34,34,.18);
  color: #6b2a2a;
}

/* İçindekiler (istersen)
   <div class="toc">
     <strong>İçindekiler</strong>
     <a href="#...">...</a>
   </div>
*/
.toc{
  background: #fff;
  border: 1px solid rgba(160,132,103,.22);
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0 26px;
}
.toc strong{
  display: block;
  color: #3c2a1e;
  margin-bottom: 10px;
  font-size: 14px;
}
.toc a{
  display: block;
  color: #6d5e4f;
  padding: 8px 10px;
  border-radius: 12px;
  transition: .2s;
}
.toc a:hover{
  background: rgba(160,132,103,.12);
  color: #3c2a1e;
}


.blog-cta{
  margin-top: 26px;
  background: linear-gradient(135deg, rgba(160,132,103,.18), rgba(255,255,255,.9));
  border: 1px solid rgba(160,132,103,.22);
  border-radius: 18px;
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.blog-cta h4{
  margin: 0 0 6px;
  color: #3c2a1e;
  font-size: 16px;
}
.blog-cta p{
  margin: 0;
  color: #6d5e4f;
  font-size: 14px;
  line-height: 1.6;
}
.blog-cta .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #a08467;
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  transition: .2s;
  white-space: nowrap;
}
.blog-cta .btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* Mobil uyum */
@media (max-width: 768px){
  .blog-detail{
    margin: 50px auto;
  }
  .blog-detail h1{
    font-size: 28px;
  }
  .blog-content-wrap{
    padding: 18px 16px;
  }
  .blog-cta{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Seçim (text highlight) */
::selection{
  background: rgba(160,132,103,.25);
}
/* ==============================
   BLOG DETAIL – PREMIUM IMG STYLE
   Tüm blog img'leri için
============================== */






/* =========================================================
   BLOG DETAIL – SENIN HALIN PREMIUM
========================================================= */

.blog-detail {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #3e3a36;
    line-height: 1.85;
}

/* ---------------- HEADER ---------------- */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2f2b27;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-subtitle {
    font-size: 16px;
    color: #8a8178;
    max-width: 720px;
    margin: 0 auto;
}

/* ---------------- COVER IMAGE ---------------- */
.blog-cover {
    margin: 35px 0 45px;
}



/* ---------------- SECTIONS ---------------- */
.blog-section {
    margin-bottom: 45px;
}

.blog-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2f2b27;
    position: relative;
    padding-left: 14px;
}

.blog-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 70%;
    background: #c7b299; /* Senin Halın premium tonu */
    border-radius: 10px;
}

.blog-section p {
    font-size: 16px;
    color: #4a453f;
    margin-bottom: 14px;
}

/* ---------------- LISTS ---------------- */
.blog-section ul {
    margin: 18px 0 0 0;
    padding-left: 22px;
}

.blog-section ul li {
    font-size: 15.5px;
    margin-bottom: 10px;
    color: #4a453f;
    position: relative;
}

.blog-section ul li::marker {
    color: #b79d83;
}

/* ---------------- STRONG ---------------- */
.blog-section strong {
    color: #2f2b27;
    font-weight: 600;
}

/* ---------------- RESULT / CONCLUSION ---------------- */
.blog-result {
    background: #faf7f3;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #eee6dc;
}

.blog-result h2 {
    padding-left: 0;
}

.blog-result h2::before {
    display: none;
}

.blog-result p {
    font-size: 16px;
}

/* ---------------- IMAGE INSIDE CONTENT (IF ANY) ---------------- */
.blog-section img {
    width: 100%;
    border-radius: 16px;
    margin: 25px 0;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

    .blog-detail {
        margin: 40px auto;
    }

    .blog-header h1 {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-section h2 {
        font-size: 20px;
    }

    .blog-section p,
    .blog-section ul li {
        font-size: 15px;
    }

    .blog-cover img {
        max-height: 280px;
    }

    .blog-result {
        padding: 25px 20px;
    }
}
.blog-detail{
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 16px;
  line-height: 1.75;
}

.blog-header h1{
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.blog-subtitle{
  opacity: .85;
  margin-bottom: 18px;
}



.blog-detail h2{
  font-size: 22px;
  margin: 26px 0 10px 0;
}

.blog-detail ul{
  padding-left: 18px;
}

.blog-note{
  background: #fff7e6;
  border-left: 4px solid #d1a96a;
  padding: 10px 12px;
  border-radius: 10px;
  margin-top: 12px;
}

.blog-cta{
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(183,157,131,.35);
  border-radius: 14px;
  background: rgba(248,246,242,.7);
}

.blog-cta .btn{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(183,157,131,.6);
}
