/* ──────────────────────────────────────────────
   TARO — Page Styles (reading / spreads / pricing)
   Stellar Codex · Dark Theme
────────────────────────────────────────────── */

/* ═══════════════════════════════════════════
   READING PAGE
═══════════════════════════════════════════ */

.reading-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
}

/* ── Сайдбар ── */
.reading-sidebar {
  background: var(--deep);
  border-right: 1px solid var(--border);
  padding: 28px 16px;
  overflow-y: auto;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
}

.sidebar-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  font-weight: 600;
  padding: 0 8px;
}

.spread-search { margin-bottom: 12px; }

.input-field {
  width: 100%;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
  font-weight: 300;
}

.input-field::placeholder { color: var(--text-dim); }
.input-field:focus { border-color: var(--gold-line); }

.spread-list { display: flex; flex-direction: column; gap: 2px; }

.spread-list-item {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  gap: 8px;
}

.spread-list-item:hover {
  background: var(--surface);
  color: var(--text);
}

.spread-list-item.active {
  background: var(--gold-mist);
  color: var(--gold);
  font-weight: 400;
}

.spread-list-item .sli-cost {
  font-size: 0.72rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.spread-list-item .sli-lock {
  font-size: 0.7rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ── Основная зона ── */
.reading-main {
  padding: 56px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--void);
}

.reading-step { width: 100%; max-width: 740px; }
.hidden { display: none !important; }

/* ── Welcome экран ── */
.step-welcome-content { text-align: center; padding: 40px 0; }

.welcome-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

.step-welcome-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  color: var(--text);
}

.step-welcome-content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Quick picks — кнопки быстрого выбора */
.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 400;
  font-family: var(--font-body);
  transition: all 0.22s;
  min-width: 86px;
  letter-spacing: 0.04em;
}

.quick-btn span { white-space: nowrap; }

.quick-btn:hover {
  border-color: var(--gold-line);
  background: var(--surface-2);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 12px var(--gold-mist);
}

.welcome-gift {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.welcome-gift strong { color: var(--gold); font-weight: 400; }

/* ── Шаг вопроса ── */
.selected-spread-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 28px;
  margin-bottom: 32px;
  position: relative;
}

.selected-spread-info::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.selected-spread-info h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
}

.selected-spread-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.selected-spread-info .spread-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.question-section h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.step-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.question-textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 300;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.7;
}

.question-textarea::placeholder { color: var(--text-dim); }
.question-textarea:focus { border-color: var(--gold-line); }

.question-counter {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 6px;
  margin-bottom: 24px;
}

.step-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cost-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Загрузка ── */
.loading-content { text-align: center; padding: 60px 0; }

.loading-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.loading-card {
  width: 64px;
  height: 108px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.loading-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.12) 50%, transparent 100%);
  animation: cardPulse 1.8s ease-in-out infinite;
}

.loading-card:nth-child(2)::after { animation-delay: 0.3s; }
.loading-card:nth-child(3)::after { animation-delay: 0.6s; }

@keyframes cardPulse {
  0%, 100% { opacity: 0.2; transform: translateY(108px); }
  50%  { opacity: 1; transform: translateY(-108px); }
}

.loading-content h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.loading-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.loading-progress {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  background-size: 200% auto;
  width: 0;
  animation: loadProgress 30s linear forwards, shimmer 2s linear infinite;
}

@keyframes loadProgress { to { width: 95%; } }

/* ── Результат ── */
.result-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.result-header h2 { font-size: 2rem; margin-bottom: 8px; }
.result-question {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
}

.cards-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.card-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  transition: border-color 0.2s;
}

.card-chip:hover { border-color: var(--gold-line); }
.card-chip .card-pos { font-size: 0.68rem; color: var(--text-dim); margin-bottom: 3px; letter-spacing: 0.08em; text-transform: uppercase; }
.card-chip .card-name { color: var(--text); font-weight: 400; font-family: var(--font-display); }
.card-chip .card-rev { color: var(--gold); font-size: 0.72rem; margin-top: 2px; }

/* Блок интерпретации */
.interpretation-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 32px;
  position: relative;
}

.interpretation-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.interpretation-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tarot-from {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
}

.interpretation-text {
  color: var(--text-soft);
  line-height: 1.9;
  white-space: pre-wrap;
  font-size: 0.97rem;
  font-weight: 300;
  font-family: var(--font-display);
}

.result-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.after-reading-cta {
  background: var(--surface);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  position: relative;
}

.after-reading-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.after-reading-cta h3 { margin-bottom: 8px; font-size: 1.4rem; }
.after-reading-cta p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; font-weight: 300; }

/* ── Paywall ── */
.paywall-content {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 0;
}

.paywall-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.3));
}

