/*
Theme Name: TermLifeInsurance
Theme URI: https://www.termlifeinsurance.com
Author: TermLifeInsurance.com
Description: Custom theme for TermLifeInsurance.com
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: termlifeinsurance
*/

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d2d5a;
  --navy-mid: #112f5e;
  --blue: #1a4f8a;
  --sky: #2e80d8;
  --sky-light: #4fa3f7;
  --green: #4caf2a;
  --green-light: #5ecf35;
  --cream: #f8f5f0;
  --warm-white: #fdfcfb;
  --text-dark: #0d1f35;
  --text-mid: #3a5069;
  --text-light: #6b85a0;
  --border: #dde5ef;
  --border-light: #edf1f7;
  --green-bg: #e8f7f1;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text-dark); line-height: 1.6; }

img { max-width: 100%; height: auto; }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-logo img {
  height: 76px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.main-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav ul li a:hover { color: #fff; text-decoration: none; }
.main-nav ul li.current-menu-item a { color: var(--green-light); }

/* Dropdown */
.main-nav ul li { position: relative; }
.main-nav ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(10,22,40,0.12);
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0;
  z-index: 100;
}
.main-nav ul li:hover > ul { display: flex; }
.main-nav ul li ul li a {
  color: var(--text-dark) !important;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  display: block;
  white-space: nowrap;
}
.main-nav ul li ul li a:hover { background: #f5f8fc; color: var(--sky) !important; }

.nav-cta {
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-light) !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--navy-mid);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.mobile-nav ul li a:hover { color: #fff; }
.mobile-nav ul li ul { padding-left: 1rem; }
.mobile-nav ul li ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  border-bottom: none;
  padding: 0.45rem 0;
}
.mobile-nav-cta {
  display: block;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  margin-top: 1rem;
  text-decoration: none !important;
}

/* ── HERO (homepage) ── */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 45%, #163356 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 120%, rgba(46,128,216,0.18) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  position: relative;
}
.hero h1 em { font-style: normal; color: var(--sky-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
}
.hero-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: background 0.2s;
  position: relative;
}
.hero-cta:hover { background: var(--green-light); text-decoration: none; color: #fff; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}
.hero-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ── CONTAINER ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 3.5rem 0 2rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.section-header p { color: var(--text-light); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.picks-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.4rem;
}

/* ── PROVIDER CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.card:hover { box-shadow: 0 8px 40px rgba(10,22,40,0.1); transform: translateY(-2px); }
.card.featured { border-color: var(--sky); box-shadow: 0 4px 24px rgba(46,128,216,0.12); }
.card-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(90deg, var(--sky), var(--sky-light));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-bottom-right-radius: 8px;
}
.card-inner {
  display: grid;
  grid-template-columns: 52px 170px 1fr 160px;
  align-items: stretch;
  min-height: 150px;
}
.card.featured .card-inner { margin-top: 30px; }
.card-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  border-right: 1px solid var(--border-light);
}
.card-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border-light);
}
.card-logo { width: 130px; height: auto; max-height: 56px; object-fit: contain; display: block; }
.card-score-row { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.stars { display: flex; gap: 1px; }
.star { width: 13px; height: 13px; fill: #f5a623; }
.star-empty { fill: #dde5ef; }
.star-half { fill: url(#star-grad); }
.card-score { font-size: 0.72rem; font-weight: 700; color: var(--text-mid); }
.card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-tagline { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.65rem; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.card-features li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background: var(--green-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath d='M1.5 4.5l2 2 4-4' stroke='%231a7d54' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
.card-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  border-left: 1px solid var(--border-light);
}
.btn-view {
  display: block;
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
  width: 100%;
  text-align: center;
}
.btn-view:hover { filter: brightness(1.1); transform: scale(1.02); text-decoration: none; color: #fff; }
.btn-read-review {
  display: block;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-read-review:hover { color: var(--blue); text-decoration: underline; }
.card-secure { font-size: 0.7rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.card-footer-callout {
  border-top: 1px solid var(--border);
  background: #f9fbff;
  padding: 0.6rem 1.25rem 0.6rem 52px;
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── EXPLAINER ── */
.explainer {
  background: var(--navy);
  padding: 4rem 2rem;
  margin: 3rem 0 0;
}
.explainer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.explainer h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.explainer p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.8rem;
}
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--sky-light); margin-bottom: 0.35rem; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }

/* ── FAQ ── */
.faq-section { padding: 4rem 0; }
details {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details[open] { box-shadow: 0 4px 20px rgba(10,22,40,0.07); }
summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--sky); transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 1rem 1.5rem 1.25rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; border-top: 1px solid var(--border); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 45%, #163356 100%);
  padding: 3.5rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── CONTENT PAGES (legal, articles, reviews) ── */
.content-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.content-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.25rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--border);
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.85rem; line-height: 1.75; }
.content-wrap ul { margin: 0 0 0.85rem 1.25rem; }
.content-wrap ul li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 0.3rem; }
.last-updated {
  display: inline-block;
  background: #eef4fb;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

/* ── ARCHIVE GRIDS (Resources, Companies) ── */
.archive-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 45%, #163356 100%);
  padding: 3rem 2rem;
  text-align: center;
}
.archive-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.archive-hero p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem 0 4rem;
}
.archive-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.archive-card:hover { box-shadow: 0 6px 30px rgba(10,22,40,0.1); transform: translateY(-2px); text-decoration: none; }
.archive-card-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.archive-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}
.archive-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.archive-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.archive-card-footer {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--sky);
  font-weight: 600;
}

/* ── SINGLE REVIEW ── */
.review-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
}
.review-header-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.review-logo { height: 60px; width: auto; }
.review-meta h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.review-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}
.review-cta-box {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
}
.review-cta-box p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0.75rem; }
.review-cta-box a {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.review-cta-box a:hover { opacity: 0.9; }

/* ── DISCLOSURE ── */
.disclosure {
  background: #f3f5f8;
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  line-height: 1.7;
}
.site-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.site-footer a:hover { color: rgba(255,255,255,0.8); }
.footer-links { margin-top: 0.5rem; }

/* Footer nav — override all WordPress menu defaults */
.site-footer ul,
.site-footer ul li,
.footer-nav-list,
.footer-nav-list li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  text-indent: 0 !important;
}
.site-footer ul,
.footer-nav-list {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}
.footer-nav-list li { display: inline-flex !important; }
.footer-nav-list li a,
.site-footer ul li a {
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  font-size: 0.8rem !important;
}
.footer-nav-list li a:hover,
.site-footer ul li a:hover { color: rgba(255,255,255,0.8) !important; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-sub, .hero-stats { animation: fadeUp 0.7s ease both; }
.hero-sub { animation-delay: 0.1s; }
.hero-stats { animation-delay: 0.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .explainer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .trust-bar { gap: 1.25rem; }
  .card-inner { grid-template-columns: 150px 1fr 140px; }
  .card-rank { display: none; }
  .card-footer-callout { padding-left: 1.25rem; }
  .archive-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 540px) {
  .nav-inner { height: 72px; padding: 0 1rem; }
  .nav-logo img { height: 50px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-divider { display: none; }
  .trust-bar { gap: 0.75rem; padding: 0.6rem 1rem; }
  .trust-item { font-size: 0.75rem; }
  .card-inner { grid-template-columns: 1fr; }
  .card-rank { display: none; }
  .card-logo-col { flex-direction: row; justify-content: space-between; padding: 1rem 1.25rem; border-right: none; border-bottom: 1px solid var(--border-light); }
  .card-logo { width: 110px; max-height: 44px; }
  .card-score-row { flex-direction: row; align-items: center; gap: 0.4rem; }
  .card-body { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-light); }
  .card-cta-col { flex-direction: row; justify-content: space-between; align-items: center; padding: 0.9rem 1.25rem; border-left: none; }
  .btn-view { width: auto; padding: 0.65rem 1.25rem; }
  .card-footer-callout { padding: 0.6rem 1.25rem; font-size: 0.78rem; }
  .explainer { padding: 3rem 1.5rem; }
  .content-wrap { padding: 2rem 1.25rem 3rem; }
  .archive-grid { grid-template-columns: 1fr; }
  .review-header-inner { flex-direction: column; gap: 1rem; }
}
