/**
 * hero.css
 *
 * Shared hero section — used on review pages, article pages, archive pages.
 * Homepage hero overrides live in homepage.css.
 * Loaded on every page.
 *
 * @package BeatTheFish
 * @since   2.1.0
 */

/* ── Base Hero ────────────────────────────────────────────────── */

.hero {
  background: var(--felt);
  position: relative;
  overflow-y: hidden;
  padding: 36px 0 40px;
}

/* felt texture ::before is in base.css */

.hero-grid { display: block; }

.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--on-dark);
  margin-bottom: 16px;
}

.hero-intro,
.hero .hero-intro {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin-bottom: 24px;
}

/* ── Hero CTAs ────────────────────────────────────────────────── */

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* .hero-cta-primary is in base.css (shared .btn-primary) */

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 239, 230, 0.8);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(244, 239, 230, 0.8);
  transform: translateY(-2px);
}

.hero-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* ── Hero Facts (review page) ─────────────────────────────────── */

.hero-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 28px 0 24px;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero-fact-label {
  font-size: 0.82rem;
  color: var(--on-dark-dim);
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-fact-value {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.2;
}

.hero-sidebar { margin-top: 28px; }