.paywall-content h2 { margin-bottom: 14px; font-size: 2rem; }
.paywall-content p { color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }
.paywall-options { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.paywall-sub { font-size: 0.82rem; color: var(--text-dim); }

/* ── Модалка авторизации ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,4,16,0.88);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.modal-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
  font-weight: 300;
}

.tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}

.tab {
  flex: 1;
  padding: 9px;
  border: none;
  background: none;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.tab.active {
  background: var(--gold);
  color: var(--void);
  font-weight: 600;
}

.auth-form { display: flex; flex-direction: column; gap: 12px; }

.auth-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 8px;
}

/* Шаринг */
.share-preview { margin-top: 20px; display: none; }
.share-preview canvas { max-width: 100%; border-radius: 10px; border: 1px solid var(--border); }
.share-preview > p { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

.share-menu { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.btn-share-soc {
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 400;
}

.btn-share-soc:hover {
  border-color: var(--gold-line);
  color: var(--gold);
}

/* ── Адаптив reading ── */
@media (max-width: 768px) {
  .reading-layout { grid-template-columns: 1fr; }
  .reading-sidebar { position: relative; height: auto; top: 0; max-height: 50vh; }
  .reading-main { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════
   SPREADS PAGE
═══════════════════════════════════════════ */

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--gold-line);
  color: var(--text);
}

.filter-btn.active {
  border-color: var(--gold);
  color: var(--void);
  background: var(--gold);
  font-weight: 600;
}

.spreads-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.spread-full-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.spread-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}

.spread-full-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.35);
  background: var(--surface-2);
}

.spread-full-card:hover::before { opacity: 1; }

.sfc-icon { font-size: 2rem; line-height: 1; margin-bottom: 4px; }

.spread-full-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.spread-full-card h2 a { color: var(--text); transition: color 0.2s; }
.spread-full-card h2 a:hover { color: var(--gold); }

.spread-full-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-weight: 300;
}

.sfc-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 6px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.sfc-free  { color: #5aaa70; font-weight: 600; }
.sfc-premium { color: var(--gold); }
.sfc-vip   { color: var(--gold-bright); font-weight: 600; }
.sfc-lock  { color: var(--text-dim); }
.sfc-btn   { margin-top: 4px; align-self: flex-start; }

/* ═══════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════ */

.pricing-toggle {
  display: flex;
  gap: 4px;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  max-width: 420px;
  margin: 0 auto 56px;
}

.ptoggle {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.25s;
}

.ptoggle.active {
  background: var(--gold);
  color: var(--void);
  font-weight: 600;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.25s;
}

.plan-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.plan-card--popular {
  background: var(--surface-3);
  border-color: var(--gold-line);
  box-shadow: 0 0 0 1px var(--gold-line), 0 16px 48px rgba(0,0,0,0.4);
}

.plan-card--popular::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.plan-card--vip {
  background: linear-gradient(160deg, var(--surface-3), var(--surface));
  border-color: rgba(201,168,76,0.25);
}

.plan-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--void);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}

.plan-badge--gold {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 400;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
  font-weight: 300;
}

.plan-period {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-top: -8px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 4px;
}

.plan-features li:not([class]) {
  /* replace ✅/❌ with custom styling */
}

/* Токены */
.tokens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.token-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.25s;
}

.token-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}

.token-card--popular {
  background: var(--surface-3);
  border-color: var(--gold-line);
}

.token-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
}

.token-amount {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
}

.token-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1;
  font-weight: 300;
}

.token-per {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  flex: 1;
}

/* ── Страничный hero (для spreads / pricing / blog) ── */
.page-hero {
  padding: 130px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  overflow: hidden;
}

.page-hero h1 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 20px; }
.page-hero-title { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 20px; }
.page-hero-label {
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); margin-bottom: 16px;
  display: block; opacity: 0.85;
}
.page-hero-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.8; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; font-weight: 300; }

/* Видео-фон для page-hero */
.page-hero-videobg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-videobg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-videobg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,6,17,0.55) 0%,
      rgba(8,6,17,0.35) 50%,
      rgba(8,6,17,0.75) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08), transparent);
  z-index: 1;
}
/* На мобильных — GIF вместо video */
@media (max-width: 640px) {
  .page-hero-videobg video { display: none; }
  .page-hero-videobg { background-size: cover; background-position: center; background-repeat: no-repeat; }
  .page-hero-videobg.vbg-2 { background-image: url('../assets/video/hero2.gif'); }
  .page-hero-videobg.vbg-3 { background-image: url('../assets/video/hero3.gif'); }
  .page-hero-videobg.vbg-4 { background-image: url('../assets/video/hero4.gif'); }
  .page-hero-videobg.vbg-1 { background-image: url('../assets/video/hero1.gif'); }
}
.page-hero .container { position: relative; z-index: 2; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.blog-post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
}

.blog-post-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
  background: var(--surface-2);
}

.blog-post-card .blog-cat {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.blog-post-card h2 { font-size: 1.25rem; }
.blog-post-card h2 a { color: var(--text); transition: color 0.2s; }
.blog-post-card h2 a:hover { color: var(--gold); }
.blog-post-card p { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; flex: 1; }
