/* ==========================================================================
   BLOG POST STYLES — Yolo247 Club
   ========================================================================== */

.post-main { padding: 60px 0 120px; }

.breadcrumbs {
  font-size: 13px; color: var(--muted);
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-current="page"] { color: var(--cream); }

.post-header {
  max-width: 780px;
  margin-bottom: 60px;
}
.post-header .tag {
  display: inline-block; padding: 6px 14px;
  background: rgba(212, 255, 77, 0.12); color: var(--accent);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 700;
  border-radius: 999px; margin-bottom: 24px;
}
.post-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.post-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: #d8dde8;
  line-height: 1.5;
  margin-bottom: 32px;
}
.post-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 14px; color: var(--muted);
  padding-top: 24px; border-top: 1px solid var(--line);
}
.post-meta strong { color: var(--cream); font-weight: 600; }

.post-body {
  max-width: 740px;
}
.post-body p,
.post-body li {
  font-size: 1.08rem; line-height: 1.8; color: #d2d7e2;
}
.post-body p.drop {
  font-size: 1.2rem; color: #e5e9f0;
  padding-bottom: 24px; margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.post-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 56px 0 18px;
  color: #fff;
}
.post-body h3 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
  color: #fff;
}
.post-body ul, .post-body ol {
  padding-left: 24px; margin: 0 0 28px;
}
.post-body ul li, .post-body ol li {
  margin-bottom: 10px;
  list-style: disc;
}
.post-body ol li { list-style: decimal; }
.post-body ol li::marker,
.post-body ul li::marker {
  color: var(--accent);
}
.post-body code {
  background: rgba(212, 255, 77, 0.08);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  font-family: 'Courier New', monospace;
}
.post-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(212, 255, 77, 0.4);
  transition: border-color .2s ease;
}
.post-body a:hover { border-color: var(--accent); }

/* Author card */
.author-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 64px 0 40px;
}
.author-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--accent); color: var(--ink);
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem;
  transform: rotate(-4deg);
}
.author-card strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.author-card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* Related / continue reading */
.post-cta {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #1a2340 0%, #0f1427 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.post-cta h3 { margin: 0 0 18px; font-size: 1.2rem; color: var(--accent); }
.post-cta ul { display: flex; flex-direction: column; gap: 12px; }
.post-cta a { color: #fff; font-weight: 500; }
.post-cta a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .author-card { flex-direction: column; gap: 14px; }
  .post-meta { font-size: 13px; }
  .post-body p, .post-body li { font-size: 1rem; }
}
