/* =========================================================
   WELLNESS REVIEWS — Editorial hub design system
   Deliberately distinct from the Gluco6 product-site palette:
   navy + green "editorial" identity, serif headings via
   Newsreader, body/UI via Inter.
   ========================================================= */

:root {
  --wr-navy-950: #0b1220;
  --wr-navy-800: #16233a;
  --wr-navy-700: #202f4a;
  --wr-navy-600: #3a4c68;
  --wr-green-700: #146c48;
  --wr-green-600: #1a7952;
  --wr-green-100: #e6f5ee;
  --wr-green-50: #f2f9f6;
  --wr-bg: #ffffff;
  --wr-bg-soft: #f7f9fb;
  --wr-ink-900: #131b28;
  --wr-ink-600: #4b5768;
  --wr-ink-400: #6b7686;
  --wr-line: #e3e8ee;
  --wr-line-soft: #edf1f5;
  --wr-amber: #96591a;
  --wr-shadow-sm: 0 1px 2px rgba(11,18,32,0.06), 0 1px 1px rgba(11,18,32,0.04);
  --wr-shadow-md: 0 8px 24px rgba(11,18,32,0.08);
  --wr-shadow-lg: 0 18px 44px rgba(11,18,32,0.13);
  --wr-radius-sm: 10px;
  --wr-radius-md: 16px;
  --wr-radius-lg: 22px;
  --wr-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body.wr {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--wr-ink-900);
  background: var(--wr-bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
.wr img { max-width: 100%; height: auto; display: block; }
.wr a { color: inherit; }
.wr h1, .wr h2, .wr h3, .wr h4 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--wr-navy-950);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
.wr p { margin: 0 0 1em; }
.wr ul, .wr ol { padding-left: 1.25em; }
.wr .container { max-width: var(--wr-max); margin: 0 auto; padding: 0 24px; }
.wr .mono { font-family: 'IBM Plex Mono', monospace; }
.wr section { position: relative; }
.wr .section-pad { padding: 84px 0; }
@media (max-width: 782px) { .wr .section-pad { padding: 52px 0; } }
.wr .bg-soft { background: var(--wr-bg-soft); }
.wr .bg-navy { background: var(--wr-navy-950); color: #cdd7e4; }
.wr .bg-navy h2, .wr .bg-navy h3, .wr .bg-navy h4 { color: #ffffff; }

.wr .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wr-green-700);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}
.wr .bg-navy .eyebrow { color: #8fd6b3; }

.wr .section-head { max-width: 700px; margin: 0 0 40px; }
.wr .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.wr .section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
.wr .section-head p { color: var(--wr-ink-600); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.wr .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 46px;
}
.wr .btn:active { transform: translateY(1px); }
.wr .btn-primary { background: var(--wr-green-600); color: #fff; box-shadow: 0 10px 22px rgba(31,138,95,0.25); }
.wr .btn-primary:hover { background: var(--wr-green-700); }
.wr .btn-outline { background: transparent; border-color: var(--wr-navy-700); color: var(--wr-navy-800); }
.wr .btn-outline:hover { background: var(--wr-bg-soft); }
.wr .btn-sm { padding: 10px 18px; font-size: 0.88rem; min-height: 38px; }

/* ---------- Header ---------- */
.wr .site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wr-line);
}
.wr .site-header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.wr .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: 'Newsreader', serif; font-weight: 700; font-size: 1.3rem; color: var(--wr-navy-950); }
.wr .brand .mark { width: 32px; height: 32px; border-radius: 8px; background: #fff; border: 1px solid var(--wr-line); object-fit: contain; padding: 2px; box-shadow: var(--wr-shadow-sm); }
.wr .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.wr .nav-links a { text-decoration: none; color: var(--wr-ink-600); font-weight: 500; font-size: 0.93rem; }
.wr .nav-links a:hover { color: var(--wr-navy-950); }
.wr .nav-cta { display: flex; align-items: center; gap: 16px; }
.wr .nav-toggle { display: none; background: none; border: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; }
.wr .nav-toggle span, .wr .nav-toggle::before, .wr .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--wr-navy-950); position: relative; transition: 0.2s ease; }
.wr .nav-toggle::before { position: absolute; transform: translateY(-6px); }
.wr .nav-toggle::after { position: absolute; transform: translateY(6px); }
.wr .nav-toggle span { background: transparent; }
.wr .nav-toggle.open::before { transform: rotate(45deg); }
.wr .nav-toggle.open::after { transform: rotate(-45deg); }
@media (max-width: 860px) {
  .wr .nav-links {
    position: fixed; top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--wr-line);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: 0.2s ease;
  }
  .wr .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .wr .nav-links li { border-top: 1px solid var(--wr-line-soft); }
  .wr .nav-links a { display: block; padding: 14px 4px; }
  .wr .nav-cta .btn-outline { display: none; }
  .wr .nav-toggle { display: flex; }
}
.wr .breadcrumb-bar { background: var(--wr-bg-soft); border-bottom: 1px solid var(--wr-line); padding: 13px 0; }
.wr .breadcrumb-list { list-style: none; display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: 0.84rem; color: var(--wr-ink-400); }
.wr .breadcrumb-list a { color: var(--wr-green-700); text-decoration: none; font-weight: 500; }
.wr .breadcrumb-list a:hover { text-decoration: underline; }
.wr .breadcrumb-list li[aria-current] { color: var(--wr-ink-600); }
.wr .breadcrumb-list .sep { color: var(--wr-line); }

