/* ============================================================
   DEKORCUM — BLOG DETAY SAYFASI STİLLERİ
   ============================================================ */
.blog-detail-page {
  background: var(--cream);
  padding-top: 40px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.breadcrumb a {
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--wood-deep);
}

/* Header & Meta */
.bd-header {
  margin-bottom: 30px;
  text-align: center;
}
.bd-title {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}
.bd-title em {
  font-style: italic;
  color: var(--wood-deep);
}

.bd-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-item i {
  color: var(--wood);
  font-size: 1.1rem;
}

/* Hero Görseli */
.bd-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}
.bd-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
      SİHİRLİ EDİTÖR İÇERİĞİ (QUILL VS İÇİN)
      ========================================== */
.bd-article {
  margin-bottom: 50px;
}
.editor-content {
  font-family: var(--ff-body);
  color: var(--ink);
  line-height: 1.8;
  font-size: 1.05rem;
}

.editor-content h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin: 40px 0 15px;
  font-weight: 600;
}
.editor-content h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 30px 0 15px;
}

.editor-content p {
  margin-bottom: 20px;
  color: #4b4641;
}
.editor-content strong,
.editor-content b {
  font-weight: 700;
  color: var(--ink);
}

.editor-content blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wood-deep);
  border-left: 4px solid var(--wood);
  background: var(--cream-2);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

.editor-content ul,
.editor-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
  color: #4b4641;
}
.editor-content li {
  margin-bottom: 10px;
}
.editor-content ul li {
  list-style-type: disc;
}

.editor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

/* Paylaşım Alanı */
.bd-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 60px;
}
.bd-share span {
  font-weight: 600;
  color: var(--ink);
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.share-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.share-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}
.share-btn.twitter:hover {
  background: #000;
  border-color: #000;
}

/* ==========================================
      BENZER YAZILAR BÖLÜMÜ
      ========================================== */
.related-blogs-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.section-title h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--wood-deep);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Kart Tasarımı */
.blog-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.4s var(--ease);
  text-decoration: none;
  border: 1px solid transparent;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(27, 23, 18, 0.1);
  border-color: var(--line);
}
.blog-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s var(--ease);
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-read-more {
  color: var(--wood-deep);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.blog-card:hover .blog-read-more {
  color: var(--ink);
}
.blog-read-more i {
  transition: transform 0.3s;
}
.blog-card:hover .blog-read-more i {
  transform: translateX(5px);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .bd-title {
    font-size: 2rem;
  }
  .editor-content {
    font-size: 1rem;
  }
  .editor-content h2 {
    font-size: 1.5rem;
  }
  .bd-share {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
