:root {
  --navy: #162a76;
  --blue: #2457d6;
  --turquoise: #16a7a1;
  --green: #198c3b;
  --red: #e22f2f;
  --orange: #f59e0b;
  --yellow: #ffd84d;
  --purple: #6d3ac1;
  --ink: #172033;
  --muted: #566176;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 42, 118, 0.13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 2%, rgba(255, 216, 77, .20), transparent 18rem),
    radial-gradient(circle at 95% 30%, rgba(22, 167, 161, .12), transparent 24rem),
    var(--paper);
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--navy);
  color: white;
}
.skip-link:focus { left: .75rem; top: .75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 4px solid var(--yellow);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
}
.brand img { width: 38px; height: 38px; transform: rotate(-12deg); }
.brand strong span:nth-child(1) { color: var(--red); }
.brand strong span:nth-child(2) { color: var(--green); }
.brand strong span:nth-child(3) { color: var(--blue); }

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font: inherit;
  font-weight: 900;
  padding: .65rem .85rem;
}
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  border-radius: 999px;
  padding: .65rem .85rem;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active {
  background: #eef3ff;
  color: var(--red);
  outline: none;
}
.site-nav .nav-buy { background: var(--red); color: white; }
.site-nav .nav-buy:hover, .site-nav .nav-buy:focus-visible, .site-nav .nav-buy.active { background: #bf1f1f; color: white; }

.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: clamp(3.2rem, 7vw, 6.2rem) 0; }
.section-sm { padding: 2.4rem 0; }

.hero {
  overflow: hidden;
  position: relative;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,.98) 0 48%, rgba(255,255,255,.72) 68%, rgba(255,255,255,.3) 100%),
    url('../assets/book-cover.jpg') center 37% / cover;
  border-bottom: 10px solid var(--navy);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 190px; height: 190px; background: rgba(255,216,77,.58); right: 8%; top: -70px; }