/* ---------- Hero ---------- */
.wr .hero { background: linear-gradient(180deg, var(--wr-green-50) 0%, #ffffff 65%); padding: 68px 0 52px; overflow: hidden; }
.wr .hero .container { max-width: 820px; text-align: center; }
.wr .hero h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); margin-bottom: 10px; }
.wr .hero .hero-kicker { display: block; font-size: 1.15rem; color: var(--wr-ink-600); font-family: 'Inter', sans-serif; font-weight: 500; margin-bottom: 26px; }
.wr .hero-sub { font-size: 1.08rem; color: var(--wr-ink-600); max-width: 620px; margin: 0 auto 30px; }
.wr .hero-meta { font-size: 0.86rem; color: var(--wr-ink-400); margin-top: 22px; }

/* ---------- Mission cards ---------- */
.wr .mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .wr .mission-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .wr .mission-grid { grid-template-columns: 1fr; } }
.wr .mission-card { padding: 26px 24px; border-radius: var(--wr-radius-md); background: #fff; border: 1px solid var(--wr-line); }
.wr .mission-card .icon { width: 42px; height: 42px; border-radius: 11px; background: var(--wr-green-100); color: var(--wr-green-700); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.wr .mission-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.wr .mission-card p { font-size: 0.92rem; color: var(--wr-ink-600); margin: 0; }

/* ---------- Methodology cards ---------- */
.wr .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .wr .method-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .wr .method-grid { grid-template-columns: 1fr; } }
.wr .method-card { padding: 24px; border-radius: var(--wr-radius-md); background: var(--wr-bg-soft); border: 1px solid var(--wr-line); }
.wr .method-card .n { font-family: 'IBM Plex Mono', monospace; color: var(--wr-green-700); font-size: 0.8rem; letter-spacing: 0.06em; }
.wr .method-card h4 { font-size: 1.02rem; margin: 8px 0 8px; }
.wr .method-card p { font-size: 0.9rem; color: var(--wr-ink-600); margin: 0; }

/* ---------- Source strip ---------- */
.wr .source-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.wr .source-chip { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; letter-spacing: 0.03em; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--wr-line); background: #fff; color: var(--wr-navy-800); }

/* ---------- Callout ---------- */
.wr .callout { border-left: 3px solid var(--wr-green-600); background: var(--wr-green-50); padding: 16px 20px; border-radius: 0 var(--wr-radius-sm) var(--wr-radius-sm) 0; font-size: 0.95rem; color: var(--wr-ink-900); }
.wr .callout strong { color: var(--wr-green-700); }
.wr .callout.amber { border-left-color: var(--wr-amber); background: #fbf3ea; }
.wr .callout.amber strong { color: var(--wr-amber); }

/* ---------- Independence checklist ---------- */
.wr .check-list { list-style: none; margin: 0; padding: 0; }
.wr .check-list li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--wr-line-soft); font-size: 0.95rem; color: var(--wr-ink-600); }
.wr .check-list li:last-child { border-bottom: none; }
.wr .check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--wr-green-600); }

