/* =============================================================
 * LIORA BABY — blog-oku.css
 * Blog okuma sayfasına özel stiller
 * ============================================================= */

/* ─── Makale Header ──────────────────────────────────────────── */
.lb-article-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lb-article-tag {
  display: inline-block;
  background: var(--lb-rose-light);
  color: var(--lb-brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}
.lb-article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lb-text);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.lb-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #9a8a83;
  font-family: 'DM Sans', sans-serif;
}
.lb-article-meta i { color: var(--lb-rose); }
.lb-article-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lb-rose-light), transparent);
  margin: 2rem 0;
}

/* ─── Kapak Görsel ───────────────────────────────────────────── */
.lb-article-cover {
  border-radius: var(--lb-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--lb-shadow-hover);
}
.lb-article-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.lb-article-cover figcaption {
  text-align: center;
  font-size: 0.78rem;
  color: #9a8a83;
  padding: 0.6rem 1rem;
  background: var(--lb-cream-2);
  font-family: 'DM Sans', sans-serif;
}

/* ─── Makale İçerik ──────────────────────────────────────────── */
.lb-article-content {
  max-width: 720px;
  margin: 0 auto;
}
.lb-article-content > p:first-child {
  font-size: 1.1rem;
  color: #5a4a43;
  line-height: 1.9;
  font-weight: 400;
}
.lb-article-content p {
  font-size: 1rem;
  color: #5a4a43;
  line-height: 1.9;
  margin-bottom: 1.35rem;
}
.lb-article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lb-text);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(107,76,59,0.08);
}
.lb-article-content ul,
.lb-article-content ol {
  padding-left: 1.5rem;
  color: #5a4a43;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.35rem;
}
.lb-article-content li { margin-bottom: 0.4rem; }
.lb-article-content strong { color: var(--lb-brown); font-weight: 700; }
.lb-article-content blockquote {
  border-left: 4px solid var(--lb-rose);
  background: var(--lb-cream-2);
  border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.75rem;
  font-style: italic;
  color: #5a4a43;
  margin: 2rem 0;
  font-size: 1.02rem;
  line-height: 1.85;
  position: relative;
}
.lb-article-content blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--lb-rose-light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.lb-article-img {
  border-radius: var(--lb-radius);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--lb-shadow);
}
.lb-article-img img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
  display: block;
}
.lb-article-img figcaption {
  text-align: center;
  font-size: 0.78rem;
  color: #9a8a83;
  padding: 0.6rem 1rem;
  background: var(--lb-cream-2);
}

/* ─── Paylaş Bölümü ──────────────────────────────────────────── */
.lb-share-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(107,76,59,0.1);
  border-bottom: 1px solid rgba(107,76,59,0.1);
  margin: 2.5rem 0;
}
.lb-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lb-brown);
  font-family: 'DM Sans', sans-serif;
}
.lb-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--lb-transition);
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid rgba(107,76,59,0.2);
  color: var(--lb-brown);
  background: transparent;
}
.lb-share-btn:hover {
  background: var(--lb-brown);
  color: #fff;
  border-color: var(--lb-brown);
}

/* ─── İlgili Yazılar ─────────────────────────────────────────── */
.lb-related-posts-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lb-brown);
  margin-bottom: 0.35rem;
}
