:root {
  --ink: #101923;
  --navy: #0b2239;
  --navy-deep: #061524;
  --paper: #f4f1ea;
  --white: #ffffff;
  --muted: #5f6a73;
  --line: #d7d9d8;
  --red: #b52c32;
  --red-dark: #8e1f24;
  --gold: #d4a74c;
  --sage: #dce5dc;
  --blue-wash: #e8eef3;
  --shadow: 0 18px 50px rgba(6, 21, 36, 0.12);
  --font-sans: Arial, Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-condensed: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.offer-open {
  padding-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: 4px;
  background: transparent;
  pointer-events: none;
}

.progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.masthead__utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.masthead__utility-inner,
.masthead__main,
.section-nav__inner,
.page-shell,
.site-footer__inner,
.home-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.masthead__utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.live-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.live-tag::before {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.masthead__date {
  color: rgba(255, 255, 255, 0.66);
}

.masthead__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-self: center;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand__name {
  font-family: var(--font-condensed);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand__desk {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.masthead__topic {
  justify-self: start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead__sponsor {
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-align: right;
}

.section-nav {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-nav__inner {
  display: flex;
  gap: 27px;
  align-items: center;
  min-height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav__inner::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: 0 0 auto;
  padding: 14px 0 12px;
  border-bottom: 3px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-nav a[aria-current="page"] {
  border-color: var(--red);
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 70px;
  align-items: start;
  padding: 62px 0 80px;
}

.page-shell > article {
  min-width: 0;
}

.article-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-kicker::before {
  width: 30px;
  height: 4px;
  background: var(--red);
  content: "";
}

.article-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.article-deck {
  max-width: 720px;
  margin: 24px 0;
  color: #3b4650;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.38;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin: 0 0 30px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-meta strong {
  color: var(--ink);
}

.author-bio {
  max-width: 760px;
  margin: -12px 0 30px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
}

.author-bio strong {
  color: var(--ink);
}

.sponsored-pill,
.reader-offer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sponsored-pill {
  color: var(--white);
  background: var(--navy);
}

.reader-offer-pill {
  color: #5b4103;
  background: #f5e3ad;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  margin: 0 0 40px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-clock {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-clock__half {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 38px;
}

.hero-clock__half:first-child {
  color: var(--navy-deep);
  background: #d9c4a4;
}

.hero-clock__half:last-child {
  background: #071c31;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-clock__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-clock__time {
  font-family: var(--font-condensed);
  font-size: clamp(72px, 11vw, 130px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.hero-clock__status {
  max-width: 230px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
}

.hero-label-test {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #d7d1c4;
}

.cabinet-visual {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
  padding: 42px 24px;
  background: linear-gradient(135deg, #e4dfd4 0%, #c8c1b5 100%);
}

.generic-bottle {
  position: relative;
  width: 86px;
  height: 172px;
  background: #fbfaf5;
  border: 1px solid rgba(6, 21, 36, 0.16);
  border-radius: 8px 8px 16px 16px;
  box-shadow: 0 18px 30px rgba(6, 21, 36, 0.14);
  transform: rotate(-3deg);
}

.generic-bottle:nth-child(2) {
  height: 205px;
  transform: rotate(4deg) translateY(-6px);
}

.generic-bottle:nth-child(3) {
  height: 155px;
  transform: rotate(1deg);
}

.generic-bottle::before {
  position: absolute;
  top: -22px;
  left: 6px;
  width: calc(100% - 12px);
  height: 27px;
  background: #253746;
  border-radius: 5px 5px 1px 1px;
  content: "";
}

.generic-bottle::after {
  position: absolute;
  inset: 45px 9px 28px;
  display: grid;
  place-items: center;
  color: #6a7075;
  background: #e8e4db;
  content: "ASHWA";
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.label-test-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  background: var(--navy);
}

.label-test-card__number {
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 84px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.label-test-card h2 {
  margin: 12px 0 18px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.08;
}

.label-test-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.article-body {
  max-width: 690px;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.76;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--red-dark);
  font-family: var(--font-condensed);
  font-size: 74px;
  font-weight: 900;
  line-height: 0.72;
}

.article-body p {
  margin: 0 0 1.35em;
}

.article-body h2 {
  margin: 2.2em 0 0.65em;
  padding-top: 0.35em;
  border-top: 5px solid var(--navy);
  font-family: var(--font-condensed);
  font-size: clamp(31px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.article-body h3 {
  margin: 1.7em 0 0.55em;
  font-family: var(--font-sans);
  font-size: 21px;
  line-height: 1.25;
}

.article-body ul {
  margin: 0 0 1.5em;
  padding-left: 1.15em;
}

.article-body li {
  margin: 0 0 0.7em;
  padding-left: 0.25em;
}

.article-body sup a {
  color: var(--red-dark);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.article-body a:not(.button) {
  text-decoration-color: rgba(181, 44, 50, 0.45);
  text-underline-offset: 3px;
}

.article-body strong {
  font-weight: 700;
}

.short-beat {
  max-width: 570px;
  font-size: 24px;
  line-height: 1.5;
}

.article-photo {
  margin: 42px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.article-photo--hero {
  margin: 0 0 42px;
}

.article-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.article-photo figcaption {
  padding: 11px 2px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
}

.quick-answer {
  margin: 34px 0 42px;
  padding: 25px 28px;
  color: var(--white);
  background: var(--navy);
  border-left: 7px solid var(--red);
  font-family: var(--font-sans);
}

.quick-answer__label {
  display: block;
  margin-bottom: 9px;
  color: #efcd87;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.pull-quote {
  margin: 44px 0;
  padding: 10px 0 10px 30px;
  border-left: 7px solid var(--red);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 39px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.fact-panel {
  margin: 38px 0;
  padding: 28px 30px;
  background: var(--blue-wash);
  border-top: 4px solid var(--navy);
  font-family: var(--font-sans);
}

.fact-panel__label {
  display: block;
  margin-bottom: 13px;
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-panel p:last-child,
.fact-panel ul:last-child {
  margin-bottom: 0;
}

.four-test {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 38px 0;
  background: #bac4ca;
  border: 1px solid #bac4ca;
  font-family: var(--font-sans);
}

.four-test__item {
  min-height: 155px;
  padding: 24px;
  background: var(--white);
}

.four-test__num {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.four-test__item strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.product-reveal {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 46px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  font-family: var(--font-sans);
}

.product-reveal__visual {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 34px;
  background: #ebe4d6;
}

.product-reveal__visual img {
  width: min(100%, 310px);
  max-height: 330px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-reveal__copy {
  padding: 38px 34px;
}

.product-reveal__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #e6c377;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-reveal h3 {
  margin: 0 0 15px;
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1.08;
}

.product-reveal p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.product-reveal ul {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
}

.mechanism-section {
  margin: 46px 0;
  padding: 36px;
  color: var(--ink);
  background: #ebe7dc;
  border-top: 7px solid var(--red);
  font-family: var(--font-sans);
}

.mechanism-section__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mechanism-section h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.05;
}

.mechanism-section__lead {
  max-width: 630px;
  margin: 0 0 26px;
  color: #3f4b54;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #c9c6bd;
  border: 1px solid #c9c6bd;
}

.mechanism-step {
  min-height: 190px;
  padding: 25px;
  background: var(--white);
}

.mechanism-step__top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.mechanism-step__number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 900;
}

.mechanism-step h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.mechanism-step p {
  margin: 0;
  color: #56616a;
  font-size: 16px;
  line-height: 1.6;
}

.mechanism-close {
  margin: 25px 0 0;
  padding-top: 22px;
  border-top: 1px solid #c9c6bd;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.conversion-break {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 40px 0;
  padding: 25px 28px;
  background: var(--sage);
  border: 1px solid #bdc9bd;
  font-family: var(--font-sans);
}

.conversion-break__product {
  width: 86px;
  height: 86px;
  object-fit: cover;
  background: #f2eadc;
  border: 1px solid rgba(6, 21, 36, 0.12);
  border-radius: 3px;
}

.conversion-break strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
}

.conversion-break span {
  color: #4e5a52;
  font-size: 13px;
  line-height: 1.45;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 22px;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  z-index: -1;
  width: 34%;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  transform: skewX(-18deg);
  animation: buttonShine 5.5s ease-in-out 1.2s infinite;
}

.button::after {
  content: "→";
  font-size: 17px;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

@keyframes buttonShine {
  0%,
  66% {
    left: -55%;
  }

  86%,
  100% {
    left: 135%;
  }
}

.button:focus-visible,
.offer-close:focus-visible,
.offer-reopen:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button--wide {
  width: 100%;
}

.offer-section {
  margin: 52px 0 45px;
  padding: 38px;
  color: var(--white);
  background: var(--navy-deep);
  border-top: 7px solid var(--red);
  box-shadow: var(--shadow);
  font-family: var(--font-sans);
}

.offer-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 35px;
}

.offer-section h2 {
  margin: 12px 0 14px;
  padding: 0;
  border: 0;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.06;
}

.offer-section p,
.offer-section li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.62;
}

.offer-section__product {
  display: block;
  width: 100%;
  max-height: 235px;
  margin-bottom: 16px;
  object-fit: cover;
  background: #eee4d4;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.offer-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 18px 0 4px;
}

.offer-price__now {
  font-family: var(--font-condensed);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.offer-price__was {
  color: rgba(255, 255, 255, 0.52);
  font-size: 17px;
  text-decoration: line-through;
}

.offer-math {
  margin-bottom: 20px;
  color: #e7c77f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-terms {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.45;
}

.safety-box {
  margin: 44px 0;
  padding: 30px;
  background: #f2e8d6;
  border: 1px solid #d4c4a9;
  font-family: var(--font-sans);
}

.safety-box h2 {
  margin-top: 0;
  border-top: 0;
  font-size: 31px;
}

.safety-box p,
.safety-box li {
  font-size: 14px;
  line-height: 1.6;
}

.sources {
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
}

.sources h2 {
  margin-top: 0;
  border: 0;
  font-size: 25px;
}

.sources ol {
  padding-left: 20px;
  color: #56616a;
  font-size: 11px;
  line-height: 1.5;
}

.sources li {
  margin-bottom: 9px;
}

.sources a {
  overflow-wrap: anywhere;
}

.disclaimer {
  margin: 28px 0 0;
  padding: 20px;
  color: #5b5a56;
  background: #ebe8e0;
  border: 1px solid #d7d3ca;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.55;
}

.sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  min-height: 490px;
}

.offer-card {
  position: fixed;
  top: 126px;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 45;
  grid-area: 1 / 1;
  width: 320px;
  max-height: calc(100vh - 146px);
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  border: 1px solid #c9ced1;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.sidebar-context {
  grid-area: 1 / 1;
  align-self: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 5px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.sidebar-context__eyebrow {
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-context h2 {
  margin: 8px 0 18px;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.08;
}

.sidebar-context ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: report-sections;
}

.sidebar-context li {
  counter-increment: report-sections;
  border-top: 1px solid var(--line);
}

.sidebar-context a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.sidebar-context a::before {
  color: var(--red);
  content: "0" counter(report-sections);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 900;
}

.sidebar-context__related {
  margin: 18px 0 0;
  padding-top: 17px;
  border-top: 3px solid var(--navy);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.sidebar-context__related a {
  display: inline;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 15px;
  text-transform: none;
}

.sidebar-context__related a::before {
  display: none;
}

.offer-card.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  animation: offerGlow 3.8s ease-in-out 400ms 2;
}

.force-offer .offer-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.offer-card__flag {
  padding: 9px 44px 9px 15px;
  color: var(--white);
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-close {
  position: absolute;
  top: 5px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.offer-card__image {
  display: grid;
  place-items: center;
  min-height: 195px;
  padding: 20px;
  background: #ede8de;
}

.offer-card__image img {
  width: 175px;
  height: 170px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.offer-card__image .offer-card__bundle {
  width: 100%;
  height: 195px;
  object-fit: cover;
  mix-blend-mode: normal;
}

.offer-card__bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 175px;
  padding: 8px 8px 0;
}

.offer-card__bottles img {
  width: 108px;
  height: 155px;
  margin: 0 -24px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 9px rgba(6, 21, 36, 0.16));
}

.offer-card__bottles img:first-child {
  transform: translateY(11px) rotate(-7deg) scale(0.88);
}

.offer-card__bottles img:nth-child(2) {
  position: relative;
  z-index: 2;
}

.offer-card__bottles img:last-child {
  transform: translateY(11px) rotate(7deg) scale(0.88);
}

.offer-card__benefits {
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
}

.offer-card__benefits li {
  position: relative;
  margin: 0 0 7px;
  padding-left: 20px;
  color: #38434b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.offer-card__benefits li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

@keyframes offerGlow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 20px 58px rgba(181, 44, 50, 0.24);
  }
}

.offer-card__body {
  padding: 22px;
}

.offer-card__eyebrow {
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h2 {
  margin: 8px 0 9px;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.08;
}

.offer-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.offer-card .offer-price {
  margin: 14px 0 6px;
}

.offer-card .offer-price__now {
  font-size: 38px;
}

.offer-card .offer-price__was {
  color: #7a8389;
  font-size: 14px;
}

.offer-card__fine {
  margin-top: 10px;
  color: #7a8389;
  font-size: 9px;
  line-height: 1.4;
}

.offer-reopen {
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 45;
  display: none;
  padding: 13px 8px;
  color: var(--white);
  background: var(--red);
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.offer-reopen.is-visible {
  display: block;
}

.mobile-offer {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-deep);
  border-top: 8px solid var(--red);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 0;
}

.site-footer .brand {
  justify-self: start;
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 22px;
  align-content: start;
  justify-content: flex-end;
  font-size: 11px;
}

.footer-links a {
  text-underline-offset: 3px;
}

.home-body {
  min-height: 100vh;
  background: var(--paper);
}

.home-shell {
  padding: 65px 0 90px;
}

.home-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.home-intro h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.home-intro p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.5;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 35px;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  transition: transform 180ms ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-card__visual {
  display: flex;
  align-items: flex-end;
  min-height: 210px;
  padding: 24px;
  background: #d9c4a4;
}

.story-card:nth-child(2) .story-card__visual {
  background: #cbd5d9;
}

.story-card__visual span {
  color: var(--navy-deep);
  font-family: var(--font-condensed);
  font-size: 74px;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.story-card__body h2 {
  margin: 8px 0 16px;
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1.08;
}

.story-card__body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.story-card__cta {
  margin-top: auto;
  color: #f1cf85;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Deliberately plain, early-2010s advertorial skin. */
body {
  color: #222;
  background: #e9e9e9;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: #164f8c;
}

a:hover {
  text-decoration: underline;
}

.masthead {
  position: relative;
  color: #222;
  background: #fff;
  border-top: 5px solid #9d0000;
  border-bottom: 1px solid #999;
  box-shadow: none;
}

.masthead__utility {
  color: #444;
  background: #ededed;
  border-bottom: 1px solid #ccc;
}

.masthead__utility-inner {
  min-height: 29px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.live-tag::before {
  display: none;
}

.masthead__main {
  min-height: 68px;
}

.masthead__topic {
  visibility: hidden;
}

.masthead__sponsor {
  color: #555;
  font-size: 11px;
}

.brand {
  gap: 0;
}

.brand__mark,
.brand__desk {
  display: none;
}

.brand__name {
  color: #183f6d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.section-nav {
  background: #dedede;
  border-bottom: 1px solid #aaa;
  box-shadow: inset 0 1px #fff;
}

.section-nav__inner {
  min-height: 35px;
}

.section-nav a {
  padding: 10px 0 8px;
  color: #154f8c;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.section-nav a[aria-current="page"] {
  color: #8c0000;
  text-decoration: underline;
}

.page-shell,
.home-shell,
.masthead__utility-inner,
.masthead__main,
.section-nav__inner,
.site-footer__inner {
  width: min(1000px, calc(100% - 30px));
}

.page-shell {
  grid-template-columns: minmax(0, 660px) 300px;
  gap: 30px;
  padding: 30px 0 60px;
}

.page-shell > article,
.home-shell {
  background: #fff;
}

.page-shell > article {
  padding: 24px 26px 42px;
  border: 1px solid #c3c3c3;
}

.article-kicker {
  margin-bottom: 13px;
  color: #990000;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-kicker::before {
  width: 18px;
  height: 3px;
  background: #990000;
}

.article-title {
  max-width: none;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.article-deck {
  margin: 18px 0;
  color: #444;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.4;
}

.article-meta {
  gap: 9px 15px;
  margin-bottom: 24px;
  padding: 11px 0;
  color: #666;
  border-color: #ccc;
  font-size: 11px;
}

.author-bio {
  margin: -10px 0 24px;
  padding-left: 10px;
  color: #555;
  border-left: 3px solid #990000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.sponsored-pill,
.reader-offer-pill {
  min-height: 20px;
  padding: 3px 6px;
  border-radius: 0;
  font-size: 9px;
}

.article-photo {
  padding: 3px;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: none;
}

.article-photo figcaption {
  padding: 7px 8px 5px;
  color: #666;
  background: #eee;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

.article-body {
  max-width: none;
  color: #292929;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.article-body p {
  margin: 0 0 19px;
}

.article-body h2 {
  margin: 39px 0 17px;
  padding: 0 0 7px;
  color: #173f6c;
  border-top: 0;
  border-bottom: 2px solid #173f6c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.article-body h3 {
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.quick-answer,
.source-note {
  color: #222;
  background: #fff8d8;
  border: 1px solid #c9b976;
  border-left: 5px solid #990000;
  box-shadow: none;
}

.quick-answer .quick-answer__label {
  color: #7a0000;
  font-size: 12px;
  font-weight: 700;
}

.quick-answer p {
  color: #222;
}

.pull-quote {
  color: #173f6c;
  border-left-color: #a40000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.product-reveal {
  overflow: hidden;
  background: #f5f5f5;
  border: 2px solid #888;
  box-shadow: none;
}

.product-reveal__visual {
  background: #eee7d8;
}

.product-reveal__copy {
  color: #222;
  background: #f5f5f5;
}

.product-reveal__copy h3 {
  color: #173f6c;
  font-family: Georgia, "Times New Roman", serif;
}

.product-reveal__copy p,
.product-reveal__copy li {
  color: #333;
}

.mechanism-section {
  padding: 26px;
  background: #fff;
  border: 2px solid #999;
  border-top: 6px solid #a40000;
  box-shadow: none;
}

.mechanism-section h2 {
  color: #173f6c;
}

.mechanism-step {
  background: #f3f3f3;
  border-color: #bbb;
}

.mechanism-step__number {
  background: #a40000;
}

.conversion-break {
  background: #fff7d3;
  border: 1px solid #c2af69;
  box-shadow: none;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  background: linear-gradient(#d84b3f, #a40000);
  border: 1px solid #750000;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.35);
}

.button::before {
  display: none;
}

.button:hover {
  background: linear-gradient(#e1584c, #b40000);
  text-decoration: none;
}

.offer-section {
  color: #222;
  background: #fff;
  border: 2px solid #777;
  border-top: 8px solid #a40000;
  box-shadow: none;
}

.offer-section h2 {
  color: #a40000;
}

.offer-section p,
.offer-section li {
  color: #333;
}

.offer-section__product {
  border-color: #aaa;
}

.offer-section .offer-price__now {
  color: #a40000;
}

.offer-section .offer-price__was,
.offer-terms {
  color: #666;
}

.offer-math {
  color: #7b5b00;
}

.safety-box {
  background: #f5f0e5;
  border-color: #b7aa90;
}

.sources a {
  color: #164f8c;
  text-decoration: underline;
}

.sidebar {
  top: 18px;
}

.sidebar-context {
  padding: 18px;
  background: #fff;
  border: 1px solid #aaa;
  border-top: 5px solid #a40000;
}

.sidebar-context h2 {
  color: #173f6c;
  font-family: Georgia, "Times New Roman", serif;
}

.offer-card {
  top: 18px;
  right: max(15px, calc((100vw - 1000px) / 2));
  width: 300px;
  max-height: calc(100vh - 36px);
  border: 2px solid #a40000;
  border-radius: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.28);
}

.offer-card__flag {
  background: linear-gradient(#c72d2d, #990000);
  font-size: 10px;
}

.offer-card h2 {
  color: #173f6c;
  font-family: Georgia, "Times New Roman", serif;
}

.offer-card .offer-price__now {
  color: #a40000;
}

.site-footer {
  color: #ddd;
  background: #333;
  border-top: 5px solid #990000;
}

.site-footer .brand__name {
  color: #fff;
  font-size: 22px;
}

.home-shell {
  margin-top: 30px;
  margin-bottom: 45px;
  padding: 26px;
  border: 1px solid #bbb;
}

.home-intro h1,
.story-card h2 {
  color: #173f6c;
  font-family: Georgia, "Times New Roman", serif;
}

.story-card {
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 0;
  box-shadow: none;
}

.story-card__visual {
  color: #173f6c;
  background: #dbe3eb;
}

@media (max-width: 1020px) {
  .page-shell {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 35px;
  }

  .masthead__topic,
  .masthead__sponsor {
    visibility: hidden;
  }

  .article-title {
    font-size: clamp(42px, 6vw, 62px);
  }

  .offer-card {
    right: 20px;
    width: 285px;
  }
}

@media (max-width: 820px) {
  body.offer-open {
    padding-bottom: 84px;
  }

  .article-photo img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .masthead__utility {
    display: none;
  }

  .masthead__main {
    display: flex;
    justify-content: center;
    min-height: 64px;
  }

  .masthead__topic,
  .masthead__sponsor {
    display: none;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .brand__name {
    font-size: 24px;
  }

  .section-nav__inner,
  .masthead__main,
  .page-shell,
  .site-footer__inner,
  .home-shell {
    width: calc(100% - 28px);
    max-width: 720px;
  }

  .page-shell {
    display: block;
    padding-top: 36px;
  }

  .sidebar,
  .offer-reopen {
    display: none !important;
  }

  .article-title {
    font-size: clamp(39px, 11vw, 60px);
    overflow-wrap: break-word;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-clock__half,
  .cabinet-visual {
    min-height: 360px;
    padding: 28px;
  }

  .hero-label-test {
    grid-template-columns: 1fr;
  }

  .cabinet-visual {
    display: none;
  }

  .label-test-card {
    min-height: 360px;
    padding: 34px;
  }

  .article-body {
    font-size: 20px;
    line-height: 1.72;
  }

  .product-reveal,
  .offer-section__grid,
  .conversion-break,
  .site-footer__inner,
  .home-intro,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .product-reveal__visual {
    min-height: 290px;
  }

  .product-reveal__visual img {
    max-height: 245px;
  }

  .conversion-break {
    align-items: start;
  }

  .conversion-break__product {
    width: 140px;
    height: 140px;
  }

  .conversion-break .button {
    width: 100%;
  }

  .mobile-offer {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: 54px 1fr auto 32px;
    gap: 10px;
    align-items: center;
    min-height: 66px;
    padding: 8px 8px 8px 10px;
    color: var(--white);
    background: var(--navy-deep);
    border-top: 4px solid var(--red);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    visibility: hidden;
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .mobile-offer.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .force-offer {
    padding-bottom: 84px;
  }

  .force-offer .mobile-offer {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-offer img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #ebe4d6;
  }

  .mobile-offer__copy strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 13px;
    line-height: 1.15;
  }

  .mobile-offer__copy span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
  }

  .mobile-offer .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 9px;
  }

  .mobile-offer .offer-close {
    position: static;
    width: 28px;
    height: 28px;
  }

  .home-intro {
    gap: 25px;
  }
}

@media (max-width: 560px) {
  .section-nav__inner {
    gap: 21px;
  }

  .article-deck {
    font-size: 19px;
  }

  .hero-clock {
    grid-template-columns: 1fr;
  }

  .hero-clock__half {
    min-height: 200px;
  }

  .hero-clock__time {
    font-size: 73px;
  }

  .hero-clock__status {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .four-test {
    grid-template-columns: 1fr;
  }

  .mechanism-grid {
    grid-template-columns: 1fr;
  }

  .mechanism-section {
    padding: 28px 22px;
  }

  .mechanism-section h2 {
    font-size: 34px;
  }

  .mechanism-step {
    min-height: auto;
  }

  .four-test__item {
    min-height: auto;
  }

  .offer-section,
  .product-reveal__copy {
    padding: 28px 22px;
  }

  .product-reveal__visual {
    min-height: 250px;
  }

  .offer-price__now {
    font-size: 45px;
  }

  .mobile-offer {
    grid-template-columns: 46px 1fr auto 28px;
    gap: 8px;
  }

  .mobile-offer img {
    display: block;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