/* ---------- Product directory ---------- */
/* Desktop 3-up / tablet 2-up / mobile 1-up */
.wr .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 1040px) { .wr .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .wr .product-grid { grid-template-columns: 1fr; } }

.wr .product-card {
  display: flex; flex-direction: column;
  padding: 24px; border-radius: var(--wr-radius-lg);
  background: #fff; border: 1px solid var(--wr-line);
  box-shadow: var(--wr-shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wr .product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16,38,64,.11); border-color: var(--wr-green-200, #cfe6d8); }
@media (prefers-reduced-motion: reduce) { .wr .product-card { transition: none; } .wr .product-card:hover { transform: none; } }

.wr .product-card .prod-img {
  width: 100%; height: 150px; margin-bottom: 18px;
  border-radius: var(--wr-radius-md); background: var(--wr-green-50);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.wr .product-card .prod-img img { max-width: 104px; max-height: 128px; object-fit: contain; }

/* Lifestyle photographs (non-bottle products) fill the frame instead of
   sitting letterboxed inside it at bottle-shot proportions. */
.wr .product-card .prod-img.is-photo { background: none; }
.wr .product-card .prod-img.is-photo img { max-width: none; max-height: none; width: 100%; height: 100%; object-fit: cover; }

/* Honest stand-in for products we hold no product photograph for:
   a category emblem, never a fabricated product shot. */
.wr .prod-emblem { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--wr-green-700); }
.wr .prod-emblem svg { width: 40px; height: 40px; }
.wr .prod-emblem span { font-family: 'IBM Plex Mono', monospace; font-size: 0.6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--wr-ink-600); opacity: .75; }

.wr .product-card .prod-body { flex: 1; display: flex; flex-direction: column; }
.wr .product-cat { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wr-green-700); background: var(--wr-green-100); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; margin-right: 6px; }
.wr .product-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.wr .product-card p { font-size: 0.88rem; line-height: 1.62; color: var(--wr-ink-600); margin-bottom: 14px; }
.wr .prod-focus { font-size: 0.8rem; color: var(--wr-ink-600); background: var(--wr-bg-soft); border-left: 3px solid var(--wr-green-600); padding: 9px 12px; border-radius: 0 8px 8px 0; margin-bottom: 16px; }
.wr .prod-focus strong { color: var(--wr-ink-900); font-weight: 600; }
.wr .product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.wr .product-actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }

.wr .directory-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: var(--wr-radius-md);
  background: var(--wr-bg-soft);
  border: 1px dashed var(--wr-line);
  font-size: 0.9rem;
  color: var(--wr-ink-600);
  text-align: center;
}

/* ---------- How to read reviews steps ---------- */
.wr .read-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .wr .read-steps { grid-template-columns: 1fr; } }
.wr .read-step { padding: 22px; border-radius: var(--wr-radius-md); background: #fff; border: 1px solid var(--wr-line); }
.wr .read-step .step-num { font-family: 'IBM Plex Mono', monospace; color: var(--wr-green-700); font-size: 0.85rem; display: block; margin-bottom: 10px; }
.wr .read-step h4 { font-size: 1rem; margin-bottom: 8px; }
.wr .read-step p { font-size: 0.88rem; color: var(--wr-ink-600); margin: 0; }

/* ---------- FAQ ---------- */
.wr .faq-list { max-width: 800px; margin: 0 auto; }
.wr .faq-item { border-bottom: 1px solid var(--wr-line); }
.wr .faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 4px;
  font-family: 'Newsreader', serif; font-size: 1.06rem; font-weight: 600;
  color: var(--wr-navy-950);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer;
}
.wr .faq-q .plus {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--wr-green-600); color: var(--wr-green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.2s ease;
}
.wr .faq-item.open .faq-q .plus { transform: rotate(45deg); }
.wr .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.wr .faq-a-inner { padding: 0 4px 22px; color: var(--wr-ink-600); font-size: 0.96rem; max-width: 700px; }
.wr .faq-a-inner a { color: var(--wr-green-700); }