.hero::after { width: 120px; height: 120px; background: rgba(22,167,161,.28); left: 42%; bottom: -50px; }
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 2rem;
}
.hero-copy {
  background: rgba(255,255,255,.88);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 3px solid rgba(36,87,214,.12);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .65rem;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .9rem;
}
.hero h1, .page-hero h1, h2, h3 {
  line-height: 1.06;
  letter-spacing: -.035em;
}
.hero h1 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2.55rem, 7vw, 5.7rem);
}
.hero h1 .green { color: var(--green); }
.hero h1 .red { color: var(--red); }
.hero-lead { max-width: 36rem; font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: #2c3850; }
.hero-art {
  justify-self: end;
  width: min(420px, 92%);
  transform: rotate(2deg);
  filter: drop-shadow(0 24px 25px rgba(15,23,42,.18));
  border: 8px solid white;
  border-radius: 22px;
  overflow: hidden;
}

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .82rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 3px solid transparent;
  cursor: pointer;
  font: inherit;
}
.btn-primary { background: var(--red); color: white; box-shadow: 0 8px 0 #a91c1c; }
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(2px); box-shadow: 0 5px 0 #a91c1c; }
.btn-secondary { background: white; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: #eef3ff; }
.btn-green { background: var(--green); color: white; box-shadow: 0 8px 0 #0f6127; }
.btn-green:hover, .btn-green:focus-visible { transform: translateY(2px); box-shadow: 0 5px 0 #0f6127; }

.title-block { max-width: 760px; margin-bottom: 2rem; }
.title-block.center { margin-inline: auto; text-align: center; }
.title-block h2 { margin: 0 0 .7rem; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--navy); }
.title-block p { margin: 0; color: var(--muted); font-size: 1.12rem; }

.definition-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  border: 4px solid #e8edff;
}
.definition-badge {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #ffe777, #8ce1dc, #97b5ff, #f4a9a9, #ffe777);
  border: 10px solid white;
  box-shadow: 0 14px 30px rgba(22,42,118,.16);
  color: var(--navy);
  padding: 1.4rem;
}
.definition-badge strong { font-size: clamp(1.45rem, 4vw, 2.65rem); line-height: 1; }
.definition-badge span { font-weight: 900; color: var(--red); }
.definition-copy h2 { margin: 0 0 .8rem; color: var(--navy); font-size: clamp(2rem, 4vw, 3.35rem); }
.definition-copy p { font-size: 1.2rem; }

.trait-grid, .feature-grid, .joke-grid, .rawr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(22,42,118,.10);
  border: 3px solid #edf0fb;
}
.card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: -28px;
  top: -28px;
  border-radius: 50%;
  background: rgba(255,216,77,.45);
}
.icon-bubble {
  width: 56px;
  height: 56px;
  display: grid;
  place-content: center;
  border-radius: 18px;
  background: #eef3ff;
  font-size: 1.8rem;
  margin-bottom: .8rem;
}
.card h3 { margin: 0 0 .45rem; color: var(--navy); font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }
.card-link { text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.card-link:hover, .card-link:focus-visible { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(22,42,118,.16); outline: none; }

.color-strip { height: 11px; background: linear-gradient(90deg, var(--red) 0 20%, var(--orange) 20% 40%, var(--green) 40% 60%, var(--blue) 60% 80%, var(--purple) 80%); }

.home-top-banner-section {
  padding: 1.4rem 0 0;
}
.home-top-banner-frame {
  background: white;
  border-radius: 28px;
  padding: .9rem;
  box-shadow: var(--shadow);
  border: 5px solid #edf0fb;
}
.home-top-banner-frame img {
  width: 100%;
  border-radius: 20px;
}

.hero-home {
  background:
    linear-gradient(110deg, rgba(255,255,255,.98) 0 48%, rgba(255,255,255,.80) 68%, rgba(255,255,255,.45) 100%),
    radial-gradient(circle at 92% 20%, rgba(255,216,77,.18), transparent 19rem),
    linear-gradient(180deg, #fffdf8, #f5f8ff);
}
.hero-art-book {
  justify-self: end;
}

.image-badge {
  background: white;
  padding: .8rem;
  border: 8px solid white;
  overflow: hidden;
}
.image-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-photo-card {
  margin: 0;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #edf0fb;
}
.author-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.author-photo-card figcaption {
  padding: 1rem 1.2rem 1.25rem;
  text-align: center;
  color: var(--navy);
}
.author-photo-card figcaption strong {
  display: block;
  font-size: 1.25rem;
}
.author-photo-card figcaption span {
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  color: white;
  background:
    radial-gradient(circle at 92% 15%, rgba(255,216,77,.34), transparent 16rem),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-bottom: 10px solid var(--yellow);
}
.page-hero h1 { margin: 0 0 .75rem; font-size: clamp(2.7rem, 7vw, 5rem); }
.page-hero p { max-width: 740px; margin: 0; font-size: 1.2rem; color: #edf4ff; }
.page-hero .eyebrow { color: var(--yellow); }

.featured-joke {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff7c7, #ffffff 60%);
  border: 4px dashed var(--red);
  box-shadow: var(--shadow);
}
.joke-dino {
  min-height: 260px;
  display: grid;
  place-content: center;
  font-size: clamp(6rem, 16vw, 11rem);
  filter: drop-shadow(0 12px 10px rgba(22,42,118,.14));
}
.joke-copy h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--navy); margin: 0 0 .75rem; }
.punchline {
  display: none;
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 18px;
  background: white;
  color: var(--red);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  border: 3px solid var(--yellow);
}
.punchline.show { display: block; animation: pop .25s ease-out; }
@keyframes pop { from { transform: scale(.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.joke-card .question { font-weight: 900; color: var(--navy); font-size: 1.1rem; }
.joke-card .answer { color: var(--red); font-weight: 900; margin-top: .6rem; }

.rawr-feature {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 1.5rem;
  align-items: stretch;
}
.rawr-board {
  background: #173c2b;
  color: white;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 13px solid #b9783d;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.rawr-board::before { content: ""; position: absolute; inset: 10px; border: 2px solid rgba(255,255,255,.18); border-radius: 10px; pointer-events: none; }
.rawr-board h2 { margin: 0 0 .8rem; color: var(--yellow); font-size: clamp(2.2rem, 5vw, 3.8rem); }
.rawr-board p { font-size: clamp(1.15rem, 2vw, 1.45rem); position: relative; }
.rawr-side {
  background: linear-gradient(145deg, #e8fbf8, #ffffff);
  border-radius: 24px;
  padding: 1.6rem;
  border: 4px solid #b9eee9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rawr-side h3 { color: var(--green); margin: 0 0 .7rem; font-size: 1.7rem; }
.rawr-card { border-top: 9px solid var(--turquoise); }
.rawr-card:nth-child(2n) { border-top-color: var(--red); }
.rawr-card:nth-child(3n) { border-top-color: var(--yellow); }

.buy-layout, .author-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.book-frame {
  width: min(430px, 100%);
  margin-inline: auto;
  padding: .75rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 45px rgba(22,42,118,.18);
  transform: rotate(-1.5deg);
}
.buy-copy h2, .author-copy h2 { margin: 0 0 .8rem; color: var(--navy); font-size: clamp(2rem, 5vw, 3.5rem); }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; margin: .6rem 0; }
.check-list li::before { content: "✓"; flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-content: center; border-radius: 50%; background: #dcfce7; color: var(--green); font-weight: 900; }

.author-mark {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, #e6efff, #ffffff);
  border: 12px solid white;
  outline: 5px dashed var(--red);
  box-shadow: var(--shadow);
  color: var(--navy);
}
.author-mark .initials { font-size: clamp(4rem, 11vw, 8rem); line-height: 1; font-weight: 900; color: var(--red); }
.author-mark strong { font-size: 1.25rem; }
.quote {
  margin: 1.5rem 0 0;
  padding: 1.2rem 1.3rem;
  border-left: 8px solid var(--yellow);
  border-radius: 0 18px 18px 0;
  background: white;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(22,42,118,.09);
}

.cta-band {
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,216,77,.28), transparent 11rem),
    linear-gradient(120deg, var(--red), #c51c45 55%, var(--purple));
  border-radius: 30px;
  padding: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}
.cta-band h2 { margin: 0 0 .35rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-band p { margin: 0; color: #fff2f2; }
.cta-band .btn-secondary { flex: 0 0 auto; }

.site-footer {
  margin-top: 4rem;
  background: #101d53;
  color: white;
  padding: 2.2rem 0 1.3rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: start; }
.footer-brand { font-size: 1.35rem; font-weight: 900; }
.site-footer p { color: #d6defb; }
.footer-links { display: flex; flex-wrap: wrap; gap: .75rem 1rem; justify-content: flex-end; }
.footer-links a { color: white; font-weight: 800; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--yellow); }
.copyright { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.18); color: #c5ceee; font-size: .92rem; }

.notice {
  background: #fff8d9;
  border: 3px solid #f6d75b;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  color: #604a00;
}
.event-notice a { color: #8a1e1e; font-weight: 900; }

.wordmark-showcase {
  padding: 1.1rem 0 0;
}
.wordmark-frame {
  background: white;
  border-radius: 28px;
  padding: .85rem;
  box-shadow: var(--shadow);
  border: 5px solid #edf0fb;
}
.wordmark-frame img { width: 100%; border-radius: 18px; }

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.special-card {
  border-top: 10px solid var(--yellow);
}
.special-card:nth-child(2n) { border-top-color: var(--blue); }
.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .85rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #fff3cd;
  color: #8a4b00;
  font-weight: 900;
}
.community-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(145deg, #ffffff, #eef7ff);
  border-radius: 30px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  border: 4px solid #edf0fb;
}
.community-panel h2 {
  margin: 0 0 .6rem;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.community-panel p { margin: 0; color: var(--muted); }
.review-panel { background: linear-gradient(145deg, #fffdf8, #eef7ff); }
.review-card { border-top: 9px solid var(--purple); }
.review-card:nth-child(2) { border-top-color: var(--green); }
.review-card:nth-child(3) { border-top-color: var(--red); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: .75rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 3px solid #edf0fb;
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { background-position: 65% 38%; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { width: min(350px, 80%); justify-self: center; }
  .definition-card, .featured-joke, .rawr-feature, .buy-layout, .author-layout, .announcement-grid, .event-flyer, .quote-grid { grid-template-columns: 1fr; }
  .trait-grid, .feature-grid, .joke-grid, .rawr-grid { grid-template-columns: repeat(2, 1fr); }
  .definition-badge { width: min(350px, 85%); margin-inline: auto; }
}

@media (max-width: 600px) {
  .nav-wrap { width: min(100% - 1rem, 1180px); }
  .brand { font-size: 1rem; }
  .brand img { width: 32px; height: 32px; }
  .hero { background: linear-gradient(rgba(255,255,255,.90), rgba(255,255,255,.94)), linear-gradient(180deg, #fffdf8, #f5f8ff); }
  .hero-copy { padding: 1.2rem; }
  .hero-art { width: 92%; }
  .trait-grid, .feature-grid, .joke-grid, .rawr-grid { grid-template-columns: 1fr; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .cta-band, .community-panel, .mini-event-flyer { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


.countdown-banner {
  background: linear-gradient(90deg, #fff4c2, #fffdf1);
  border-bottom: 4px solid var(--yellow);
}
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  flex-wrap: wrap;
}
.countdown-copy {
  font-weight: 900;
  color: var(--navy);
}
.countdown-chip {
  background: var(--navy);
  color: white;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-weight: 900;
}
.countdown-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}
.countdown-link:hover, .countdown-link:focus-visible { text-decoration: underline; }

.event-flyer {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.2rem;
  align-items: stretch;
  background: linear-gradient(145deg, #ffffff, #fffaf0);
  border: 5px solid #edf0fb;
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 4vw, 2rem);
}
.event-flyer-main h3 {
  margin: .2rem 0 .2rem;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.1rem);
}
.event-topline {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: .7rem;
}
.event-book-title { font-size: 1.15rem; color: var(--muted); margin-top: 0; }
.event-meta {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 1.3rem;
}
.event-meta div {
  background: white;
  border-radius: 16px;
  padding: .85rem 1rem;
  border: 2px solid #edf0fb;
}
.event-flyer-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.flyer-author-photo, .flyer-badge {
  width: 100%;
  border-radius: 24px;
  display: block;
  background: white;
  border: 4px solid #edf0fb;
}
.flyer-author-photo { aspect-ratio: 4 / 5; object-fit: cover; }
.flyer-badge { aspect-ratio: 1 / 1; object-fit: cover; }
.mini-event-flyer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: linear-gradient(120deg, #eef7ff, #fff7d9);
  border-radius: 28px;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 4px solid #edf0fb;
  box-shadow: var(--shadow);
}
.mini-event-flyer h2 {
  margin: 0 0 .45rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.mini-event-flyer p { margin: 0; color: var(--muted); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.quote-card { border-top: 10px solid var(--yellow); }
.quote-card:nth-child(2) { border-top-color: var(--green); }
.quote-card:nth-child(3) { border-top-color: var(--purple); }
.quote-card blockquote {
  margin: .2rem 0 .8rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}
.quote-source {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}


.verified-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.verified-review-card {
  border-top: 10px solid var(--orange);
}
.verified-review-card:nth-child(2) { border-top-color: var(--green); }
.verified-review-card:nth-child(3) { border-top-color: var(--red); }
.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .8rem;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-weight: 900;
  font-size: .92rem;
}
.review-badge.verified { background: #e8fbf8; color: #0d6a65; }
.review-badge.stars { background: #fff5cf; color: #8a5b00; }
.verified-review-card h3 {
  margin: 0;
  font-size: 1.6rem;
}
.verified-review-card h4 {
  margin: .35rem 0 .6rem;
  color: var(--navy);
  font-size: 1.2rem;
}
.review-meta {
  margin: .35rem 0 .8rem;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 700;
}
.review-list {
  margin: .8rem 0 1rem 1.1rem;
  padding: 0;
  color: var(--ink);
}
.review-list li {
  margin: .45rem 0;
}