/* ---------- Footer ---------- */
.wr .site-footer { background: var(--wr-navy-950); color: #b9c5d6; padding: 52px 0 26px; }
.wr .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
@media (max-width: 900px) { .wr .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 560px) { .wr .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.wr .footer-grid h5 { color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 15px; }
.wr .footer-grid p { color: #a7b4c7; font-size: 0.89rem; }
.wr .footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Newsreader', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 13px; }
.wr .footer-links { list-style: none; padding: 0; margin: 0; }
.wr .footer-links li { margin-bottom: 9px; }
.wr .footer-links a { color: #a7b4c7; text-decoration: none; font-size: 0.89rem; }
.wr .footer-links a:hover { color: #fff; }
.wr .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; font-size: 0.8rem; color: #8794a8; }

/* ---------- Utility ---------- */
.wr .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wr a:focus-visible, .wr button:focus-visible { outline: 2px solid var(--wr-green-600); outline-offset: 2px; }
.wr .skip-link { position: absolute; left: -999px; top: 0; background: var(--wr-navy-950); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.wr .skip-link:focus { left: 0; }
.wr .prose { max-width: 780px; }
.wr .prose p { color: var(--wr-ink-600); }
.wr .prose strong { color: var(--wr-ink-900); }
.wr .bg-navy .prose p { color: #b9c5d6; }
.wr .bg-navy .prose strong { color: #ffffff; }

/* ---------- Two-column split (responsive) ---------- */
.wr .split-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .wr .split-2col { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Why readers use this resource ---------- */
.wr .reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1040px) { .wr .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .wr .reasons-grid { grid-template-columns: 1fr; } }
.wr .reason-card {
  padding: 24px 22px; border-radius: var(--wr-radius-md);
  background: #fff; border: 1px solid var(--wr-line);
  border-top: 3px solid var(--wr-green-600);
}
.wr .reason-card h4 { font-size: 1rem; margin-bottom: 8px; }
.wr .reason-card p { font-size: 0.88rem; line-height: 1.62; color: var(--wr-ink-600); margin: 0; }
.wr .reason-card a { color: var(--wr-green-700); font-weight: 600; }

/* ---------- Individual product review pages ---------- */
.wr .hero .eyebrow + h1 { margin-top: 0; }
.wr main h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin: 46px 0 14px; }
.wr main > section > .container > h2:first-of-type { margin-top: 0; }
.wr main p { color: var(--wr-ink-600); }
.wr main .container { max-width: 860px; }

.wr .disclosure-box {
  padding: 22px 26px; border-radius: var(--wr-radius-md);
  background: var(--wr-green-50); border: 1px solid #cfe6d8;
}
.wr .disclosure-box h3 { font-size: 1.02rem; margin-bottom: 8px; }
.wr .disclosure-box p { font-size: 0.9rem; margin: 0; }
.wr .disclosure-box a { color: var(--wr-green-700); font-weight: 600; }

.wr .ing-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
@media (max-width: 680px) { .wr .ing-list { grid-template-columns: 1fr; } }
.wr .ing-item { padding: 16px 18px; border-radius: var(--wr-radius-sm); background: var(--wr-bg-soft); border: 1px solid var(--wr-line); }
.wr .ing-item h4 { font-size: 0.95rem; margin-bottom: 5px; }
.wr .ing-item p { font-size: 0.85rem; margin: 0; }

.wr .claim-list { list-style: none; padding: 0; margin: 0; }
.wr .claim-list li {
  position: relative; padding: 11px 0 11px 34px;
  border-bottom: 1px solid var(--wr-line-soft);
  font-size: 0.92rem; color: var(--wr-ink-600);
}
.wr .claim-list li::before {
  content: "\201C"; position: absolute; left: 6px; top: 12px;
  font-family: 'Newsreader', serif; font-size: 1.5rem; line-height: 1;
  color: var(--wr-amber);
}

.wr .finding-list { display: flex; flex-direction: column; gap: 14px; }
.wr .finding {
  padding: 18px 20px; border-radius: var(--wr-radius-sm);
  background: #fff; border: 1px solid var(--wr-line);
  border-left: 3px solid var(--wr-navy-700);
}
.wr .finding h4 { font-size: 0.98rem; margin-bottom: 6px; }
.wr .finding p { font-size: 0.88rem; margin: 0; }

.wr .ref-list { display: flex; flex-direction: column; gap: 14px; }
.wr .ref-item { padding: 18px 20px; border-radius: var(--wr-radius-sm); background: var(--wr-bg-soft); border: 1px solid var(--wr-line); }
.wr .ref-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.wr .ref-item p { font-size: 0.86rem; margin: 0 0 8px; }
.wr .ref-item a { font-size: 0.84rem; color: var(--wr-green-700); font-weight: 600; text-decoration: none; }
.wr .ref-item a:hover { text-decoration: underline; }

.wr .safety-box {
  padding: 20px 24px; border-radius: var(--wr-radius-md);
  background: #fdf6ec; border: 1px solid #f0dcc3;
}
.wr .safety-box p { font-size: 0.9rem; color: #6d4715; }

.wr .cta-box {
  margin-top: 46px; padding: 32px; text-align: center;
  border-radius: var(--wr-radius-lg);
  background: var(--wr-navy-950); color: #cdd7e4;
}
.wr .cta-box h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.wr .cta-box p { color: #a7b4c7; font-size: 0.92rem; max-width: 520px; margin: 0 auto 20px; }
.wr .cta-box .cta-note { font-size: 0.78rem; color: #8494ab; margin: 14px auto 0; }

/* ================================================================
   Consumer review layout — product hero, verdict, benefits,
   pros/considerations, pricing. Shared by all 7 review pages.
   ================================================================ */

.wr .review-hero { padding: 44px 0 40px; background: var(--wr-bg-soft); border-bottom: 1px solid var(--wr-line); }
.wr .review-hero .container { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
@media (max-width: 780px) { .wr .review-hero .container { grid-template-columns: 1fr; gap: 26px; } }

.wr .rh-media {
  border-radius: var(--wr-radius-lg); background: #fff;
  border: 1px solid var(--wr-line); box-shadow: var(--wr-shadow-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 22px; min-height: 250px; overflow: hidden;
}
.wr .rh-media img { max-width: 100%; max-height: 210px; object-fit: contain; }
.wr .rh-media.is-photo { padding: 0; }
.wr .rh-media.is-photo img { max-height: none; width: 100%; height: 100%; min-height: 250px; object-fit: cover; }

.wr .rh-body h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin: 10px 0 12px; }
.wr .rh-body .lede { font-size: 1.02rem; line-height: 1.68; color: var(--wr-ink-600); margin-bottom: 20px; }
.wr .rh-body .hero-meta { margin-top: 18px; }

.wr .spec-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; list-style: none; padding: 0; }
.wr .spec-strip li {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--wr-navy-700); background: #fff;
  border: 1px solid var(--wr-line); border-radius: 999px; padding: 6px 12px;
}
.wr .spec-strip li strong { color: var(--wr-green-700); font-weight: 600; }

.wr .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Quick verdict */
.wr .verdict-card {
  padding: 28px 30px; border-radius: var(--wr-radius-lg);
  background: #fff; border: 1px solid var(--wr-line);
  border-top: 4px solid var(--wr-green-600); box-shadow: var(--wr-shadow-sm);
}
.wr .verdict-card h2 { margin-top: 0 !important; font-size: 1.3rem !important; }
.wr .verdict-card p { font-size: 0.95rem; }
.wr .verdict-card p:last-of-type { margin-bottom: 0; }
.wr .verdict-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0 4px; }
@media (max-width: 700px) { .wr .verdict-grid { grid-template-columns: 1fr; } }
.wr .verdict-grid div { padding: 14px 16px; border-radius: var(--wr-radius-sm); background: var(--wr-bg-soft); border: 1px solid var(--wr-line); }
.wr .verdict-grid h4 { font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: .06em; color: var(--wr-green-700); margin-bottom: 5px; }
.wr .verdict-grid p { font-size: 0.86rem; margin: 0; }

/* Benefit / feature cards */
.wr .benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .wr .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .wr .benefit-grid { grid-template-columns: 1fr; } }
.wr .benefit-card {
  padding: 20px; border-radius: var(--wr-radius-md);
  background: #fff; border: 1px solid var(--wr-line);
  transition: border-color .2s ease, transform .2s ease;
}
.wr .benefit-card:hover { border-color: #cfe6d8; transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .wr .benefit-card { transition: none; } .wr .benefit-card:hover { transform: none; } }
.wr .benefit-card .tick {
  width: 30px; height: 30px; border-radius: 9px; margin-bottom: 12px;
  background: var(--wr-green-100); color: var(--wr-green-700);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700;
}
.wr .benefit-card h4 { font-size: 0.97rem; margin-bottom: 6px; }
.wr .benefit-card p { font-size: 0.86rem; margin: 0; }

/* Pros vs considerations */
.wr .pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .wr .pc-grid { grid-template-columns: 1fr; } }
.wr .pc-col { padding: 24px; border-radius: var(--wr-radius-md); background: #fff; border: 1px solid var(--wr-line); }
.wr .pc-col.pros { border-top: 3px solid var(--wr-green-600); }
.wr .pc-col.cons { border-top: 3px solid var(--wr-amber); }
.wr .pc-col h3 { font-size: 1.05rem; margin-bottom: 14px; }
.wr .pc-col ul { list-style: none; padding: 0; margin: 0; }
.wr .pc-col li { position: relative; padding: 9px 0 9px 26px; font-size: 0.89rem; color: var(--wr-ink-600); border-bottom: 1px solid var(--wr-line-soft); }
.wr .pc-col li:last-child { border-bottom: 0; }
.wr .pc-col.pros li::before { content: "+"; position: absolute; left: 4px; top: 8px; color: var(--wr-green-600); font-weight: 700; }
.wr .pc-col.cons li::before { content: "!"; position: absolute; left: 7px; top: 8px; color: var(--wr-amber); font-weight: 700; }

/* Pricing */
.wr .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .wr .price-grid { grid-template-columns: 1fr; } }
.wr .price-card { padding: 22px 20px; border-radius: var(--wr-radius-md); background: #fff; border: 1px solid var(--wr-line); text-align: center; }
.wr .price-card.featured { border-color: var(--wr-green-600); box-shadow: var(--wr-shadow-sm); }
.wr .price-card .pack { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--wr-green-700); }
.wr .price-card .amount { font-family: 'Newsreader', serif; font-size: 1.7rem; font-weight: 700; color: var(--wr-ink-900); margin: 8px 0 2px; }
.wr .price-card .per { font-size: 0.8rem; color: var(--wr-ink-600); margin: 0 0 8px; }
.wr .price-card .note { font-size: 0.8rem; color: var(--wr-ink-600); margin: 0; }
.wr .price-caveat { margin-top: 14px; font-size: 0.85rem; }

/* Related reviews */
.wr .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px) { .wr .related-grid { grid-template-columns: 1fr; } }
.wr .related-grid a {
  display: block; padding: 16px 18px; border-radius: var(--wr-radius-sm);
  background: #fff; border: 1px solid var(--wr-line);
  text-decoration: none; transition: border-color .2s ease;
}
.wr .related-grid a:hover { border-color: #cfe6d8; }
.wr .related-grid strong { display: block; color: var(--wr-ink-900); font-size: 0.94rem; margin-bottom: 3px; }
.wr .related-grid span { font-size: 0.8rem; color: var(--wr-ink-600); }
