﻿:root {
  --ink: #211d1f;
  --muted: #6d625b;
  --paper: #f7f1e5;
  --surface: #fffdfa;
  --porcelain: #eef6f3;
  --line: #dfd2bf;
  --cinnabar: #a93c2b;
  --cinnabar-dark: #7e2d23;
  --jade: #1e6f65;
  --indigo: #2c4568;
  --plum: #5d345f;
  --gold: #b98b31;
  --shadow: 0 18px 44px rgba(33, 29, 31, 0.13);
}

/* Final mobile article title guard: keep long detail-page titles inside the viewport. */
@media (max-width: 680px) {
  body.apothecary-site:not(.home-page) .article-hero,
  body.apothecary-site:not(.home-page) .article-hero > div,
  body.apothecary-site:not(.home-page) .article-layout,
  body.apothecary-site:not(.home-page) .article-content {
    inline-size: 100% !important;
    max-inline-size: 100% !important;
    min-inline-size: 0 !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    display: block !important;
    inline-size: 100% !important;
    max-inline-size: 100% !important;
    min-inline-size: 0 !important;
    font-size: clamp(1.58rem, 7.4vw, 2.08rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    text-wrap: wrap !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: auto;
  }

  body.apothecary-site:not(.home-page) .article-content h2,
  body.apothecary-site:not(.home-page) .article-content h3,
  body.apothecary-site:not(.home-page) .article-content p,
  body.apothecary-site:not(.home-page) .article-content li {
    max-inline-size: 100% !important;
    white-space: normal !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(185, 139, 49, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 111, 101, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.35rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 210, 191, 0.9);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--cinnabar);
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cinnabar-dark);
}

.hero-section,
.intent-panel,
.content-section,
.feature-band,
.legal-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.hero-section {
  min-height: calc(100vh - 4.25rem);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 1.02fr);
  gap: 1.35rem;
  align-items: center;
}

.hero-copy {
  padding-block: 1rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--cinnabar);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro {
  max-width: 61ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.primary-link,
.secondary-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0.72rem 0.95rem;
  font-weight: 900;
  text-decoration: none;
}

.primary-link {
  border: 1px solid var(--cinnabar);
  background: var(--cinnabar);
  color: white;
}

.primary-link:hover {
  background: var(--cinnabar-dark);
}

.secondary-link {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.secondary-link:hover {
  border-color: var(--jade);
  color: var(--jade);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.hero-media figcaption {
  padding: 0.72rem 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.intent-panel {
  padding-top: 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.65fr);
  gap: 1rem;
  align-items: end;
}

.section-heading p,
.section-intro {
  margin: 0;
  color: var(--muted);
}

.path-grid,
.topic-grid,
.standards-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card,
.topic-card,
.standards-grid article,
.legal-card,
.method-list div,
.faq-section details,
.content-section details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 10px 24px rgba(33, 29, 31, 0.06);
}

.path-card {
  display: block;
  padding: 1rem;
  text-decoration: none;
}

.path-card span,
.topic-label {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.path-card:hover,
.topic-card:hover {
  border-color: var(--cinnabar);
}

.topic-card,
.standards-grid article {
  padding: 1rem;
}

.topic-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.topic-card p,
.standards-grid p,
.method-list span,
.legal-card p,
.content-section details p {
  color: var(--muted);
}

.feature-band {
  max-width: none;
  background: var(--ink);
  color: white;
}

.feature-band .content-narrow {
  max-width: 1180px;
}

.feature-band p,
.feature-band span {
  color: rgba(255, 255, 255, 0.76);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: 1.1rem;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 0.7rem;
}

.method-list div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  background: rgba(255, 253, 250, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.method-list strong {
  color: white;
}

.content-narrow {
  max-width: 1180px;
  margin: 0 auto;
}

.content-section details {
  padding: 1rem;
  margin-top: 0.8rem;
}

.content-section summary {
  cursor: pointer;
  font-weight: 900;
}

.legal-page {
  padding-top: 2.25rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.legal-card {
  padding: clamp(1rem, 3vw, 1.4rem);
}

.legal-card + .legal-card {
  margin-top: 0.85rem;
}

.legal-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.inline-list {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.disclaimer {
  border-left: 4px solid var(--gold);
  background: rgba(185, 139, 49, 0.12);
  padding: 0.85rem 1rem;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 72ch;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  font-weight: 850;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cinnabar-dark);
}

.article-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 2rem;
}

.article-kicker {
  margin: 0 0 0.55rem;
  color: var(--jade);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5.4vw, 4.55rem);
  line-height: 1;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
  gap: 1.7rem;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 5.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.94);
  padding: 1rem;
}

.article-toc h2 {
  margin-bottom: 0.65rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 0.38rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--cinnabar-dark);
}

.article-toc .toc-h3 {
  padding-left: 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.article-content {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.96);
  padding: clamp(1.1rem, 3vw, 2.2rem);
  box-shadow: 0 14px 34px rgba(33, 29, 31, 0.08);
}

.article-content p,
.article-content li {
  color: #332b2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-content p {
  margin: 0 0 1.05rem;
}

.article-content h2,
.article-content h3 {
  max-width: none;
  color: var(--ink);
  letter-spacing: 0;
}

.article-content h2 {
  margin: 2.2rem 0 0.85rem;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.15;
}

.article-content h3 {
  margin: 1.65rem 0 0.65rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.article-subtitle {
  border-left: 4px solid var(--gold);
  background: rgba(185, 139, 49, 0.1);
  padding: 0.9rem 1rem;
}

.article-list {
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
}

.article-figure {
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.article-figure img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.article-figure figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

:focus-visible {
  outline: 3px solid rgba(30, 111, 101, 0.26);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .hero-section,
  .section-heading,
  .split-layout,
  .legal-layout,
  .article-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2.2rem;
  }

  .path-grid,
  .topic-grid,
  .standards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media img {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.9rem;
  }

  .path-grid,
  .topic-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* Apothecary site redesign: scoped to avoid changing the older vegan site. */
body.apothecary-site {
  --ap-ink: #171412;
  --ap-ink-soft: #312b27;
  --ap-muted: #655f59;
  --ap-paper: #fbf8f0;
  --ap-surface: #fffdf8;
  --ap-surface-strong: #ffffff;
  --ap-line: #d9cab7;
  --ap-line-strong: #bda88c;
  --ap-cinnabar: #9b2f26;
  --ap-cinnabar-dark: #74231d;
  --ap-jade: #0f5f56;
  --ap-jade-dark: #0a3f3b;
  --ap-indigo: #263e5b;
  --ap-gold: #a67a24;
  --ap-shadow-sm: 0 8px 20px rgba(23, 20, 18, 0.08);
  --ap-shadow-md: 0 18px 44px rgba(23, 20, 18, 0.12);
  --ap-radius: 8px;
  color: var(--ap-ink);
  background:
    linear-gradient(90deg, rgba(15, 95, 86, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(155, 47, 38, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fbf8f0 0%, #f4efe4 48%, #fbf8f0 100%);
  background-size: 56px 56px, 56px 56px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.apothecary-site * {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.apothecary-site .skip-link {
  background: var(--ap-ink);
  color: #fffdf8;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.apothecary-site .site-header {
  border-bottom: 1px solid rgba(166, 122, 36, 0.38);
  background: rgba(23, 20, 18, 0.96);
  color: #fffdf8;
  box-shadow: 0 8px 24px rgba(23, 20, 18, 0.18);
}

.apothecary-site .nav {
  max-width: 1240px;
  min-height: 72px;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
}

.apothecary-site .brand {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0;
}

.apothecary-site .brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--ap-cinnabar) 0%, #641e1b 100%);
  color: #fffdf8;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(166, 122, 36, 0.35);
}

.apothecary-site .nav-links {
  gap: 0.25rem;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  font-weight: 780;
}

.apothecary-site .nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.45rem 0.72rem;
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.apothecary-site .nav-links a:hover,
.apothecary-site .nav-links a:focus-visible {
  background: rgba(255, 253, 248, 0.09);
  color: #fffdf8;
}

.apothecary-site .hero-section,
.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .feature-band,
.apothecary-site .legal-page,
.apothecary-site .article-page {
  max-width: 1240px;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.apothecary-site .hero-section {
  min-height: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(1.2rem, 3vw, 2.25rem);
  align-items: center;
  padding-top: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.apothecary-site .hero-copy {
  position: relative;
  padding: clamp(0.4rem, 2vw, 1.2rem) 0;
}

.apothecary-site .hero-copy::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ap-cinnabar), var(--ap-gold), var(--ap-jade));
}

.apothecary-site .eyebrow,
.apothecary-site .article-kicker,
.apothecary-site .topic-label,
.apothecary-site .path-card span {
  color: var(--ap-cinnabar-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site h1,
.apothecary-site h2 {
  color: var(--ap-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 780;
  letter-spacing: 0;
}

.apothecary-site h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 6vw, 5.15rem);
  line-height: 0.98;
}

.apothecary-site h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.apothecary-site h3 {
  color: var(--ap-ink-soft);
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site .intro {
  max-width: 60ch;
  color: var(--ap-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.72;
}

.apothecary-site .hero-actions {
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 48px;
  border-radius: 8px;
  padding: 0.78rem 1rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  touch-action: manipulation;
}

.apothecary-site .primary-link {
  border-color: var(--ap-cinnabar-dark);
  background: var(--ap-cinnabar);
  color: #fffdf8;
  box-shadow: 0 12px 26px rgba(155, 47, 38, 0.2);
}

.apothecary-site .primary-link:hover,
.apothecary-site .primary-link:focus-visible {
  background: var(--ap-cinnabar-dark);
  box-shadow: 0 14px 30px rgba(116, 35, 29, 0.25);
}

.apothecary-site .secondary-link {
  border-color: var(--ap-line-strong);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ap-jade-dark);
}

.apothecary-site .secondary-link:hover,
.apothecary-site .secondary-link:focus-visible {
  border-color: var(--ap-jade);
  background: #fffdf8;
  color: var(--ap-jade);
}

.apothecary-site .primary-link:active,
.apothecary-site .secondary-link:active,
.apothecary-site .path-card:active,
.apothecary-site .topic-card:active {
  transform: translateY(1px);
}

.apothecary-site .hero-media {
  position: relative;
  border: 1px solid var(--ap-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(244, 239, 228, 0.94));
  box-shadow: var(--ap-shadow-md);
}

.apothecary-site .hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(166, 122, 36, 0.35);
  border-radius: 6px;
}

.apothecary-site .hero-media img {
  width: 100%;
  min-height: 0;
  display: block;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #f8f2e6;
}

.apothecary-site .hero-media figcaption {
  border-top: 1px solid rgba(189, 168, 140, 0.55);
  background: rgba(255, 253, 248, 0.88);
  color: var(--ap-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.apothecary-site .intent-panel {
  padding-top: clamp(1.2rem, 3vw, 2rem);
}

.apothecary-site .section-heading {
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

.apothecary-site .section-heading p,
.apothecary-site .section-intro {
  color: var(--ap-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.apothecary-site .content-narrow {
  max-width: 1240px;
}

.apothecary-site .path-grid,
.apothecary-site .topic-grid,
.apothecary-site .standards-grid {
  gap: 1rem;
  margin-top: 1.35rem;
}

.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card,
.apothecary-site .method-list div,
.apothecary-site .content-section details {
  border: 1px solid var(--ap-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .path-card,
.apothecary-site .topic-card {
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  touch-action: manipulation;
}

.apothecary-site .path-card {
  position: relative;
  padding: 1.1rem;
  color: inherit;
}

.apothecary-site .path-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 0.58rem;
  height: 0.58rem;
  border-top: 2px solid var(--ap-gold);
  border-right: 2px solid var(--ap-gold);
  transform: rotate(45deg);
}

.apothecary-site .path-card h3 {
  max-width: 30ch;
  margin-top: 0.65rem;
  padding-right: 1.2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.35;
}

.apothecary-site .path-card:hover,
.apothecary-site .path-card:focus-visible,
.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  border-color: var(--ap-gold);
  background: #fffdf8;
  box-shadow: var(--ap-shadow-md);
  transform: translateY(-2px);
}

.apothecary-site .topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apothecary-site .topic-card {
  position: relative;
  display: flex;
  min-height: 212px;
  flex-direction: column;
  padding: 1.12rem;
  color: inherit;
}

.apothecary-site .topic-card::before,
.apothecary-site .standards-grid article::before,
.apothecary-site .legal-card::before {
  content: "";
  width: 2.3rem;
  height: 3px;
  display: block;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--ap-jade);
}

.apothecary-site .topic-card:nth-child(2n)::before,
.apothecary-site .standards-grid article:nth-child(2n)::before {
  background: var(--ap-cinnabar);
}

.apothecary-site .topic-card:nth-child(3n)::before,
.apothecary-site .standards-grid article:nth-child(3n)::before {
  background: var(--ap-gold);
}

.apothecary-site .topic-card[href] {
  border-color: rgba(155, 47, 38, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 241, 228, 0.98));
}

.apothecary-site .topic-card[href]::after {
  content: "Read article";
  margin-top: auto;
  color: var(--ap-cinnabar-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.apothecary-site .topic-card h3,
.apothecary-site .standards-grid h3 {
  margin-top: 0.5rem;
  font-size: 1.12rem;
  line-height: 1.35;
}

.apothecary-site .topic-card p,
.apothecary-site .standards-grid p,
.apothecary-site .method-list span,
.apothecary-site .legal-card p,
.apothecary-site .content-section details p {
  color: var(--ap-muted);
  line-height: 1.68;
}

.apothecary-site .feature-band {
  max-width: none;
  margin-top: clamp(1rem, 2vw, 2rem);
  border-block: 1px solid rgba(166, 122, 36, 0.42);
  background:
    linear-gradient(135deg, #171412 0%, #183a36 54%, #291918 100%);
  color: #fffdf8;
}

.apothecary-site .feature-band .content-narrow {
  max-width: 1240px;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.apothecary-site .feature-band h2,
.apothecary-site .feature-band h3,
.apothecary-site .feature-band strong {
  color: #fffdf8;
}

.apothecary-site .feature-band .eyebrow {
  color: #f0c76c;
}

.apothecary-site .feature-band p,
.apothecary-site .feature-band span {
  color: rgba(255, 253, 248, 0.78);
}

.apothecary-site .split-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 3vw, 2rem);
}

.apothecary-site .method-list {
  gap: 0.8rem;
}

.apothecary-site .method-list div {
  border-color: rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: none;
}

.apothecary-site .standards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apothecary-site .standards-grid article {
  padding: 1rem;
}

.apothecary-site .content-section details {
  padding: 0;
  overflow: hidden;
}

.apothecary-site .content-section summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  color: var(--ap-ink);
  cursor: pointer;
  font-weight: 900;
}

.apothecary-site .content-section details p {
  margin: 0;
  border-top: 1px solid rgba(217, 202, 183, 0.76);
  padding: 0.9rem 1rem 1rem;
}

.apothecary-site .legal-page {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.apothecary-site .legal-layout {
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.25rem);
}

.apothecary-site .legal-card {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.45rem);
}

.apothecary-site .legal-card h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.apothecary-site .disclaimer {
  border-left: 4px solid var(--ap-gold);
  background: rgba(166, 122, 36, 0.12);
}

.apothecary-site .site-footer {
  max-width: 1240px;
  border-top: 1px solid var(--ap-line-strong);
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.apothecary-site .site-footer strong {
  color: var(--ap-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.apothecary-site .site-footer p {
  color: var(--ap-muted);
}

.apothecary-site .site-footer nav {
  gap: 0.3rem;
}

.apothecary-site .site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  color: var(--ap-jade-dark);
}

.apothecary-site .site-footer a:hover,
.apothecary-site .site-footer a:focus-visible {
  background: rgba(15, 95, 86, 0.08);
  color: var(--ap-cinnabar-dark);
}

.apothecary-site .article-page {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.apothecary-site .article-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  border-bottom: 1px solid var(--ap-line);
  padding-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.apothecary-site .article-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.apothecary-site .article-kicker {
  color: var(--ap-jade);
}

.apothecary-site .article-layout {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 4vw, 2.6rem);
}

.apothecary-site .article-toc {
  top: 5.8rem;
  border-color: var(--ap-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .article-toc h2 {
  color: var(--ap-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
}

.apothecary-site .article-toc a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 0.42rem 0.5rem;
  color: var(--ap-muted);
  line-height: 1.35;
  transition: background-color 180ms ease, color 180ms ease;
}

.apothecary-site .article-toc a:hover,
.apothecary-site .article-toc a:focus-visible {
  background: rgba(155, 47, 38, 0.08);
  color: var(--ap-cinnabar-dark);
}

.apothecary-site .article-toc .toc-h3 {
  padding-left: 1rem;
}

.apothecary-site .article-content {
  max-width: 820px;
  border-color: var(--ap-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  padding: clamp(1.15rem, 3vw, 2.6rem);
  box-shadow: var(--ap-shadow-md);
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  max-width: 70ch;
  color: #29231f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.82;
}

.apothecary-site .article-content p {
  margin: 0 0 1.05rem;
}

.apothecary-site .article-content h2,
.apothecary-site .article-content h3 {
  max-width: 26ch;
  color: var(--ap-ink);
  letter-spacing: 0;
}

.apothecary-site .article-content h2 {
  margin: 2.35rem 0 0.9rem;
  border-top: 1px solid rgba(217, 202, 183, 0.86);
  padding-top: 1.35rem;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.14;
}

.apothecary-site .article-content h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.apothecary-site .article-content h3 {
  margin: 1.8rem 0 0.65rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.35;
}

.apothecary-site .article-list {
  max-width: 70ch;
  margin: 0 0 1.2rem;
  padding-left: 1.35rem;
}

.apothecary-site .article-list li + li {
  margin-top: 0.42rem;
}

.apothecary-site .article-subtitle {
  border-left: 4px solid var(--ap-gold);
  background: rgba(166, 122, 36, 0.1);
}

.apothecary-site .article-figure {
  max-width: 820px;
  margin: 1.65rem 0;
  overflow: hidden;
  border: 1px solid var(--ap-line-strong);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .article-figure img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.apothecary-site .article-figure figcaption {
  border-top: 1px solid rgba(217, 202, 183, 0.76);
  background: rgba(251, 248, 240, 0.82);
  color: var(--ap-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.apothecary-site :focus-visible {
  outline: 3px solid rgba(15, 95, 86, 0.38);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .apothecary-site .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .apothecary-site .hero-section,
  .apothecary-site .section-heading,
  .apothecary-site .split-layout,
  .apothecary-site .legal-layout,
  .apothecary-site .article-hero,
  .apothecary-site .article-layout {
    grid-template-columns: 1fr;
  }

  .apothecary-site .hero-copy::before {
    left: 0;
    right: auto;
  }

  .apothecary-site .hero-copy {
    padding-left: 1rem;
  }

  .apothecary-site .article-toc {
    position: static;
  }

  .apothecary-site .path-grid,
  .apothecary-site .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site .hero-media img {
    aspect-ratio: 16 / 11;
  }

  .apothecary-site .article-content {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .apothecary-site .nav {
    align-items: stretch;
    gap: 0.7rem;
  }

  .apothecary-site .brand {
    align-items: flex-start;
  }

  .apothecary-site .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.2rem;
  }

  .apothecary-site .nav-links a {
    padding-inline: 0.6rem;
  }

  .apothecary-site .hero-section,
  .apothecary-site .intent-panel,
  .apothecary-site .content-section,
  .apothecary-site .feature-band,
  .apothecary-site .legal-page,
  .apothecary-site .article-page {
    padding-inline: 1rem;
  }

  .apothecary-site h1 {
    max-width: 13ch;
    font-size: clamp(2.3rem, 13vw, 3.35rem);
  }

  .apothecary-site .hero-actions,
  .apothecary-site .primary-link,
  .apothecary-site .secondary-link {
    width: 100%;
  }

  .apothecary-site .path-grid,
  .apothecary-site .topic-grid,
  .apothecary-site .standards-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .topic-card {
    min-height: auto;
  }

  .apothecary-site .site-footer {
    flex-direction: column;
  }

  .apothecary-site .site-footer nav {
    justify-content: flex-start;
  }

  .apothecary-site .article-content {
    padding-inline: 1rem;
  }

  .apothecary-site .article-content p,
  .apothecary-site .article-content li {
    max-width: none;
    font-size: 1.02rem;
  }
}

@media (max-width: 420px) {
  .apothecary-site .brand {
    gap: 0.55rem;
  }

  .apothecary-site .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .apothecary-site .nav-links a {
    flex: 1 1 calc(50% - 0.2rem);
    justify-content: center;
  }

  .apothecary-site .hero-media::before {
    inset: 8px;
  }

  .apothecary-site .article-content h2,
  .apothecary-site .article-content h3 {
    max-width: none;
  }
}

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

/* Apothecary editorial polish override: scoped to the fan blog only. */
body.apothecary-site {
  --ap-ink: #17120f;
  --ap-ink-soft: #332720;
  --ap-muted: #6c6258;
  --ap-paper: #f8f2e6;
  --ap-paper-deep: #efe3d0;
  --ap-surface: #fffaf1;
  --ap-surface-strong: #fffdf8;
  --ap-line: #d8c4a8;
  --ap-line-strong: #b99a70;
  --ap-cinnabar: #9a332b;
  --ap-cinnabar-dark: #6f211d;
  --ap-jade: #0d635a;
  --ap-jade-dark: #083f3b;
  --ap-indigo: #253850;
  --ap-gold: #a66f1f;
  --ap-shadow-sm: 0 10px 24px rgba(35, 24, 16, 0.08);
  --ap-shadow-md: 0 20px 54px rgba(35, 24, 16, 0.13);
  background:
    linear-gradient(180deg, rgba(23, 18, 15, 0.04), transparent 18rem),
    repeating-linear-gradient(0deg, rgba(111, 33, 29, 0.035) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(13, 99, 90, 0.035) 0 1px, transparent 1px 38px),
    linear-gradient(180deg, #fbf6ec 0%, #f3eadc 48%, #fbf6ec 100%);
  color: var(--ap-ink);
}

.apothecary-site .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 196, 168, 0.24);
  background: rgba(23, 18, 15, 0.94);
  backdrop-filter: blur(14px);
}

.apothecary-site .nav {
  min-height: 76px;
}

.apothecary-site .brand {
  max-width: min(440px, 100%);
  gap: 0.8rem;
}

.apothecary-site .brand-mark {
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.18), transparent 34%),
    linear-gradient(135deg, #8f2e29 0%, #281717 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 241, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.apothecary-site .nav-links a {
  min-height: 44px;
  border: 1px solid transparent;
  font-size: 0.92rem;
}

.apothecary-site .nav-links a:hover,
.apothecary-site .nav-links a:focus-visible {
  border-color: rgba(255, 250, 241, 0.16);
  background: rgba(255, 250, 241, 0.1);
}

.apothecary-site .hero-section {
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.apothecary-site .hero-copy {
  padding: 1.5rem 0 1.5rem 1.25rem;
}

.apothecary-site .hero-copy::before {
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ap-cinnabar) 0%, var(--ap-gold) 52%, var(--ap-jade) 100%);
}

.apothecary-site .eyebrow,
.apothecary-site .article-kicker,
.apothecary-site .topic-label,
.apothecary-site .path-card span {
  color: var(--ap-cinnabar-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
}

.apothecary-site h1,
.apothecary-site h2 {
  color: var(--ap-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
}

.apothecary-site h1 {
  max-width: 13ch;
  font-size: 4.7rem;
  line-height: 0.98;
}

.apothecary-site h2 {
  font-size: 2.55rem;
  line-height: 1.08;
}

.apothecary-site h3 {
  letter-spacing: 0;
}

.apothecary-site .intro {
  max-width: 62ch;
  color: #50463d;
  font-size: 1.08rem;
  line-height: 1.76;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 48px;
  border-radius: 7px;
  font-weight: 850;
}

.apothecary-site .primary-link {
  background: linear-gradient(180deg, #a83a31 0%, #7c251f 100%);
  box-shadow: 0 14px 28px rgba(122, 39, 31, 0.22);
}

.apothecary-site .secondary-link {
  background: rgba(255, 250, 241, 0.76);
  box-shadow: inset 0 0 0 1px rgba(185, 154, 112, 0.2);
}

.apothecary-site .hero-media {
  overflow: hidden;
  border-color: rgba(185, 154, 112, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(239, 227, 208, 0.9));
  box-shadow: var(--ap-shadow-md);
}

.apothecary-site .hero-media::before {
  inset: 14px;
  z-index: 1;
  border-color: rgba(166, 111, 31, 0.38);
}

.apothecary-site .hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(239, 227, 208, 0.8), rgba(255, 250, 241, 0.95));
}

.apothecary-site .hero-media figcaption,
.apothecary-site .article-figure figcaption {
  padding: 0.8rem 1rem;
  color: #5d544b;
}

.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .feature-band {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.apothecary-site .intent-panel {
  border-top: 1px solid rgba(216, 196, 168, 0.7);
}

.apothecary-site .section-heading {
  align-items: start;
}

.apothecary-site .section-heading p,
.apothecary-site .section-intro {
  color: #5f564d;
}

.apothecary-site .path-grid,
.apothecary-site .topic-grid,
.apothecary-site .standards-grid {
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card,
.apothecary-site .content-section details {
  border-color: rgba(185, 154, 112, 0.54);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 250, 241, 0.93));
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .path-card {
  padding: 1.25rem;
}

.apothecary-site .path-card h3 {
  color: var(--ap-ink);
}

.apothecary-site .path-card::after {
  border-color: var(--ap-cinnabar-dark);
}

.apothecary-site .topic-card {
  min-height: 232px;
  padding: 1.25rem;
}

.apothecary-site .topic-card[href] {
  border-color: rgba(154, 51, 43, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 238, 222, 0.98));
}

.apothecary-site .topic-card[href]::after {
  min-height: 44px;
  display: inline-flex;
  align-items: end;
}

.apothecary-site .path-card:hover,
.apothecary-site .path-card:focus-visible,
.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  border-color: rgba(154, 51, 43, 0.64);
  box-shadow: 0 18px 40px rgba(35, 24, 16, 0.14);
}

.apothecary-site .feature-band {
  border-block-color: rgba(216, 196, 168, 0.28);
  background:
    linear-gradient(135deg, #17120f 0%, #102f2d 52%, #351a18 100%);
}

.apothecary-site .method-list div {
  border-color: rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.075);
}

.apothecary-site .content-section summary {
  min-height: 56px;
  padding: 1rem 1.1rem;
}

.apothecary-site .site-footer {
  margin-top: 1rem;
  padding-top: 1.6rem;
  padding-bottom: 1.8rem;
}

.apothecary-site .article-page {
  padding-top: 2.5rem;
}

.apothecary-site .article-hero {
  align-items: end;
  border-bottom-color: rgba(185, 154, 112, 0.55);
}

.apothecary-site .article-hero h1 {
  max-width: 16ch;
  font-size: 4.1rem;
  line-height: 1.02;
}

.apothecary-site .article-layout {
  grid-template-columns: minmax(240px, 0.3fr) minmax(0, 0.7fr);
  gap: 2rem;
}

.apothecary-site .article-toc {
  top: 6.25rem;
  border-color: rgba(185, 154, 112, 0.56);
  background: rgba(255, 250, 241, 0.94);
}

.apothecary-site .article-toc h2 {
  letter-spacing: 0;
}

.apothecary-site .article-toc a {
  min-height: 40px;
}

.apothecary-site .article-content {
  max-width: 840px;
  border-color: rgba(185, 154, 112, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(255, 250, 241, 0.98));
  box-shadow: var(--ap-shadow-md);
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  max-width: 68ch;
  color: #2a211c;
  font-size: 1.08rem;
  line-height: 1.86;
}

.apothecary-site .article-content h2 {
  max-width: 22ch;
  margin: 2.55rem 0 1rem;
  border-top-color: rgba(216, 196, 168, 0.85);
  font-size: 2.1rem;
  line-height: 1.14;
}

.apothecary-site .article-content h3 {
  max-width: 38ch;
  color: var(--ap-jade-dark);
  font-size: 1.18rem;
  line-height: 1.35;
}

.apothecary-site .article-subtitle {
  border-left-color: var(--ap-cinnabar);
  background: rgba(154, 51, 43, 0.08);
}

.apothecary-site .article-figure {
  max-width: 840px;
  border-color: rgba(185, 154, 112, 0.74);
  background: #fffdf8;
}

.apothecary-site .article-figure img {
  object-fit: contain;
}

.apothecary-site :focus-visible {
  outline: 3px solid rgba(13, 99, 90, 0.45);
  outline-offset: 3px;
}

@media (min-width: 1240px) {
  .apothecary-site .article-content {
    padding: 2.8rem 3rem;
  }
}

@media (max-width: 1080px) {
  .apothecary-site h1 {
    font-size: 3.8rem;
  }

  .apothecary-site .article-hero h1 {
    font-size: 3.45rem;
  }
}

@media (max-width: 920px) {
  .apothecary-site .site-header {
    position: static;
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-layout {
    gap: 1.5rem;
  }

  .apothecary-site .hero-copy {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .apothecary-site .article-toc {
    top: auto;
  }
}

@media (max-width: 680px) {
  body.apothecary-site {
    background:
      linear-gradient(180deg, rgba(23, 18, 15, 0.035), transparent 14rem),
      linear-gradient(180deg, #fbf6ec 0%, #f3eadc 100%);
  }

  .apothecary-site .nav {
    min-height: 0;
  }

  .apothecary-site .brand {
    font-size: 1rem;
  }

  .apothecary-site .nav-links a {
    min-height: 44px;
  }

  .apothecary-site .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .apothecary-site h1 {
    max-width: 14ch;
    font-size: 2.85rem;
    line-height: 1.02;
  }

  .apothecary-site h2 {
    font-size: 2rem;
  }

  .apothecary-site .intro {
    font-size: 1rem;
  }

  .apothecary-site .intent-panel,
  .apothecary-site .content-section,
  .apothecary-site .feature-band {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
  }

  .apothecary-site .topic-card {
    min-height: 0;
  }

  .apothecary-site .article-page {
    padding-top: 1.5rem;
  }

  .apothecary-site .article-hero h1 {
    max-width: 15ch;
    font-size: 2.65rem;
  }

  .apothecary-site .article-content {
    padding: 1.1rem;
  }

  .apothecary-site .article-content p,
  .apothecary-site .article-content li {
    font-size: 1.03rem;
    line-height: 1.78;
  }

  .apothecary-site .article-content h2 {
    max-width: none;
    font-size: 1.72rem;
  }

  .apothecary-site .article-content h3 {
    max-width: none;
    font-size: 1.12rem;
  }
}

@media (max-width: 420px) {
  .apothecary-site .hero-copy {
    padding-left: 1rem;
  }

  .apothecary-site h1 {
    font-size: 2.45rem;
  }

  .apothecary-site .article-hero h1 {
    font-size: 2.3rem;
  }

  .apothecary-site .path-card,
  .apothecary-site .topic-card,
  .apothecary-site .standards-grid article,
  .apothecary-site .legal-card {
    padding: 1rem;
  }
}

/* Apothecary final visual pass: scoped polish for the fan blog only. */
body.apothecary-site {
  --ap-ink: #18110f;
  --ap-ink-soft: #35251f;
  --ap-muted: #5f564c;
  --ap-paper: #f7efe0;
  --ap-surface: #fffaf1;
  --ap-line: #d5bd98;
  --ap-line-strong: #af895c;
  --ap-cinnabar: #983228;
  --ap-cinnabar-dark: #6b211c;
  --ap-jade: #0c6258;
  --ap-jade-dark: #083f3a;
  --ap-gold: #9f691d;
  --ap-shadow-sm: 0 12px 28px rgba(37, 24, 14, 0.08);
  --ap-shadow-md: 0 24px 58px rgba(37, 24, 14, 0.13);
  background:
    linear-gradient(180deg, rgba(24, 17, 15, 0.055), transparent 16rem),
    linear-gradient(90deg, rgba(152, 50, 40, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 98, 88, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #fcf7ed 0%, #f2e6d4 55%, #fbf5ea 100%);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.apothecary-site .nav {
  max-width: 1180px;
}

.apothecary-site .brand-mark {
  flex: 0 0 auto;
}

.apothecary-site .nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.apothecary-site .hero-section,
.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .feature-band,
.apothecary-site .legal-page,
.apothecary-site .article-page,
.apothecary-site .site-footer {
  max-width: 1180px;
}

.apothecary-site .hero-section {
  padding-top: clamp(2.4rem, 6vw, 5.2rem);
  padding-bottom: clamp(2.2rem, 5vw, 4.4rem);
}

.apothecary-site .hero-copy {
  max-width: 620px;
}

.apothecary-site h1 {
  text-wrap: balance;
}

.apothecary-site h2,
.apothecary-site h3,
.apothecary-site .intro,
.apothecary-site .section-intro {
  text-wrap: pretty;
}

.apothecary-site .hero-media,
.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card,
.apothecary-site .article-toc,
.apothecary-site .article-content,
.apothecary-site .article-figure {
  border-radius: 8px;
}

.apothecary-site .hero-media {
  isolation: isolate;
}

.apothecary-site .hero-media img {
  max-height: 560px;
  object-fit: contain;
}

.apothecary-site .path-card,
.apothecary-site .topic-card {
  display: flex;
  flex-direction: column;
}

.apothecary-site .path-card h3,
.apothecary-site .topic-card h3 {
  line-height: 1.32;
}

.apothecary-site .topic-card p {
  color: var(--ap-muted);
  line-height: 1.65;
}

.apothecary-site .topic-card[href]::after {
  margin-top: auto;
  color: var(--ap-cinnabar-dark);
  font-weight: 900;
}

.apothecary-site .feature-band {
  max-width: none;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.apothecary-site .feature-band .content-narrow {
  max-width: 1180px;
  margin-inline: auto;
}

.apothecary-site .article-hero {
  max-width: 1180px;
  margin-inline: auto;
}

.apothecary-site .article-hero h1 {
  max-width: 18ch;
}

.apothecary-site .article-layout {
  grid-template-columns: minmax(230px, 280px) minmax(0, 820px);
  justify-content: center;
}

.apothecary-site .article-toc {
  max-height: calc(100vh - 7rem);
  overflow: auto;
}

.apothecary-site .article-content {
  width: 100%;
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.apothecary-site .article-figure img {
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: #f6edde;
}

.apothecary-site .site-footer {
  gap: 1rem;
}

@media (max-width: 920px) {
  .apothecary-site .nav {
    align-items: flex-start;
  }

  .apothecary-site .nav-links {
    justify-content: flex-start;
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    grid-template-columns: 1fr;
  }

  .apothecary-site .article-layout {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .apothecary-site .article-toc {
    max-height: none;
  }
}

@media (max-width: 680px) {
  body.apothecary-site {
    background:
      linear-gradient(180deg, rgba(24, 17, 15, 0.045), transparent 12rem),
      linear-gradient(180deg, #fcf7ed 0%, #f2e6d4 100%);
  }

  .apothecary-site .nav {
    padding-inline: 1rem;
  }

  .apothecary-site .nav-links {
    width: 100%;
    gap: 0.2rem;
  }

  .apothecary-site .nav-links a {
    padding-inline: 0.58rem;
  }

  .apothecary-site .hero-copy {
    padding-left: 0.95rem;
  }

  .apothecary-site .hero-media img {
    max-height: 430px;
  }

  .apothecary-site .article-content {
    border-radius: 8px;
  }

  .apothecary-site .article-figure img {
    max-height: 520px;
  }
}

@media (max-width: 420px) {
  .apothecary-site .brand {
    align-items: flex-start;
  }

  .apothecary-site .brand span:last-child {
    line-height: 1.25;
  }

  .apothecary-site .nav-links a {
    font-size: 0.88rem;
  }

  .apothecary-site h1 {
    font-size: 2.36rem;
  }

  .apothecary-site .article-hero h1 {
    font-size: 2.18rem;
  }
}

/* Apothecary stability pass: keep controls aligned and long-form pages readable. */
.apothecary-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article {
  min-height: 100%;
}

.apothecary-site .path-card span,
.apothecary-site .topic-label {
  min-height: 1.3em;
}

.apothecary-site .topic-card[href] {
  position: relative;
}

.apothecary-site .article-content > * + * {
  margin-top: 1.05rem;
}

.apothecary-site .article-content > h2,
.apothecary-site .article-content > h3 {
  margin-top: clamp(2.1rem, 4vw, 3rem);
}

.apothecary-site .article-content > .article-figure {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.apothecary-site .article-figure figcaption {
  max-width: 62ch;
  margin-inline: auto;
  line-height: 1.55;
}

.apothecary-site .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 0.85rem;
}

.apothecary-site .site-footer nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 680px) {
  .apothecary-site .hero-actions {
    width: 100%;
  }

  .apothecary-site .primary-link,
  .apothecary-site .secondary-link {
    flex: 1 1 210px;
  }

  .apothecary-site .site-footer nav {
    justify-content: flex-start;
  }
}

/* Apothecary editorial redesign: palace casefile identity. */
body.apothecary-site {
  --ap-ink: #130f0c;
  --ap-lacquer: #17100d;
  --ap-lacquer-2: #223a33;
  --ap-jade: #2f776d;
  --ap-jade-dark: #173f39;
  --ap-seal: #b33429;
  --ap-seal-dark: #6f211c;
  --ap-gold: #c59b57;
  --ap-paper: #f4ead7;
  --ap-paper-2: #fff8ea;
  --ap-line: #cdb58e;
  --ap-muted: #695f52;
  --ap-display: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --ap-body: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --ap-serif: Georgia, "Times New Roman", serif;
  --ap-shadow-sm: 0 14px 30px rgba(18, 13, 9, 0.11);
  --ap-shadow-md: 0 28px 70px rgba(18, 13, 9, 0.2);
  margin: 0;
  color: var(--ap-ink);
  background:
    linear-gradient(90deg, rgba(197, 155, 87, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #17100d 0, #203b35 26rem, #eee0ca 26rem, #f7eddb 100%);
  background-size: 42px 42px, auto;
  font-family: var(--ap-body);
}

.apothecary-site .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(197, 155, 87, 0.22);
  background: rgba(19, 15, 12, 0.94);
  backdrop-filter: blur(14px);
}

.apothecary-site .nav {
  max-width: 1180px;
  min-height: 70px;
  margin-inline: auto;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
}

.apothecary-site .brand {
  gap: 0.72rem;
  color: #fff8ea;
  font-family: var(--ap-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
}

.apothecary-site .brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 234, 215, 0.5);
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--ap-seal) 0%, var(--ap-seal-dark) 100%);
  color: #fff8ea;
  box-shadow: inset 0 0 0 3px rgba(255, 248, 234, 0.12);
  font-family: var(--ap-display);
}

.apothecary-site .nav-links {
  gap: 0.25rem;
  color: rgba(255, 248, 234, 0.72);
}

.apothecary-site .nav-links a {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.42rem 0.7rem;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 760;
}

.apothecary-site .nav-links a:hover,
.apothecary-site .nav-links a:focus-visible {
  border-color: rgba(197, 155, 87, 0.34);
  background: rgba(244, 234, 215, 0.08);
  color: #fff8ea;
}

.apothecary-site .hero-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  padding:
    clamp(3.6rem, 7vw, 6.4rem)
    max(clamp(1rem, 3vw, 2rem), calc((100vw - 1180px) / 2 + 1rem))
    clamp(3rem, 6vw, 5.4rem);
  overflow: hidden;
  color: #fff8ea;
  background:
    linear-gradient(90deg, rgba(197, 155, 87, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 234, 0.06) 0, transparent 42%),
    linear-gradient(135deg, #17100d 0%, #173f39 56%, #2b1613 100%);
  background-size: 54px 54px, auto, auto;
}

.apothecary-site .hero-section::before {
  content: "";
  position: absolute;
  inset: 1.2rem auto 1.2rem max(0.9rem, calc((100vw - 1180px) / 2));
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ap-seal), var(--ap-gold), var(--ap-jade));
  box-shadow: 0 0 42px rgba(197, 155, 87, 0.26);
}

.apothecary-site .hero-copy {
  max-width: 650px;
  padding: 0;
}

.apothecary-site .hero-copy::before {
  display: none;
}

.apothecary-site .eyebrow,
.apothecary-site .article-kicker,
.apothecary-site .topic-label,
.apothecary-site .path-card span {
  color: var(--ap-seal);
  font-family: var(--ap-body);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apothecary-site .hero-section .eyebrow,
.apothecary-site .feature-band .eyebrow,
.apothecary-site .article-hero .eyebrow,
.apothecary-site .article-hero .article-kicker {
  color: #e2bd73;
}

.apothecary-site h1,
.apothecary-site h2,
.apothecary-site h3 {
  font-family: var(--ap-display);
  letter-spacing: 0;
}

.apothecary-site h1 {
  max-width: 10.8ch;
  margin: 0.5rem 0 1rem;
  color: inherit;
  font-size: clamp(3.2rem, 8vw, 6.85rem);
  line-height: 0.92;
  text-wrap: balance;
}

.apothecary-site .intro {
  max-width: 60ch;
  color: rgba(255, 248, 234, 0.79);
  font-family: var(--serif, var(--ap-serif));
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.apothecary-site .hero-actions {
  margin-top: 1.55rem;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 50px;
  border-radius: 6px;
  padding: 0.78rem 1rem;
  font-weight: 900;
  text-decoration: none;
}

.apothecary-site .primary-link {
  border: 1px solid rgba(255, 248, 234, 0.24);
  background: var(--ap-seal);
  color: #fff8ea;
  box-shadow: 0 16px 36px rgba(111, 33, 28, 0.38);
}

.apothecary-site .secondary-link {
  border: 1px solid rgba(197, 155, 87, 0.46);
  background: rgba(255, 248, 234, 0.06);
  color: #fff8ea;
}

.apothecary-site .primary-link:hover,
.apothecary-site .primary-link:focus-visible,
.apothecary-site .secondary-link:hover,
.apothecary-site .secondary-link:focus-visible {
  transform: translateY(-1px);
}

.apothecary-site .hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 87, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.94), rgba(244, 234, 215, 0.86));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.apothecary-site .hero-media::before {
  inset: 13px;
  border: 1px solid rgba(111, 33, 28, 0.28);
  border-radius: 5px;
}

.apothecary-site .hero-media img {
  width: 100%;
  max-height: 590px;
  display: block;
  object-fit: contain;
  background:
    linear-gradient(90deg, rgba(23, 63, 57, 0.08) 1px, transparent 1px),
    #f4ead7;
  background-size: 34px 34px, auto;
}

.apothecary-site .hero-media figcaption {
  border-top: 1px solid rgba(205, 181, 142, 0.64);
  background: rgba(255, 248, 234, 0.9);
  color: #4f463c;
  font-size: 0.84rem;
}

.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .article-page,
.apothecary-site .legal-page {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.apothecary-site .intent-panel {
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: clamp(1.6rem, 4vw, 3rem);
}

.apothecary-site .content-section {
  padding-top: clamp(2.8rem, 6vw, 5rem);
  padding-bottom: clamp(2.8rem, 6vw, 5rem);
}

.apothecary-site .section-heading {
  align-items: end;
  border-bottom: 1px solid rgba(111, 33, 28, 0.2);
  padding-bottom: 1.1rem;
}

.apothecary-site .section-heading h2,
.apothecary-site .content-section h2 {
  max-width: 15ch;
  color: var(--ap-ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.98;
}

.apothecary-site .section-heading p,
.apothecary-site .section-intro {
  color: var(--ap-muted);
  font-family: var(--ap-serif);
  font-size: 1.04rem;
  line-height: 1.72;
}

.apothecary-site .path-grid,
.apothecary-site .topic-grid,
.apothecary-site .standards-grid {
  gap: 1rem;
}

.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card,
.apothecary-site .content-section details {
  border: 1px solid rgba(111, 33, 28, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(244, 234, 215, 0.94));
  box-shadow: 0 12px 30px rgba(18, 13, 9, 0.08);
}

.apothecary-site .path-card {
  min-height: 174px;
  padding: 1.3rem;
}

.apothecary-site .path-card h3 {
  margin-top: 0.9rem;
  color: var(--ap-ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.apothecary-site .topic-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.apothecary-site .topic-card {
  grid-column: span 2;
  min-height: 238px;
  padding: 1.35rem;
  color: var(--ap-ink);
}

.apothecary-site .topic-card[href] {
  grid-column: span 4;
  border-color: rgba(47, 119, 109, 0.44);
  background:
    linear-gradient(135deg, rgba(23, 63, 57, 0.98), rgba(19, 15, 12, 0.96));
  color: #fff8ea;
}

.apothecary-site .topic-card::before,
.apothecary-site .standards-grid article::before,
.apothecary-site .legal-card::before {
  width: 2.55rem;
  height: 4px;
  margin-bottom: 1rem;
  background: var(--ap-seal);
}

.apothecary-site .topic-card:nth-child(3n)::before,
.apothecary-site .standards-grid article:nth-child(3n)::before {
  background: var(--ap-jade);
}

.apothecary-site .topic-card h3,
.apothecary-site .standards-grid h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.16;
}

.apothecary-site .topic-card p,
.apothecary-site .standards-grid p,
.apothecary-site .content-section details p {
  color: var(--ap-muted);
  line-height: 1.68;
}

.apothecary-site .topic-card[href] .topic-label,
.apothecary-site .topic-card[href] p,
.apothecary-site .topic-card[href]::after {
  color: rgba(255, 248, 234, 0.78);
}

.apothecary-site .topic-card[href] h3 {
  max-width: 16ch;
  color: #fff8ea;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.apothecary-site .topic-card[href]::after {
  content: "Open the first case file";
  min-height: 40px;
  align-items: end;
  font-weight: 900;
}

.apothecary-site .path-card:hover,
.apothecary-site .path-card:focus-visible,
.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  border-color: rgba(179, 52, 41, 0.38);
  box-shadow: 0 22px 54px rgba(18, 13, 9, 0.14);
  transform: translateY(-2px);
}

.apothecary-site .feature-band {
  width: 100%;
  max-width: none;
  margin: 0;
  border-block: 1px solid rgba(197, 155, 87, 0.24);
  padding:
    clamp(3rem, 6vw, 5rem)
    max(clamp(1rem, 3vw, 2rem), calc((100vw - 1180px) / 2 + 1rem));
  color: #fff8ea;
  background:
    linear-gradient(90deg, rgba(197, 155, 87, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #130f0c 0%, #173f39 52%, #271512 100%);
  background-size: 42px 42px, auto;
}

.apothecary-site .feature-band .content-narrow {
  max-width: 1180px;
  padding-inline: 0;
}

.apothecary-site .feature-band h2 {
  color: #fff8ea;
}

.apothecary-site .feature-band p,
.apothecary-site .feature-band span {
  color: rgba(255, 248, 234, 0.78);
}

.apothecary-site .method-list div {
  border-color: rgba(197, 155, 87, 0.22);
  background: rgba(255, 248, 234, 0.07);
}

.apothecary-site .content-section details {
  padding: 1rem 1.15rem;
}

.apothecary-site .content-section summary {
  color: var(--ap-ink);
  font-family: var(--ap-display);
  font-size: 1.08rem;
}

.apothecary-site .article-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.92fr);
  padding:
    clamp(3rem, 6vw, 5rem)
    max(clamp(1rem, 3vw, 2rem), calc((100vw - 1180px) / 2 + 1rem))
    clamp(2.2rem, 5vw, 4rem);
  color: #fff8ea;
  background:
    linear-gradient(90deg, rgba(197, 155, 87, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #17100d 0%, #173f39 56%, #2b1613 100%);
  background-size: 48px 48px, auto;
}

.apothecary-site .article-hero h1 {
  max-width: 12ch;
  color: #fff8ea;
  font-size: clamp(2.8rem, 6.4vw, 5.7rem);
  line-height: 0.94;
}

.apothecary-site .article-hero .intro {
  color: rgba(255, 248, 234, 0.78);
}

.apothecary-site .article-layout {
  max-width: 1180px;
  grid-template-columns: minmax(220px, 278px) minmax(0, 840px);
  gap: clamp(1.1rem, 3vw, 2rem);
  margin-inline: auto;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 6vw, 5rem);
}

.apothecary-site .article-toc {
  border: 1px solid rgba(197, 155, 87, 0.22);
  border-radius: 8px;
  background: #17100d;
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .article-toc h2 {
  color: #fff8ea;
  font-size: 1.05rem;
}

.apothecary-site .article-toc a {
  color: rgba(255, 248, 234, 0.76);
}

.apothecary-site .article-toc a:hover,
.apothecary-site .article-toc a:focus-visible {
  color: #fff8ea;
}

.apothecary-site .article-content {
  max-width: 840px;
  border: 1px solid rgba(111, 33, 28, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(111, 33, 28, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff8ea, #f8eedc);
  background-size: 34px 34px, auto;
  box-shadow: var(--ap-shadow-md);
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  max-width: 68ch;
  color: #241c17;
  font-family: var(--ap-serif);
  font-size: 1.08rem;
  line-height: 1.86;
}

.apothecary-site .article-content h2 {
  max-width: 24ch;
  border-top-color: rgba(111, 33, 28, 0.18);
  color: var(--ap-ink);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.apothecary-site .article-content h3 {
  color: var(--ap-jade-dark);
  font-family: var(--ap-body);
  font-size: 1.15rem;
  font-weight: 900;
}

.apothecary-site .article-figure {
  overflow: hidden;
  border: 1px solid rgba(111, 33, 28, 0.18);
  border-radius: 8px;
  background: #efe0c9;
}

.apothecary-site .article-figure img {
  width: 100%;
  max-height: min(78vh, 780px);
  display: block;
  object-fit: contain;
  background: #efe0c9;
}

.apothecary-site .article-figure figcaption {
  border-top: 1px solid rgba(111, 33, 28, 0.15);
  background: rgba(255, 248, 234, 0.88);
  color: var(--ap-muted);
}

.apothecary-site .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(197, 155, 87, 0.24);
  padding:
    1.5rem
    max(clamp(1rem, 3vw, 2rem), calc((100vw - 1180px) / 2 + 1rem));
  color: rgba(255, 248, 234, 0.78);
  background: #130f0c;
}

.apothecary-site .site-footer strong {
  color: #fff8ea;
  font-family: var(--ap-display);
}

.apothecary-site .site-footer a {
  color: rgba(255, 248, 234, 0.82);
}

.apothecary-site :focus-visible {
  outline: 3px solid rgba(197, 155, 87, 0.9);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site *,
  .apothecary-site *::before,
  .apothecary-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    grid-template-columns: 1fr;
  }

  .apothecary-site .hero-section::before {
    left: 1rem;
  }

  .apothecary-site .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site .topic-card,
  .apothecary-site .topic-card[href] {
    grid-column: auto;
  }

  .apothecary-site .article-layout {
    grid-template-columns: 1fr;
  }

  .apothecary-site .article-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 680px) {
  body.apothecary-site {
    background:
      linear-gradient(180deg, #17100d 0, #203b35 22rem, #f7eddb 22rem, #f7eddb 100%);
  }

  .apothecary-site .site-header {
    position: static;
  }

  .apothecary-site .nav {
    align-items: flex-start;
  }

  .apothecary-site .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    padding-top: 2.4rem;
    padding-bottom: 2.2rem;
  }

  .apothecary-site h1,
  .apothecary-site .article-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 17vw, 4.25rem);
  }

  .apothecary-site .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .apothecary-site .primary-link,
  .apothecary-site .secondary-link {
    width: 100%;
  }

  .apothecary-site .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .apothecary-site .topic-grid,
  .apothecary-site .standards-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .topic-card {
    min-height: 0;
  }

  .apothecary-site .article-content {
    padding: 1.1rem;
  }

  .apothecary-site .article-content p,
  .apothecary-site .article-content li {
    font-size: 1.02rem;
    line-height: 1.78;
  }
}

/* Apothecary frontend-design pass: imperial dossier magazine. */
body.apothecary-site {
  --ap-ink: #120f0c;
  --ap-ink-2: #2d241d;
  --ap-lacquer: #140d0b;
  --ap-lacquer-2: #1f1611;
  --ap-jade: #14564e;
  --ap-jade-dark: #0c3732;
  --ap-seal: #a3342b;
  --ap-seal-dark: #74231d;
  --ap-gold: #c7a15a;
  --ap-gold-soft: #ead3a4;
  --ap-paper: #fff8ea;
  --ap-paper-2: #f5e8d3;
  --ap-paper-3: #ead9ba;
  --ap-muted: #67594a;
  --ap-muted-dark: #b8a990;
  --ap-line: rgba(90, 56, 35, 0.18);
  --ap-line-strong: rgba(159, 120, 64, 0.34);
  --ap-shadow-sm: 0 10px 24px rgba(22, 15, 10, 0.12);
  --ap-shadow-md: 0 22px 60px rgba(22, 15, 10, 0.18);
  --ap-shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.32);
  --ap-display: Georgia, "Times New Roman", serif;
  --ap-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ap-serif: Georgia, "Times New Roman", serif;
  min-width: 0;
  overflow-x: clip;
  color: var(--ap-ink);
  background:
    linear-gradient(90deg, rgba(90, 56, 35, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--ap-lacquer) 0, var(--ap-jade-dark) 31rem, var(--ap-paper-2) 31rem, #fffaf0 100%);
  background-size: 44px 44px, auto;
  font-family: var(--ap-body);
  letter-spacing: 0;
}

.apothecary-site *,
.apothecary-site *::before,
.apothecary-site *::after {
  box-sizing: border-box;
}

.apothecary-site a {
  text-underline-offset: 0.18em;
}

.apothecary-site main {
  width: 100%;
  overflow-x: clip;
}

.apothecary-site .skip-link {
  background: var(--ap-gold);
  color: var(--ap-lacquer);
}

.apothecary-site .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(199, 161, 90, 0.28);
  background: rgba(18, 13, 10, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.apothecary-site .nav {
  max-width: 1180px;
  min-height: 68px;
  margin-inline: auto;
  padding: 0.7rem 1rem;
}

.apothecary-site .brand {
  gap: 0.75rem;
  color: var(--ap-paper);
  font-family: var(--ap-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.apothecary-site .brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 6px;
  color: var(--ap-paper);
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.12), transparent 42%),
    var(--ap-seal-dark);
  box-shadow: inset 0 0 0 2px rgba(199, 161, 90, 0.22), 0 12px 24px rgba(0, 0, 0, 0.25);
  font-family: var(--ap-body);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.apothecary-site .nav-links {
  gap: 0.28rem;
  color: rgba(255, 248, 234, 0.74);
}

.apothecary-site .nav-links a,
.apothecary-site .site-footer a,
.apothecary-site .article-toc a {
  touch-action: manipulation;
}

.apothecary-site .nav-links a {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.55rem 0.72rem;
  color: rgba(255, 248, 234, 0.78);
  font-size: 0.92rem;
}

.apothecary-site .nav-links a:hover,
.apothecary-site .nav-links a:focus-visible {
  border-color: rgba(199, 161, 90, 0.36);
  color: #fffaf0;
  background: rgba(255, 248, 234, 0.08);
}

.apothecary-site .hero-section {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 4.5rem max(1rem, calc((100vw - 1180px) / 2 + 1rem)) 4rem;
  color: var(--ap-paper);
  background:
    linear-gradient(90deg, rgba(199, 161, 90, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 234, 0.05) 0, transparent 8rem),
    linear-gradient(135deg, #110b09 0%, #153d37 58%, #2d1712 100%);
  background-size: 44px 44px, auto, auto;
  isolation: isolate;
}

.apothecary-site .hero-section::before {
  content: "";
  position: absolute;
  inset: 1rem max(1rem, calc((100vw - 1180px) / 2 + 1rem));
  z-index: -1;
  border: 1px solid rgba(199, 161, 90, 0.24);
  border-radius: 8px;
  pointer-events: none;
}

.apothecary-site .hero-section::after {
  content: "CASEFILE 01";
  position: absolute;
  right: max(1.4rem, calc((100vw - 1180px) / 2 + 1.4rem));
  bottom: 1.25rem;
  color: rgba(255, 248, 234, 0.22);
  font-family: var(--ap-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.apothecary-site .hero-copy {
  max-width: 660px;
  padding: 0;
}

.apothecary-site .hero-copy::before {
  display: none;
}

.apothecary-site .eyebrow,
.apothecary-site .article-kicker,
.apothecary-site .topic-label,
.apothecary-site .path-card span {
  color: var(--ap-seal-dark);
  font-family: var(--ap-body);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apothecary-site .hero-section .eyebrow,
.apothecary-site .article-hero .eyebrow,
.apothecary-site .article-hero .article-kicker,
.apothecary-site .feature-band .eyebrow {
  color: var(--ap-gold-soft);
}

.apothecary-site h1,
.apothecary-site h2,
.apothecary-site h3 {
  font-family: var(--ap-display);
  letter-spacing: 0;
}

.apothecary-site h1 {
  max-width: 11ch;
  margin: 0.55rem 0 1.05rem;
  color: var(--ap-paper);
  font-size: 5rem;
  line-height: 0.96;
  font-weight: 800;
}

.apothecary-site h2 {
  color: var(--ap-ink);
  font-size: 2.8rem;
  line-height: 1.06;
}

.apothecary-site h3 {
  color: var(--ap-ink-2);
  font-weight: 800;
}

.apothecary-site .intro {
  max-width: 60ch;
  color: rgba(255, 248, 234, 0.8);
  font-family: var(--ap-serif);
  font-size: 1.18rem;
  line-height: 1.72;
}

.apothecary-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.82rem 1.12rem;
  font-weight: 850;
  line-height: 1.15;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.apothecary-site .primary-link {
  border: 1px solid rgba(255, 248, 234, 0.24);
  color: #fffaf0;
  background: var(--ap-seal);
  box-shadow: 0 14px 30px rgba(116, 35, 29, 0.28);
}

.apothecary-site .secondary-link {
  border: 1px solid rgba(199, 161, 90, 0.5);
  color: var(--ap-paper);
  background: rgba(255, 248, 234, 0.06);
}

.apothecary-site .primary-link:hover,
.apothecary-site .primary-link:focus-visible,
.apothecary-site .secondary-link:hover,
.apothecary-site .secondary-link:focus-visible {
  transform: translateY(-1px);
}

.apothecary-site .primary-link:hover,
.apothecary-site .primary-link:focus-visible {
  background: var(--ap-seal-dark);
}

.apothecary-site .secondary-link:hover,
.apothecary-site .secondary-link:focus-visible {
  border-color: var(--ap-gold-soft);
  background: rgba(255, 248, 234, 0.12);
}

.apothecary-site .hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 90, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(90, 56, 35, 0.08) 1px, transparent 1px),
    var(--ap-paper-2);
  background-size: 34px 34px, auto;
  box-shadow: var(--ap-shadow-dark);
}

.apothecary-site .hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(116, 35, 29, 0.26);
  border-radius: 6px;
  pointer-events: none;
}

.apothecary-site .hero-media img {
  width: 100%;
  height: auto;
  max-height: 590px;
  display: block;
  object-fit: contain;
  background: var(--ap-paper-2);
}

.apothecary-site .hero-media figcaption {
  border-top: 1px solid rgba(90, 56, 35, 0.18);
  padding: 0.82rem 1rem;
  color: var(--ap-muted);
  background: rgba(255, 248, 234, 0.94);
  font-size: 0.84rem;
}

.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .article-page,
.apothecary-site .legal-page {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.apothecary-site .intent-panel {
  padding-top: 3.4rem;
  padding-bottom: 2rem;
}

.apothecary-site .content-section {
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.apothecary-site .content-narrow {
  max-width: 1180px;
  padding-inline: 0;
}

.apothecary-site .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 2rem;
  border-bottom: 1px solid rgba(90, 56, 35, 0.18);
  padding-bottom: 1rem;
}

.apothecary-site .section-heading h2,
.apothecary-site .content-section h2 {
  max-width: 16ch;
  margin: 0.25rem 0 0;
}

.apothecary-site .section-heading p,
.apothecary-site .section-intro {
  color: var(--ap-muted);
  font-family: var(--ap-serif);
  font-size: 1.05rem;
  line-height: 1.72;
}

.apothecary-site .path-grid,
.apothecary-site .topic-grid,
.apothecary-site .standards-grid {
  gap: 1rem;
  margin-top: 1.35rem;
}

.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card,
.apothecary-site .method-list div,
.apothecary-site .content-section details {
  border: 1px solid var(--ap-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 234, 0.86)),
    var(--ap-paper);
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .path-card,
.apothecary-site .topic-card {
  position: relative;
  min-height: 100%;
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.apothecary-site .path-card {
  display: flex;
  flex-direction: column;
  min-height: 176px;
  padding: 1.25rem;
}

.apothecary-site .path-card::after {
  content: "";
  width: 44px;
  height: 4px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--ap-gold);
}

.apothecary-site .path-card h3 {
  margin: 0.72rem 0 1.2rem;
  font-size: 1.22rem;
  line-height: 1.28;
}

.apothecary-site .topic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.apothecary-site .topic-card {
  grid-column: span 2;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.apothecary-site .topic-card[href] {
  grid-column: span 4;
  border-color: rgba(20, 86, 78, 0.46);
  color: var(--ap-paper);
  background:
    linear-gradient(90deg, rgba(199, 161, 90, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, #123b35, #11100d 68%, #341811);
  background-size: 32px 32px, auto;
}

.apothecary-site .topic-card::before,
.apothecary-site .standards-grid article::before,
.apothecary-site .legal-card::before {
  content: "";
  width: 44px;
  height: 4px;
  display: block;
  border-radius: 999px;
  background: var(--ap-seal);
}

.apothecary-site .topic-card:nth-child(3n)::before,
.apothecary-site .standards-grid article:nth-child(3n)::before {
  background: var(--ap-jade);
}

.apothecary-site .topic-card h3,
.apothecary-site .standards-grid h3 {
  margin-top: 0.62rem;
  font-size: 1.38rem;
  line-height: 1.18;
}

.apothecary-site .topic-card p,
.apothecary-site .standards-grid p,
.apothecary-site .content-section details p,
.apothecary-site .legal-card p {
  color: var(--ap-muted);
  line-height: 1.68;
}

.apothecary-site .topic-card[href] .topic-label,
.apothecary-site .topic-card[href] p,
.apothecary-site .topic-card[href]::after {
  color: rgba(255, 248, 234, 0.8);
}

.apothecary-site .topic-card[href] h3 {
  max-width: 17ch;
  color: var(--ap-paper);
}

.apothecary-site .topic-card[href]::after {
  content: "Open case file";
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  border: 1px solid rgba(199, 161, 90, 0.44);
  border-radius: 6px;
  padding: 0.62rem 0.88rem;
  font-weight: 850;
}

.apothecary-site .path-card:hover,
.apothecary-site .path-card:focus-visible,
.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  border-color: rgba(163, 52, 43, 0.38);
  box-shadow: var(--ap-shadow-md);
  transform: translateY(-2px);
}

.apothecary-site .feature-band {
  width: 100%;
  max-width: none;
  margin: 1.4rem 0 0;
  padding: 4.5rem max(1rem, calc((100vw - 1180px) / 2 + 1rem));
  color: var(--ap-paper);
  background:
    linear-gradient(90deg, rgba(199, 161, 90, 0.11) 1px, transparent 1px),
    linear-gradient(135deg, #110b09 0%, #143d37 58%, #2f1711 100%);
  background-size: 42px 42px, auto;
}

.apothecary-site .feature-band .content-narrow {
  max-width: 1180px;
  padding-inline: 0;
}

.apothecary-site .feature-band h2,
.apothecary-site .feature-band h3,
.apothecary-site .feature-band strong {
  color: var(--ap-paper);
}

.apothecary-site .feature-band p,
.apothecary-site .feature-band span {
  color: rgba(255, 248, 234, 0.78);
}

.apothecary-site .split-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: 2rem;
}

.apothecary-site .method-list {
  gap: 0.8rem;
}

.apothecary-site .method-list div {
  border-color: rgba(199, 161, 90, 0.24);
  background: rgba(255, 248, 234, 0.08);
  box-shadow: none;
}

.apothecary-site .standards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apothecary-site .standards-grid article {
  padding: 1.05rem;
}

.apothecary-site .content-section details {
  overflow: hidden;
  padding: 0;
}

.apothecary-site .content-section summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 1rem 1.12rem;
  color: var(--ap-ink);
  font-family: var(--ap-display);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.apothecary-site .content-section details p {
  margin: 0;
  border-top: 1px solid rgba(90, 56, 35, 0.14);
  padding: 1rem 1.12rem 1.12rem;
}

.apothecary-site .article-page {
  max-width: none;
  margin: 0;
  padding: 0;
}

.apothecary-site .article-hero {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 4.5rem max(1rem, calc((100vw - 1180px) / 2 + 1rem)) 3.6rem;
  color: var(--ap-paper);
  background:
    linear-gradient(90deg, rgba(199, 161, 90, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #120c0a 0%, #143d37 58%, #2b1510 100%);
  background-size: 44px 44px, auto;
}

.apothecary-site .article-hero h1 {
  max-width: 13ch;
  color: var(--ap-paper);
  font-size: 4.55rem;
  line-height: 0.98;
}

.apothecary-site .article-hero .intro {
  color: rgba(255, 248, 234, 0.78);
}

.apothecary-site .article-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(220px, 276px) minmax(0, 842px);
  gap: 2rem;
  margin-inline: auto;
  padding: 2rem 1rem 5rem;
}

.apothecary-site .article-toc {
  position: sticky;
  top: 5.7rem;
  max-height: calc(100vh - 7rem);
  overflow: auto;
  border: 1px solid rgba(199, 161, 90, 0.26);
  border-radius: 8px;
  padding: 1rem;
  background: var(--ap-lacquer);
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .article-toc h2 {
  margin: 0 0 0.65rem;
  color: var(--ap-paper);
  font-family: var(--ap-body);
  font-size: 1rem;
  font-weight: 900;
}

.apothecary-site .article-toc a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.46rem 0.58rem;
  color: rgba(255, 248, 234, 0.75);
  font-size: 0.9rem;
  line-height: 1.32;
}

.apothecary-site .article-toc a:hover,
.apothecary-site .article-toc a:focus-visible {
  color: var(--ap-paper);
  background: rgba(255, 248, 234, 0.08);
}

.apothecary-site .article-toc .toc-h3 {
  padding-left: 1rem;
  color: rgba(255, 248, 234, 0.62);
}

.apothecary-site .article-content {
  max-width: 842px;
  border: 1px solid rgba(90, 56, 35, 0.16);
  border-radius: 8px;
  padding: 2.4rem;
  background:
    linear-gradient(90deg, rgba(90, 56, 35, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0, var(--ap-paper-2));
  background-size: 34px 34px, auto;
  box-shadow: var(--ap-shadow-md);
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  max-width: 69ch;
  color: #261f19;
  font-family: var(--ap-serif);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.82;
}

.apothecary-site .article-content p {
  margin: 0 0 1.08rem;
}

.apothecary-site .article-content > * + * {
  margin-top: 1.05rem;
}

.apothecary-site .article-content h2,
.apothecary-site .article-content h3 {
  max-width: 26ch;
  color: var(--ap-ink);
}

.apothecary-site .article-content h2 {
  margin: 2.5rem 0 0.95rem;
  border-top: 1px solid rgba(90, 56, 35, 0.16);
  padding-top: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.12;
}

.apothecary-site .article-content h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.apothecary-site .article-content h3 {
  margin: 1.8rem 0 0.72rem;
  color: var(--ap-jade-dark);
  font-family: var(--ap-body);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.28;
}

.apothecary-site .article-content ul,
.apothecary-site .article-content ol {
  margin: 1rem 0 1.2rem;
  padding-left: 1.35rem;
}

.apothecary-site .article-content li + li {
  margin-top: 0.5rem;
}

.apothecary-site .article-figure {
  overflow: hidden;
  border: 1px solid rgba(90, 56, 35, 0.18);
  border-radius: 8px;
  margin: 2rem 0;
  background: var(--ap-paper-3);
  box-shadow: var(--ap-shadow-sm);
}

.apothecary-site .article-figure img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 780px);
  display: block;
  object-fit: contain;
  background: var(--ap-paper-3);
}

.apothecary-site .article-figure figcaption {
  border-top: 1px solid rgba(90, 56, 35, 0.16);
  padding: 0.85rem 1rem;
  color: var(--ap-muted);
  background: rgba(255, 248, 234, 0.9);
  font-family: var(--ap-body);
  font-size: 0.88rem;
  line-height: 1.45;
}

.apothecary-site .legal-page {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.apothecary-site .legal-layout {
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  gap: 2rem;
}

.apothecary-site .legal-card {
  padding: 1.3rem;
}

.apothecary-site .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(199, 161, 90, 0.24);
  padding: 1.45rem max(1rem, calc((100vw - 1180px) / 2 + 1rem));
  color: rgba(255, 248, 234, 0.74);
  background: var(--ap-lacquer);
}

.apothecary-site .site-footer strong {
  color: var(--ap-paper);
  font-family: var(--ap-display);
}

.apothecary-site .site-footer p {
  color: rgba(255, 248, 234, 0.7);
}

.apothecary-site .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

.apothecary-site .site-footer a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.48rem 0.65rem;
  color: rgba(255, 248, 234, 0.8);
}

.apothecary-site .site-footer a:hover,
.apothecary-site .site-footer a:focus-visible {
  color: var(--ap-paper);
  background: rgba(255, 248, 234, 0.08);
}

.apothecary-site :focus-visible {
  outline: 3px solid rgba(199, 161, 90, 0.92);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .apothecary-site h1 {
    font-size: 4.25rem;
  }

  .apothecary-site h2 {
    font-size: 2.45rem;
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 3.2rem;
    padding-bottom: 3rem;
  }

  .apothecary-site .hero-section::before {
    inset-inline: 1rem;
  }

  .apothecary-site .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site .topic-card,
  .apothecary-site .topic-card[href] {
    grid-column: auto;
  }

  .apothecary-site .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site .article-layout {
    grid-template-columns: 1fr;
  }

  .apothecary-site .article-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 720px) {
  body.apothecary-site {
    background:
      linear-gradient(180deg, var(--ap-lacquer) 0, var(--ap-jade-dark) 25rem, var(--ap-paper-2) 25rem, #fffaf0 100%);
  }

  .apothecary-site .site-header {
    position: static;
  }

  .apothecary-site .nav {
    align-items: flex-start;
    padding-block: 0.85rem;
  }

  .apothecary-site .brand {
    font-size: 1rem;
  }

  .apothecary-site .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .apothecary-site .nav-links a {
    min-height: 40px;
    padding-inline: 0.6rem;
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    gap: 1.35rem;
    padding-top: 2.4rem;
    padding-bottom: 2.2rem;
  }

  .apothecary-site .hero-section::before,
  .apothecary-site .hero-section::after {
    display: none;
  }

  .apothecary-site h1,
  .apothecary-site .article-hero h1 {
    max-width: 12ch;
    font-size: 3.05rem;
    line-height: 1;
  }

  .apothecary-site h2,
  .apothecary-site .article-content h2 {
    font-size: 2rem;
  }

  .apothecary-site .intro {
    font-size: 1.06rem;
  }

  .apothecary-site .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .apothecary-site .primary-link,
  .apothecary-site .secondary-link {
    width: 100%;
  }

  .apothecary-site .hero-media img {
    max-height: 420px;
  }

  .apothecary-site .intent-panel {
    padding-top: 2.4rem;
  }

  .apothecary-site .content-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .apothecary-site .section-heading,
  .apothecary-site .split-layout,
  .apothecary-site .legal-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .apothecary-site .path-grid,
  .apothecary-site .topic-grid,
  .apothecary-site .standards-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .path-card,
  .apothecary-site .topic-card {
    min-height: 0;
  }

  .apothecary-site .feature-band {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .apothecary-site .article-layout {
    gap: 1rem;
    padding: 1rem 1rem 3.5rem;
  }

  .apothecary-site .article-content {
    padding: 1.15rem;
  }

  .apothecary-site .article-content p,
  .apothecary-site .article-content li {
    font-size: 1.02rem;
    line-height: 1.76;
  }

  .apothecary-site .article-figure {
    margin: 1.4rem 0;
  }

  .apothecary-site .site-footer {
    gap: 1rem;
  }

  .apothecary-site .site-footer nav {
    justify-content: flex-start;
  }
}

/* Apothecary frontend-design final pass: imperial case ledger. */
body.apothecary-site {
  --ap-lacquer: #100b09;
  --ap-lacquer-2: #1b1110;
  --ap-ink: #17130f;
  --ap-ink-2: #2b2119;
  --ap-jade: #0f5c4f;
  --ap-jade-dark: #0d342f;
  --ap-seal: #9a2f22;
  --ap-seal-dark: #6e2119;
  --ap-gold: #b08a49;
  --ap-gold-soft: #d8bd7b;
  --ap-plum: #35222c;
  --ap-paper: #fbf6ea;
  --ap-paper-2: #f2e5ce;
  --ap-paper-3: #e8d5b5;
  --ap-muted: #6d5c48;
  --ap-line: rgba(84, 55, 34, 0.2);
  --ap-line-strong: rgba(176, 138, 73, 0.42);
  --ap-display: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --ap-body: Aptos, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --ap-reader: Charter, "Iowan Old Style", Cambria, Georgia, serif;
  --ap-shadow-sm: 0 12px 30px rgba(35, 20, 10, 0.12);
  --ap-shadow-md: 0 24px 70px rgba(30, 17, 9, 0.18);
  --ap-shadow-dark: 0 32px 90px rgba(0, 0, 0, 0.34);
  color: var(--ap-ink);
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #160f0d 0, #102f2b 33rem, #ead8bb 33rem, #fff9ed 100%);
  background-size: 46px 46px, auto;
  font-family: var(--ap-body);
}

.apothecary-site .site-header {
  border-bottom: 1px solid rgba(216, 189, 123, 0.28);
  background: rgba(16, 11, 9, 0.9);
}

.apothecary-site .nav {
  max-width: 1240px;
  min-height: 72px;
}

.apothecary-site .brand {
  color: var(--ap-paper);
  font-family: var(--ap-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.apothecary-site .brand-mark {
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 246, 226, 0.16), transparent 45%),
    var(--ap-seal);
  box-shadow:
    inset 0 0 0 2px rgba(216, 189, 123, 0.24),
    0 14px 26px rgba(0, 0, 0, 0.28);
}

.apothecary-site .nav-links a {
  border-radius: 2px;
  color: rgba(251, 246, 234, 0.76);
}

.apothecary-site .nav-links a:hover,
.apothecary-site .nav-links a:focus-visible {
  border-color: rgba(216, 189, 123, 0.46);
  background: rgba(251, 246, 234, 0.08);
}

.apothecary-site .hero-section {
  max-width: none;
  min-height: min(760px, calc(100dvh - 72px));
  grid-template-columns: minmax(280px, 0.72fr) minmax(390px, 1.08fr);
  gap: clamp(1.8rem, 4vw, 4.4rem);
  padding:
    clamp(3rem, 7vw, 6rem)
    max(1rem, calc((100vw - 1240px) / 2 + 1rem))
    clamp(3.2rem, 6vw, 5rem);
  background:
    linear-gradient(90deg, rgba(216, 189, 123, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(154, 47, 34, 0.16), transparent 32%),
    radial-gradient(circle at 76% 26%, rgba(216, 189, 123, 0.18), transparent 28%),
    linear-gradient(135deg, #100b09 0%, #0d342f 54%, #35222c 100%);
  background-size: 46px 46px, auto, auto, auto;
}

.apothecary-site .hero-section::before {
  inset: 1.25rem max(1rem, calc((100vw - 1240px) / 2 + 1rem));
  border-color: rgba(216, 189, 123, 0.28);
  border-radius: 2px;
}

.apothecary-site .hero-section::after {
  content: "PALACE MEDICINE / POISON / POLITICS";
  right: max(1.4rem, calc((100vw - 1240px) / 2 + 1.4rem));
  bottom: 1.45rem;
  color: rgba(251, 246, 234, 0.28);
  font-family: var(--ap-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.apothecary-site .hero-copy {
  position: relative;
  max-width: 660px;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.apothecary-site .hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.25rem;
  width: 5px;
  background:
    linear-gradient(180deg, var(--ap-gold-soft), var(--ap-seal) 48%, var(--ap-jade));
}

.apothecary-site .eyebrow,
.apothecary-site .article-kicker,
.apothecary-site .topic-label,
.apothecary-site .path-card span {
  font-family: var(--ap-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apothecary-site h1,
.apothecary-site h2,
.apothecary-site h3 {
  font-family: var(--ap-display);
  letter-spacing: 0;
}

.apothecary-site h1 {
  max-width: 10.5ch;
  margin: 0.55rem 0 1.15rem;
  color: var(--ap-paper);
  font-size: clamp(3.4rem, 7.4vw, 7.25rem);
  line-height: 0.88;
  font-weight: 800;
}

.apothecary-site h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  line-height: 0.98;
}

.apothecary-site .intro {
  color: rgba(251, 246, 234, 0.82);
  font-family: var(--reader, var(--ap-reader));
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.72;
}

.apothecary-site .hero-actions {
  gap: 0.7rem;
  margin-top: 1.85rem;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 52px;
  border-radius: 2px;
  padding: 0.82rem 1.05rem;
  font-size: 0.95rem;
}

.apothecary-site .primary-link {
  border-color: rgba(251, 246, 234, 0.28);
  background: linear-gradient(135deg, var(--ap-seal), var(--ap-seal-dark));
}

.apothecary-site .secondary-link {
  border-color: rgba(216, 189, 123, 0.54);
  background: rgba(251, 246, 234, 0.05);
}

.apothecary-site .hero-media {
  border-radius: 2px;
  border-color: rgba(216, 189, 123, 0.48);
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #f8eedb, #e8d5b5);
  background-size: 28px 28px, auto;
  box-shadow: var(--ap-shadow-dark);
}

.apothecary-site .hero-media::before {
  inset: 14px;
  border-radius: 1px;
  border-color: rgba(154, 47, 34, 0.28);
}

.apothecary-site .hero-media::after {
  content: "ORIGINAL EDITORIAL ART";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 1px solid rgba(154, 47, 34, 0.34);
  padding: 0.36rem 0.5rem;
  color: var(--ap-seal-dark);
  background: rgba(251, 246, 234, 0.82);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.apothecary-site .hero-media img {
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
}

.apothecary-site .hero-media figcaption,
.apothecary-site .article-figure figcaption {
  color: var(--ap-muted);
  background: rgba(251, 246, 234, 0.94);
  font-size: 0.82rem;
}

.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .article-layout,
.apothecary-site .legal-page {
  max-width: 1240px;
}

.apothecary-site .intent-panel {
  padding-top: clamp(2.4rem, 5vw, 4.6rem);
}

.apothecary-site .content-section {
  padding-top: clamp(3.4rem, 7vw, 6.6rem);
  padding-bottom: clamp(3.4rem, 7vw, 6.6rem);
}

.apothecary-site .section-heading {
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.6fr);
  border-bottom: 1px solid rgba(84, 55, 34, 0.22);
}

.apothecary-site .section-heading p,
.apothecary-site .section-intro {
  color: var(--ap-muted);
  font-family: var(--ap-reader);
}

.apothecary-site .path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apothecary-site .path-card,
.apothecary-site .topic-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card,
.apothecary-site .method-list div,
.apothecary-site .content-section details {
  border-radius: 2px;
  border-color: rgba(84, 55, 34, 0.2);
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(251, 246, 234, 0.92));
  background-size: 28px 28px, auto;
}

.apothecary-site .path-card {
  min-height: 190px;
  padding: 1.25rem;
}

.apothecary-site .path-card::after {
  width: 52px;
  height: 5px;
  border-radius: 0;
}

.apothecary-site .path-card h3 {
  font-size: 1.32rem;
  line-height: 1.2;
}

.apothecary-site .topic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.apothecary-site .topic-card {
  grid-column: span 4;
  min-height: 270px;
  padding: 1.25rem;
}

.apothecary-site .topic-card[href] {
  grid-column: span 8;
  min-height: 270px;
  border-color: rgba(216, 189, 123, 0.48);
  background:
    linear-gradient(90deg, rgba(216, 189, 123, 0.13) 1px, transparent 1px),
    linear-gradient(135deg, #0d342f 0%, #100b09 62%, #35222c 100%);
  background-size: 30px 30px, auto;
}

.apothecary-site .topic-card::before,
.apothecary-site .standards-grid article::before,
.apothecary-site .legal-card::before {
  width: 54px;
  height: 5px;
  border-radius: 0;
}

.apothecary-site .topic-card h3,
.apothecary-site .standards-grid h3 {
  font-size: 1.44rem;
  line-height: 1.16;
}

.apothecary-site .topic-card[href]::after {
  border-radius: 2px;
}

.apothecary-site .feature-band {
  background:
    linear-gradient(90deg, rgba(216, 189, 123, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #100b09 0%, #0d342f 62%, #35222c 100%);
  background-size: 42px 42px, auto;
}

.apothecary-site .method-list div {
  border-color: rgba(216, 189, 123, 0.28);
  background:
    linear-gradient(90deg, rgba(216, 189, 123, 0.08) 1px, transparent 1px),
    rgba(251, 246, 234, 0.08);
}

.apothecary-site .article-hero {
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 0.82fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  padding:
    clamp(3rem, 6vw, 5.4rem)
    max(1rem, calc((100vw - 1240px) / 2 + 1rem))
    clamp(3rem, 5vw, 4.6rem);
  background:
    linear-gradient(90deg, rgba(216, 189, 123, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 76% 30%, rgba(216, 189, 123, 0.16), transparent 30%),
    linear-gradient(135deg, #100b09 0%, #0d342f 58%, #35222c 100%);
  background-size: 46px 46px, auto, auto;
}

.apothecary-site .article-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.92;
}

.apothecary-site .article-layout {
  grid-template-columns: minmax(210px, 270px) minmax(0, 850px);
  gap: 2rem;
}

.apothecary-site .article-toc {
  border-radius: 2px;
  border-color: rgba(216, 189, 123, 0.32);
  background:
    linear-gradient(180deg, #120d0b, #0d342f);
}

.apothecary-site .article-toc a {
  border-radius: 2px;
}

.apothecary-site .article-content {
  border-radius: 2px;
  border-color: rgba(84, 55, 34, 0.18);
  padding: clamp(1.25rem, 3vw, 3rem);
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0, #f2e5ce);
  background-size: 32px 32px, auto;
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  color: #231c16;
  font-family: var(--ap-reader);
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.84;
}

.apothecary-site .article-content > p:first-of-type::first-letter {
  float: left;
  margin: 0.08rem 0.48rem 0 0;
  color: var(--ap-seal);
  font-family: var(--ap-display);
  font-size: 4.3rem;
  line-height: 0.82;
}

.apothecary-site .article-content h2 {
  margin-top: 2.7rem;
  border-top: 1px solid rgba(84, 55, 34, 0.18);
  padding-top: 1.45rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.apothecary-site .article-content h3 {
  color: var(--ap-jade-dark);
  font-family: var(--ap-body);
  letter-spacing: 0.01em;
}

.apothecary-site .article-figure {
  border-radius: 2px;
  border-color: rgba(84, 55, 34, 0.2);
  background: var(--ap-paper-3);
}

.apothecary-site .article-figure img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 780px);
  object-fit: contain;
  background: var(--ap-paper-3);
}

.apothecary-site .site-footer {
  border-top-color: rgba(216, 189, 123, 0.3);
  background:
    linear-gradient(90deg, rgba(216, 189, 123, 0.08) 1px, transparent 1px),
    var(--ap-lacquer);
  background-size: 34px 34px, auto;
}

.apothecary-site :focus-visible {
  outline: 3px solid rgba(216, 189, 123, 0.96);
  outline-offset: 3px;
}

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

@media (max-width: 1040px) {
  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .apothecary-site .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site .topic-card,
  .apothecary-site .topic-card[href] {
    grid-column: auto;
  }

  .apothecary-site .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.apothecary-site {
    background:
      linear-gradient(180deg, #160f0d 0, #102f2b 26rem, #ead8bb 26rem, #fff9ed 100%);
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.4rem;
  }

  .apothecary-site .hero-copy {
    padding-left: 0.9rem;
  }

  .apothecary-site h1,
  .apothecary-site .article-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .apothecary-site .hero-media::after {
    top: 0.7rem;
    right: 0.7rem;
    max-width: calc(100% - 1.4rem);
  }

  .apothecary-site .path-grid,
  .apothecary-site .topic-grid,
  .apothecary-site .standards-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .topic-card,
  .apothecary-site .topic-card[href] {
    min-height: 0;
  }

  .apothecary-site .article-content {
    padding: 1.15rem;
  }

  .apothecary-site .article-content > p:first-of-type::first-letter {
    font-size: 3.4rem;
  }
}

/* Apothecary frontend-design polish: imperial dossier edition. */
.apothecary-site {
  --fd-ink: #15110d;
  --fd-lacquer: #170b08;
  --fd-jade: #173d35;
  --fd-jade-2: #245a4c;
  --fd-seal: #a63722;
  --fd-gold: #c9a45e;
  --fd-paper: #fbf2df;
  --fd-paper-2: #ead6b7;
  --fd-line: rgba(73, 48, 31, 0.18);
}

body.apothecary-site {
  color: var(--fd-ink);
  background:
    linear-gradient(90deg, rgba(73, 48, 31, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #120907 0, #173d35 34rem, #dfc69c 34rem, #fff7e8 100%);
  background-size: 44px 44px, auto;
}

.apothecary-site .site-header {
  border-bottom: 1px solid rgba(201, 164, 94, 0.26);
  background: rgba(17, 9, 7, 0.9);
  box-shadow: 0 18px 48px rgba(15, 8, 6, 0.26);
  backdrop-filter: blur(18px);
}

.apothecary-site .nav {
  min-height: 74px;
}

.apothecary-site .brand {
  color: #fff2d8;
  font-weight: 800;
  letter-spacing: 0;
}

.apothecary-site .brand-mark {
  border: 1px solid rgba(255, 227, 164, 0.52);
  border-radius: 4px;
  color: #fff2d8;
  background:
    linear-gradient(135deg, #c2472e 0%, #8d2b1d 58%, #4a1710 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 238, 195, 0.14), 0 10px 24px rgba(0, 0, 0, 0.24);
}

.apothecary-site .nav-links a,
.apothecary-site .footer-links a {
  color: rgba(255, 242, 216, 0.78);
  letter-spacing: 0;
}

.apothecary-site .nav-links a:hover,
.apothecary-site .footer-links a:hover {
  color: #fff2d8;
}

.apothecary-site .hero-section {
  position: relative;
  min-height: min(820px, calc(100vh - 74px));
  gap: clamp(1.7rem, 4.8vw, 6rem);
  padding-top: clamp(3rem, 8vw, 7rem);
  padding-bottom: clamp(2.4rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(201, 164, 94, 0.24);
  background:
    linear-gradient(90deg, rgba(201, 164, 94, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 242, 216, 0.08), transparent 42%),
    linear-gradient(135deg, #170b08 0%, #143931 56%, #2a1613 100%);
  background-size: 46px 46px, auto, auto;
  overflow: hidden;
}

.apothecary-site .hero-section::before {
  content: "IMPERIAL CASE NOTES";
  position: absolute;
  left: max(1rem, calc((100vw - 1240px) / 2 + 1rem));
  top: 1.2rem;
  color: rgba(255, 232, 176, 0.36);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.apothecary-site .hero-copy {
  max-width: 720px;
  padding-left: clamp(1rem, 2vw, 1.7rem);
  border-left: 1px solid rgba(201, 164, 94, 0.42);
}

.apothecary-site .eyebrow,
.apothecary-site .section-kicker,
.apothecary-site .article-meta {
  color: var(--fd-seal);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.apothecary-site .hero-section .eyebrow {
  color: #f0c978;
}

.apothecary-site h1,
.apothecary-site .article-hero h1 {
  max-width: 12ch;
  color: #fff3d8;
  font-size: clamp(4.15rem, 8.2vw, 8.6rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.apothecary-site .hero-copy .lede,
.apothecary-site .article-hero .article-dek {
  max-width: 62ch;
  color: rgba(255, 242, 216, 0.86);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.74;
}

.apothecary-site .hero-actions {
  gap: 0.75rem;
}

.apothecary-site .button,
.apothecary-site .button.secondary {
  border-radius: 3px;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: none;
}

.apothecary-site .button {
  border-color: rgba(255, 234, 184, 0.62);
  color: #170b08;
  background: #e9c56f;
}

.apothecary-site .button:hover {
  background: #f3d990;
  transform: translateY(-1px);
}

.apothecary-site .button.secondary {
  color: #fff2d8;
  background: rgba(255, 242, 216, 0.08);
}

.apothecary-site .hero-media {
  border: 1px solid rgba(201, 164, 94, 0.36);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 238, 195, 0.08) 1px, transparent 1px),
    rgba(16, 9, 7, 0.28);
  background-size: 28px 28px, auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.apothecary-site .hero-media img {
  object-fit: contain;
  background: rgba(20, 14, 10, 0.18);
}

.apothecary-site .hero-media::after {
  top: 1rem;
  right: 1rem;
  border-radius: 3px;
  border-color: rgba(201, 164, 94, 0.38);
  color: #fff2d8;
  background: rgba(18, 9, 7, 0.82);
}

.apothecary-site .intent-panel,
.apothecary-site .content-section,
.apothecary-site .legal-main {
  background: transparent;
}

.apothecary-site .path-grid {
  align-items: stretch;
  gap: 0.9rem;
}

.apothecary-site .path-card,
.apothecary-site .standards-grid article,
.apothecary-site .legal-card {
  position: relative;
  border: 1px solid var(--fd-line);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(73, 48, 31, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 239, 0.92), rgba(238, 221, 190, 0.92));
  background-size: 28px 28px, auto;
  box-shadow: 0 18px 38px rgba(71, 47, 29, 0.09);
}

.apothecary-site .path-card:hover,
.apothecary-site .topic-card:hover {
  transform: translateY(-3px);
}

.apothecary-site .path-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(73, 48, 31, 0.12);
  pointer-events: none;
}

.apothecary-site .path-card h3,
.apothecary-site .topic-card h3,
.apothecary-site .standards-grid h3 {
  color: #1c1711;
  letter-spacing: 0;
  text-wrap: balance;
}

.apothecary-site .path-card p,
.apothecary-site .topic-card p,
.apothecary-site .standards-grid p {
  color: rgba(28, 23, 17, 0.74);
}

.apothecary-site .content-section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.apothecary-site .section-heading {
  max-width: 780px;
}

.apothecary-site .section-heading h2 {
  color: #1b1510;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.apothecary-site .topic-grid {
  grid-auto-rows: minmax(240px, auto);
  gap: 1rem;
}

.apothecary-site .topic-card {
  border: 1px solid rgba(73, 48, 31, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(73, 48, 31, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff7e8, #ead7b8);
  background-size: 30px 30px, auto;
  box-shadow: 0 20px 42px rgba(73, 48, 31, 0.1);
}

.apothecary-site .topic-card[href] {
  border-color: rgba(201, 164, 94, 0.42);
  color: #fff2d8;
  background:
    linear-gradient(90deg, rgba(201, 164, 94, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #143931 0%, #170b08 64%, #3a1710 100%);
  background-size: 32px 32px, auto;
}

.apothecary-site .topic-card[href] h3,
.apothecary-site .topic-card[href] p {
  color: #fff2d8;
}

.apothecary-site .topic-card[href] .card-link {
  color: #f0c978;
}

.apothecary-site .feature-band {
  border-block: 1px solid rgba(201, 164, 94, 0.25);
  background:
    linear-gradient(90deg, rgba(201, 164, 94, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #130907 0%, #173d35 55%, #2d1510 100%);
  background-size: 40px 40px, auto;
}

.apothecary-site .feature-band h2,
.apothecary-site .feature-band p,
.apothecary-site .method-list div,
.apothecary-site .method-list strong {
  color: #fff2d8;
}

.apothecary-site .method-list div {
  border-radius: 3px;
  background: rgba(255, 242, 216, 0.08);
}

.apothecary-site .article-hero {
  min-height: 560px;
  border-bottom: 1px solid rgba(201, 164, 94, 0.26);
  background:
    linear-gradient(90deg, rgba(201, 164, 94, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #170b08 0%, #173d35 58%, #2d1510 100%);
  background-size: 46px 46px, auto;
}

.apothecary-site .article-layout {
  align-items: start;
}

.apothecary-site .article-toc {
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(201, 164, 94, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, #170b08, #173d35);
  background-size: 26px 26px, auto;
}

.apothecary-site .article-toc h2,
.apothecary-site .article-toc a {
  color: #fff2d8;
  letter-spacing: 0;
}

.apothecary-site .article-toc a:hover {
  color: #f0c978;
}

.apothecary-site .article-content {
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(73, 48, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fff8eb, #f0dfc1);
  background-size: 32px 32px, auto;
  box-shadow: 0 24px 56px rgba(73, 48, 31, 0.12);
}

.apothecary-site .article-content h2 {
  color: #201710;
  letter-spacing: 0;
}

.apothecary-site .article-content h3 {
  color: var(--fd-jade);
  letter-spacing: 0;
}

.apothecary-site .article-content p,
.apothecary-site .article-content li {
  color: #241b13;
}

.apothecary-site .article-figure {
  border-radius: 4px;
  background: #f3e3c7;
}

.apothecary-site .article-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f3e3c7;
}

.apothecary-site .article-figure figcaption {
  color: rgba(36, 27, 19, 0.68);
}

.apothecary-site .site-footer {
  background:
    linear-gradient(90deg, rgba(201, 164, 94, 0.08) 1px, transparent 1px),
    #120907;
  background-size: 34px 34px, auto;
}

@media (max-width: 1040px) {
  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    min-height: 0;
  }

  .apothecary-site h1,
  .apothecary-site .article-hero h1 {
    max-width: 13ch;
    font-size: clamp(3.4rem, 11vw, 6.4rem);
  }
}

@media (max-width: 720px) {
  body.apothecary-site {
    background:
      linear-gradient(90deg, rgba(73, 48, 31, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, #120907 0, #173d35 34rem, #e7d0aa 34rem, #fff7e8 100%);
    background-size: 34px 34px, auto;
  }

  .apothecary-site .nav {
    min-height: 64px;
  }

  .apothecary-site .hero-section,
  .apothecary-site .article-hero {
    padding-top: 2.25rem;
    padding-bottom: 2.4rem;
  }

  .apothecary-site .hero-copy {
    padding-left: 0.85rem;
  }

  .apothecary-site h1,
  .apothecary-site .article-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 15vw, 4.55rem);
    line-height: 0.92;
  }

  .apothecary-site .hero-copy .lede,
  .apothecary-site .article-hero .article-dek {
    font-size: 1rem;
    line-height: 1.68;
  }

  .apothecary-site .section-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
    line-height: 1;
  }

  .apothecary-site .path-card,
  .apothecary-site .topic-card,
  .apothecary-site .standards-grid article {
    min-height: 0;
    padding: 1.05rem;
  }

  .apothecary-site .article-content {
    padding: 1.1rem;
  }
}

/* Final type scale correction: keep the dossier mood without oversized hero text. */
.apothecary-site .hero-section h1 {
  max-width: 15ch;
  font-size: clamp(3.1rem, 6.1vw, 6.4rem);
  line-height: 0.95;
}

.apothecary-site .article-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.9rem, 5.1vw, 5.4rem);
  line-height: 0.98;
}

@media (max-width: 1040px) {
  .apothecary-site .hero-section h1,
  .apothecary-site .article-hero h1 {
    max-width: 16ch;
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    line-height: 1;
  }
}

@media (max-width: 720px) {
  .apothecary-site .hero-section h1,
  .apothecary-site .article-hero h1 {
    max-width: 15ch;
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
    line-height: 1.02;
  }
}

.apothecary-site .article-content .internal-link {
  color: #0f5d50;
  font-weight: 650;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.apothecary-site .article-content .internal-link:hover,
.apothecary-site .article-content .internal-link:focus-visible {
  color: #8b4a20;
}

/* Compact article index: keep every topic card real, even, and lightweight. */
.apothecary-site .topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: auto;
  gap: 0.75rem;
  align-items: stretch;
}

.apothecary-site .topic-card,
.apothecary-site .topic-card[href] {
  grid-column: auto;
  min-height: 0;
  padding: 0.92rem 0.95rem 0.98rem;
  border: 1px solid rgba(84, 55, 34, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 243, 232, 0.98));
  background-size: auto;
  box-shadow: 0 10px 24px rgba(73, 48, 31, 0.06);
  color: #241b13;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}

.apothecary-site .topic-card[href] {
  border-color: rgba(84, 55, 34, 0.16);
}

.apothecary-site .topic-card[href],
.apothecary-site .topic-card[href] h3,
.apothecary-site .topic-card[href] p {
  color: #241b13;
}

.apothecary-site .topic-card::before {
  width: 42px;
  height: 4px;
  border-radius: 0;
  opacity: 0.82;
}

.apothecary-site .topic-card h3 {
  font-size: 1.03rem;
  line-height: 1.2;
}

.apothecary-site .topic-card p {
  margin-bottom: 0;
  color: var(--ap-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(84, 55, 34, 0.24);
  box-shadow: 0 14px 28px rgba(73, 48, 31, 0.09);
}

.apothecary-site .topic-card[href]::after {
  display: none;
}

/* Final article cover wall: real covers lead, text stays compact and scannable. */
.apothecary-site .intent-panel {
  padding: 1.25rem;
}

.apothecary-site .path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.apothecary-site .path-card {
  min-height: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 6px;
  gap: 0.35rem;
}

.apothecary-site .path-card h3 {
  font-size: 0.92rem;
  line-height: 1.35;
}

.apothecary-site .topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.apothecary-site .topic-card,
.apothecary-site .topic-card[href] {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(84, 55, 34, 0.18);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 16px 34px rgba(73, 48, 31, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
  touch-action: manipulation;
}

.apothecary-site .topic-card::before,
.apothecary-site .topic-card[href]::after {
  display: none;
}

.apothecary-site .topic-thumb {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ead6b8;
  border-bottom: 1px solid rgba(84, 55, 34, 0.14);
}

.apothecary-site .topic-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.apothecary-site .topic-label {
  width: fit-content;
  margin: 0.9rem 1rem 0.55rem;
  color: #0f5d50;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apothecary-site .topic-card h3 {
  margin: 0 1rem;
  color: #21170f;
  font-size: 1.08rem;
  line-height: 1.25;
}

.apothecary-site .topic-card p {
  margin: 0.55rem 1rem 0;
  color: rgba(36, 27, 19, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.apothecary-site .topic-card .card-link {
  min-height: 44px;
  margin: auto 1rem 0;
  padding: 0.7rem 0 0.95rem;
  color: #8b4a20;
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 74, 32, 0.35);
  box-shadow: 0 22px 42px rgba(73, 48, 31, 0.16);
}

.apothecary-site .topic-card:hover .topic-thumb img,
.apothecary-site .topic-card:focus-visible .topic-thumb img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.apothecary-site .path-card:focus-visible,
.apothecary-site .topic-card:focus-visible {
  outline: 3px solid rgba(15, 93, 80, 0.38);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .apothecary-site .path-grid,
  .apothecary-site .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .apothecary-site .intent-panel {
    padding: 1rem;
  }

  .apothecary-site .path-grid,
  .apothecary-site .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .topic-thumb {
    aspect-ratio: 16 / 10;
  }
}

/* Final visual reinforcement: editorial magazine polish for the blog home. */
body.apothecary-site {
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(84, 55, 34, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #120907 0, #183932 31rem, #e4cda6 31rem, #fff8ec 58rem, #fffaf2 100%);
  background-size: 40px 40px, 40px 40px, auto;
}

.apothecary-site .site-header {
  border-bottom-color: rgba(216, 189, 123, 0.28);
  background: rgba(18, 9, 7, 0.82);
  backdrop-filter: blur(16px);
}

.apothecary-site .nav-links a,
.apothecary-site .brand {
  color: #fff4df;
}

.apothecary-site .nav-links a:hover,
.apothecary-site .nav-links a:focus-visible {
  color: #f0c978;
}

.apothecary-site .hero-section {
  min-height: 0;
  padding-top: clamp(3.4rem, 6vw, 5.5rem);
  padding-bottom: clamp(2.4rem, 5vw, 4.2rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(1.1rem, 3vw, 2.4rem);
}

.apothecary-site .hero-copy {
  padding: clamp(0.8rem, 2vw, 1.35rem) 0 clamp(0.8rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.35rem);
  border-left: 3px solid rgba(216, 189, 123, 0.62);
}

.apothecary-site .hero-section h1 {
  max-width: 15ch;
  color: #fff4df;
  font-size: clamp(2.85rem, 5.5vw, 5.45rem);
  line-height: 0.98;
}

.apothecary-site .hero-copy .intro {
  max-width: 56ch;
  color: rgba(255, 244, 223, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.72;
}

.apothecary-site .hero-actions {
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 48px;
  border-radius: 4px;
  padding: 0.76rem 1.05rem;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site .primary-link {
  border-color: rgba(216, 189, 123, 0.44);
  background: linear-gradient(135deg, #9a2f22, #6f211b);
  color: #fffaf0;
  box-shadow: 0 14px 30px rgba(86, 22, 17, 0.26);
}

.apothecary-site .secondary-link {
  border-color: rgba(216, 189, 123, 0.46);
  background: rgba(255, 248, 236, 0.08);
  color: #fff4df;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.06);
}

.apothecary-site .primary-link:hover,
.apothecary-site .primary-link:focus-visible,
.apothecary-site .secondary-link:hover,
.apothecary-site .secondary-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 201, 120, 0.74);
  box-shadow: 0 18px 34px rgba(10, 6, 4, 0.22);
}

.apothecary-site .primary-link:focus-visible,
.apothecary-site .secondary-link:focus-visible,
.apothecary-site .path-card:focus-visible,
.apothecary-site .topic-card:focus-visible {
  outline: 3px solid rgba(240, 201, 120, 0.42);
  outline-offset: 3px;
}

.apothecary-site .hero-media {
  border-radius: 6px;
  border-color: rgba(216, 189, 123, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 238, 195, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 12, 9, 0.96), rgba(40, 24, 17, 0.96));
  background-size: 34px 34px, auto;
  box-shadow: 0 30px 70px rgba(10, 6, 4, 0.34);
}

.apothecary-site .hero-media img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  background: rgba(20, 14, 10, 0.12);
}

.apothecary-site .intent-panel {
  margin-top: 0;
  padding: clamp(1.05rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(84, 55, 34, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(248, 238, 219, 0.98));
  background-size: 36px 36px, auto;
  box-shadow: 0 22px 50px rgba(73, 48, 31, 0.12);
}

.apothecary-site .intent-panel .section-heading {
  gap: 1rem;
  margin-bottom: 1rem;
}

.apothecary-site .path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.apothecary-site .path-card {
  position: relative;
  min-height: 152px;
  padding: 1rem 1rem 3.2rem;
  overflow: hidden;
  border-radius: 6px;
  border-color: rgba(84, 55, 34, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 241, 226, 0.98));
  box-shadow: 0 14px 30px rgba(73, 48, 31, 0.08);
}

.apothecary-site .path-card::after {
  content: "Read path";
  position: absolute;
  right: 1rem;
  bottom: 0.95rem;
  width: auto;
  height: auto;
  border-radius: 3px;
  background: #173d35;
  color: #fffaf0;
  padding: 0.42rem 0.58rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
}

.apothecary-site .path-card h3 {
  max-width: 33ch;
  padding-right: 0;
  color: #201710;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.34;
}

.apothecary-site .path-card:hover,
.apothecary-site .path-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 74, 32, 0.34);
  box-shadow: 0 22px 42px rgba(73, 48, 31, 0.15);
}

.apothecary-site .content-section#topics {
  padding-top: clamp(3rem, 6vw, 5.4rem);
}

.apothecary-site #topics .content-narrow {
  max-width: 1240px;
}

.apothecary-site #topics .section-intro {
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.68;
}

.apothecary-site .topic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.3rem;
}

.apothecary-site .topic-card,
.apothecary-site .topic-card[href] {
  grid-column: span 4;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(84, 55, 34, 0.17);
  background: #fffaf0;
  box-shadow: 0 14px 32px rgba(73, 48, 31, 0.1);
  color: #241b13;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site .topic-card:nth-child(1) {
  grid-column: span 6;
}

.apothecary-site .topic-card:nth-child(2),
.apothecary-site .topic-card:nth-child(3) {
  grid-column: span 3;
}

.apothecary-site .topic-card:nth-child(7) {
  grid-column: span 12;
  min-height: 340px;
}

.apothecary-site .topic-card:nth-child(1),
.apothecary-site .topic-card:nth-child(7) {
  position: relative;
  justify-content: flex-end;
  background: #17100d;
  color: #fff4df;
}

.apothecary-site .topic-card:nth-child(1)::before,
.apothecary-site .topic-card:nth-child(7)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(10, 6, 4, 0.08) 0%, rgba(10, 6, 4, 0.44) 48%, rgba(10, 6, 4, 0.88) 100%);
  pointer-events: none;
}

.apothecary-site .topic-card:nth-child(1) .topic-thumb,
.apothecary-site .topic-card:nth-child(7) .topic-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
}

.apothecary-site .topic-card:nth-child(1) .topic-label,
.apothecary-site .topic-card:nth-child(1) h3,
.apothecary-site .topic-card:nth-child(1) p,
.apothecary-site .topic-card:nth-child(1) .card-link,
.apothecary-site .topic-card:nth-child(7) .topic-label,
.apothecary-site .topic-card:nth-child(7) h3,
.apothecary-site .topic-card:nth-child(7) p,
.apothecary-site .topic-card:nth-child(7) .card-link {
  position: relative;
  z-index: 2;
  color: #fff4df;
}

.apothecary-site .topic-card:nth-child(1) .topic-label,
.apothecary-site .topic-card:nth-child(7) .topic-label {
  margin-top: auto;
  color: #f0c978;
}

.apothecary-site .topic-card:nth-child(1) h3,
.apothecary-site .topic-card:nth-child(7) h3 {
  max-width: 19ch;
  font-size: clamp(1.36rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.apothecary-site .topic-card:nth-child(7) h3 {
  max-width: 22ch;
}

.apothecary-site .topic-card:nth-child(1) p,
.apothecary-site .topic-card:nth-child(7) p {
  max-width: 42ch;
  color: rgba(255, 244, 223, 0.8);
}

.apothecary-site .topic-thumb {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ead6b8;
  border-bottom: 1px solid rgba(84, 55, 34, 0.14);
}

.apothecary-site .topic-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.apothecary-site .topic-label {
  width: fit-content;
  margin: 0.82rem 0.95rem 0.5rem;
  color: #0f5d50;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apothecary-site .topic-card h3 {
  margin: 0 0.95rem;
  color: #21170f;
  font-size: 1.02rem;
  line-height: 1.24;
}

.apothecary-site .topic-card p {
  margin: 0.48rem 0.95rem 0;
  color: rgba(36, 27, 19, 0.72);
  font-size: 0.89rem;
  line-height: 1.52;
}

.apothecary-site .topic-card .card-link {
  min-height: 44px;
  margin: auto 0.95rem 0;
  padding: 0.64rem 0 0.88rem;
  color: #8b4a20;
  font-size: 0.84rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
}

.apothecary-site .topic-card .card-link::after {
  content: ">";
  margin-left: 0.42rem;
  transition: transform 180ms ease;
}

.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 74, 32, 0.36);
  box-shadow: 0 24px 48px rgba(73, 48, 31, 0.17);
}

.apothecary-site .topic-card:hover .topic-thumb img,
.apothecary-site .topic-card:focus-visible .topic-thumb img {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.03);
}

.apothecary-site .topic-card:hover .card-link::after,
.apothecary-site .topic-card:focus-visible .card-link::after {
  transform: translateX(3px);
}

@media (max-width: 1040px) {
  .apothecary-site .hero-section {
    grid-template-columns: 1fr;
  }

  .apothecary-site .hero-media {
    max-width: 760px;
  }

  .apothecary-site .topic-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .apothecary-site .topic-card,
  .apothecary-site .topic-card[href],
  .apothecary-site .topic-card:nth-child(2),
  .apothecary-site .topic-card:nth-child(3) {
    grid-column: span 3;
  }

  .apothecary-site .topic-card:nth-child(1),
  .apothecary-site .topic-card:nth-child(7) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  body.apothecary-site {
    background:
      linear-gradient(90deg, rgba(73, 48, 31, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, #120907 0, #173d35 31rem, #e6d1ad 31rem, #fff8ec 100%);
    background-size: 34px 34px, auto;
  }

  .apothecary-site .hero-section {
    padding-top: 2.4rem;
    padding-bottom: 2.2rem;
  }

  .apothecary-site .hero-copy {
    padding-left: 0.9rem;
  }

  .apothecary-site .hero-section h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
    line-height: 1.02;
  }

  .apothecary-site .hero-copy .intro {
    font-size: 1rem;
  }

  .apothecary-site .path-grid,
  .apothecary-site .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .path-card,
  .apothecary-site .topic-card,
  .apothecary-site .topic-card[href],
  .apothecary-site .topic-card:nth-child(1),
  .apothecary-site .topic-card:nth-child(2),
  .apothecary-site .topic-card:nth-child(3),
  .apothecary-site .topic-card:nth-child(7) {
    grid-column: auto;
  }

  .apothecary-site .topic-card:nth-child(1),
  .apothecary-site .topic-card:nth-child(7) {
    min-height: 340px;
  }

  .apothecary-site .topic-card h3 {
    font-size: 1rem;
  }

  .apothecary-site .topic-card:nth-child(1) h3,
  .apothecary-site .topic-card:nth-child(7) h3 {
    font-size: clamp(1.28rem, 7vw, 1.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site .primary-link,
  .apothecary-site .secondary-link,
  .apothecary-site .path-card,
  .apothecary-site .topic-card,
  .apothecary-site .topic-thumb img,
  .apothecary-site .topic-card .card-link::after {
    transition: none;
  }

  .apothecary-site .primary-link:hover,
  .apothecary-site .primary-link:focus-visible,
  .apothecary-site .secondary-link:hover,
  .apothecary-site .secondary-link:focus-visible,
  .apothecary-site .path-card:hover,
  .apothecary-site .path-card:focus-visible,
  .apothecary-site .topic-card:hover,
  .apothecary-site .topic-card:focus-visible,
  .apothecary-site .topic-card:hover .topic-thumb img,
  .apothecary-site .topic-card:focus-visible .topic-thumb img,
  .apothecary-site .topic-card:hover .card-link::after,
  .apothecary-site .topic-card:focus-visible .card-link::after {
    transform: none;
  }
}

/* Home issue polish: stronger editorial surfaces and tighter article click cues. */
.apothecary-site main {
  overflow: hidden;
}

.apothecary-site .eyebrow,
.apothecary-site .topic-label,
.apothecary-site .path-card span {
  letter-spacing: 0;
}

.apothecary-site .hero-section {
  position: relative;
}

.apothecary-site .hero-section::after {
  content: "";
  position: absolute;
  left: max(1rem, calc((100vw - 1240px) / 2));
  right: max(1rem, calc((100vw - 1240px) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 201, 120, 0.46), transparent);
  pointer-events: none;
}

.apothecary-site .hero-media {
  position: relative;
  overflow: hidden;
}

.apothecary-site .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 244, 223, 0.14);
  pointer-events: none;
}

.apothecary-site .intent-panel {
  position: relative;
  isolation: isolate;
}

.apothecary-site .intent-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(154, 47, 34, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(15, 93, 80, 0.08), transparent 58%);
  pointer-events: none;
}

.apothecary-site .path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.apothecary-site .path-card span {
  width: fit-content;
  border-bottom: 2px solid rgba(154, 47, 34, 0.28);
  color: #8b2d22;
  font-size: 0.78rem;
}

.apothecary-site .path-card h3 {
  margin-top: 0.7rem;
}

.apothecary-site .content-section#topics {
  position: relative;
  isolation: isolate;
  margin-top: clamp(2.2rem, 5vw, 4.2rem);
  padding-top: clamp(2.6rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.1rem, 6vw, 5.4rem);
  border-top: 1px solid rgba(84, 55, 34, 0.14);
  border-bottom: 1px solid rgba(84, 55, 34, 0.12);
  background:
    linear-gradient(90deg, rgba(84, 55, 34, 0.042) 1px, transparent 1px),
    linear-gradient(0deg, rgba(84, 55, 34, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 249, 238, 0.94), rgba(244, 229, 199, 0.72) 46%, rgba(255, 250, 242, 0.96));
  background-size: 32px 32px, 32px 32px, auto;
}

.apothecary-site .content-section#topics::before {
  content: "";
  position: absolute;
  inset: 1rem max(1rem, calc((100vw - 1280px) / 2));
  z-index: -1;
  border: 1px solid rgba(84, 55, 34, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.apothecary-site #topics .content-narrow {
  position: relative;
}

.apothecary-site #topics .content-narrow::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9a2f22, #0f5d50, #d7a846);
}

.apothecary-site #topics .section-intro {
  margin-bottom: 0;
  color: rgba(36, 27, 19, 0.76);
}

.apothecary-site .topic-grid {
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.apothecary-site .topic-card,
.apothecary-site .topic-card[href] {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 235, 0.98));
}

.apothecary-site .topic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  pointer-events: none;
}

.apothecary-site .topic-card:not(:nth-child(1)):not(:nth-child(7)) .topic-thumb {
  aspect-ratio: 4 / 3;
}

.apothecary-site .topic-card:nth-child(1),
.apothecary-site .topic-card:nth-child(7) {
  min-height: 360px;
}

.apothecary-site .topic-card:nth-child(1) .topic-thumb img,
.apothecary-site .topic-card:nth-child(7) .topic-thumb img {
  filter: saturate(1.04) contrast(1.02);
}

.apothecary-site .topic-card:nth-child(7) {
  align-items: flex-start;
}

.apothecary-site .topic-card:nth-child(7) .topic-label,
.apothecary-site .topic-card:nth-child(7) h3,
.apothecary-site .topic-card:nth-child(7) p,
.apothecary-site .topic-card:nth-child(7) .card-link {
  margin-left: clamp(1.1rem, 4vw, 2rem);
}

.apothecary-site .topic-card:nth-child(7) .card-link {
  width: min(22rem, calc(100% - clamp(2.2rem, 8vw, 4rem)));
}

.apothecary-site .topic-label {
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(15, 93, 80, 0.18);
  border-radius: 3px;
  background: rgba(15, 93, 80, 0.07);
  line-height: 1.2;
}

.apothecary-site .topic-card:nth-child(1) .topic-label,
.apothecary-site .topic-card:nth-child(7) .topic-label {
  border-color: rgba(240, 201, 120, 0.34);
  background: rgba(18, 9, 7, 0.34);
}

.apothecary-site .topic-card h3 {
  text-wrap: balance;
}

.apothecary-site .topic-card .card-link {
  width: calc(100% - 1.9rem);
  justify-content: space-between;
  border-top: 1px solid rgba(84, 55, 34, 0.13);
}

.apothecary-site .topic-card:not(:nth-child(1)):not(:nth-child(7)) .card-link {
  margin-top: 0.85rem;
}

.apothecary-site .topic-card:nth-child(1) .card-link,
.apothecary-site .topic-card:nth-child(7) .card-link {
  border-top-color: rgba(255, 244, 223, 0.18);
}

.apothecary-site .feature-band {
  background:
    linear-gradient(90deg, rgba(255, 244, 223, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #173d35, #102a25);
  background-size: 36px 36px, auto;
  color: #fff4df;
}

.apothecary-site .feature-band h2,
.apothecary-site .feature-band strong {
  color: #fff4df;
}

.apothecary-site .feature-band p,
.apothecary-site .feature-band span {
  color: rgba(255, 244, 223, 0.76);
}

.apothecary-site .feature-band .method-list > div {
  border-color: rgba(255, 244, 223, 0.14);
  background: rgba(255, 244, 223, 0.06);
}

@media (max-width: 1040px) {
  .apothecary-site .content-section#topics::before {
    inset-inline: 1rem;
  }

  .apothecary-site .topic-card:nth-child(1),
  .apothecary-site .topic-card:nth-child(7) {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .apothecary-site .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .apothecary-site .primary-link,
  .apothecary-site .secondary-link {
    width: 100%;
    justify-content: center;
  }

  .apothecary-site .content-section#topics {
    margin-top: 1.5rem;
    padding-top: 2.2rem;
  }

  .apothecary-site .content-section#topics::before {
    inset: 0.7rem;
  }

  .apothecary-site .topic-grid {
    gap: 0.85rem;
  }

  .apothecary-site .topic-card:not(:nth-child(1)):not(:nth-child(7)) .topic-thumb {
    aspect-ratio: 16 / 9;
  }

  .apothecary-site .topic-card:nth-child(1),
  .apothecary-site .topic-card:nth-child(7) {
    min-height: 286px;
  }

  .apothecary-site .topic-card:nth-child(7) .topic-label,
  .apothecary-site .topic-card:nth-child(7) h3,
  .apothecary-site .topic-card:nth-child(7) p,
  .apothecary-site .topic-card:nth-child(7) .card-link {
    margin-left: 0.95rem;
  }

  .apothecary-site .topic-card:nth-child(7) .card-link {
    width: calc(100% - 1.9rem);
  }
}

/* Home click polish: compact editorial index for the Apothecary blog home. */
body.apothecary-site {
  color: #21170f;
  background:
    repeating-linear-gradient(90deg, rgba(49, 34, 22, 0.045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(49, 34, 22, 0.032) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #111a16 0, #173d35 29rem, #f1dfbf 29.05rem, #fff9ef 100%);
}

.apothecary-site .hero-section {
  max-width: 1240px;
  margin-top: clamp(0.95rem, 2vw, 1.6rem);
  padding: clamp(2.15rem, 4.2vw, 4.4rem);
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.66fr);
  gap: clamp(1.4rem, 3.5vw, 3.2rem);
  border-radius: 8px;
  border-color: rgba(255, 244, 223, 0.14);
  background:
    linear-gradient(90deg, rgba(240, 201, 120, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 244, 223, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #121b17 0%, #173d35 58%, #742b24 100%);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: 0 28px 72px rgba(18, 9, 7, 0.27);
}

.apothecary-site .hero-section::before {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 244, 223, 0.08), transparent 42%),
    linear-gradient(180deg, transparent 66%, rgba(18, 9, 7, 0.36));
}

.apothecary-site .hero-section h1 {
  max-width: 9.5ch;
  font-size: clamp(2.45rem, 5.1vw, 4.75rem);
  line-height: 0.98;
}

.apothecary-site .hero-copy .intro {
  max-width: 58ch;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}

.apothecary-site .hero-media {
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  align-self: center;
  box-shadow: 0 18px 44px rgba(18, 9, 7, 0.32);
}

.apothecary-site .hero-media img {
  height: 100%;
  object-fit: cover;
}

.apothecary-site .primary-link,
.apothecary-site .secondary-link {
  min-height: 46px;
  border-radius: 6px;
  touch-action: manipulation;
}

.apothecary-site .intent-panel {
  max-width: 1240px;
  margin-top: clamp(1rem, 2.2vw, 1.7rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 8px;
  border-color: rgba(84, 55, 34, 0.16);
  background:
    linear-gradient(90deg, rgba(15, 93, 80, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(246, 233, 207, 0.92));
  box-shadow: 0 18px 42px rgba(73, 48, 31, 0.12);
}

.apothecary-site .intent-panel .section-heading {
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.apothecary-site .intent-panel .section-heading h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.apothecary-site .intent-panel .section-heading > p {
  max-width: 48ch;
  font-size: 0.94rem;
  line-height: 1.55;
}

.apothecary-site .path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.apothecary-site .path-card {
  position: relative;
  min-height: 116px;
  padding: 0.9rem 1rem 0.95rem;
  border-radius: 7px;
  border-color: rgba(84, 55, 34, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 235, 0.94));
  box-shadow: none;
}

.apothecary-site .path-card::after {
  content: ">";
  position: absolute;
  right: 0.95rem;
  bottom: 0.78rem;
  color: #8b2d22;
  font-weight: 900;
  transition: transform 180ms ease;
}

.apothecary-site .path-card h3 {
  max-width: 31ch;
  font-size: 0.94rem;
  line-height: 1.45;
}

.apothecary-site .path-card:hover::after,
.apothecary-site .path-card:focus-visible::after {
  transform: translateX(3px);
}

.apothecary-site .content-section#topics {
  margin-top: clamp(1.6rem, 3.5vw, 3.2rem);
  padding-top: clamp(2.45rem, 4.4vw, 4.4rem);
  padding-bottom: clamp(2.8rem, 5vw, 5rem);
  background:
    repeating-linear-gradient(90deg, rgba(84, 55, 34, 0.038) 0 1px, transparent 1px 32px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(243, 227, 195, 0.88) 52%, rgba(255, 250, 242, 0.98));
}

.apothecary-site #topics .content-narrow {
  max-width: 1240px;
}

.apothecary-site #topics .section-intro {
  max-width: 58ch;
  font-size: 0.95rem;
  line-height: 1.62;
}

.apothecary-site .topic-grid {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.18fr);
  grid-auto-rows: minmax(122px, auto);
  gap: 0.82rem;
  margin-top: 1.05rem;
}

.apothecary-site .topic-card,
.apothecary-site .topic-card[href] {
  border-radius: 8px;
  border-color: rgba(84, 55, 34, 0.15);
  box-shadow: 0 12px 28px rgba(73, 48, 31, 0.1);
}

.apothecary-site .topic-card:nth-child(1) {
  grid-column: 1;
  grid-row: span 6;
  min-height: 100%;
}

.apothecary-site .topic-card:nth-child(1) h3 {
  max-width: 20ch;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.apothecary-site .topic-card:nth-child(1) p {
  max-width: 42ch;
}

.apothecary-site .topic-card:not(:nth-child(1)),
.apothecary-site .topic-card[href]:not(:nth-child(1)),
.apothecary-site .topic-card:nth-child(7) {
  grid-column: 2;
  grid-row: auto;
  min-height: 122px;
  padding: 0.72rem;
  display: grid;
  grid-template-columns: minmax(118px, 138px) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 0.85rem;
  align-items: start;
  background: rgba(255, 251, 244, 0.98);
  color: #21170f;
}

.apothecary-site .topic-card:not(:nth-child(1))::before,
.apothecary-site .topic-card:nth-child(7)::before {
  display: none;
}

.apothecary-site .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site .topic-card:nth-child(7) .topic-thumb {
  position: static;
  inset: auto;
  z-index: auto;
  grid-column: 1;
  grid-row: 1 / span 4;
  width: 100%;
  height: 100%;
  min-height: 108px;
  margin: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(84, 55, 34, 0.12);
  border-radius: 6px;
}

.apothecary-site .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site .topic-card:not(:nth-child(1)) h3,
.apothecary-site .topic-card:not(:nth-child(1)) p,
.apothecary-site .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site .topic-card:nth-child(7) .topic-label,
.apothecary-site .topic-card:nth-child(7) h3,
.apothecary-site .topic-card:nth-child(7) p,
.apothecary-site .topic-card:nth-child(7) .card-link {
  position: static;
  z-index: auto;
  grid-column: 2;
  margin-left: 0;
  margin-right: 0;
}

.apothecary-site .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site .topic-card:nth-child(7) .topic-label {
  margin-top: 0.02rem;
  margin-bottom: 0.34rem;
  padding: 0.15rem 0.36rem;
  color: #0f5d50;
  background: rgba(15, 93, 80, 0.08);
}

.apothecary-site .topic-card:not(:nth-child(1)) h3,
.apothecary-site .topic-card:nth-child(7) h3 {
  max-width: none;
  color: #21170f;
  font-size: clamp(0.96rem, 1.05vw, 1.06rem);
  line-height: 1.28;
}

.apothecary-site .topic-card:not(:nth-child(1)) p,
.apothecary-site .topic-card:nth-child(7) p {
  margin-top: 0.36rem;
  color: rgba(36, 27, 19, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.apothecary-site .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site .topic-card:nth-child(7) .card-link {
  width: 100%;
  min-height: 36px;
  margin-top: 0.36rem;
  padding: 0.42rem 0 0;
  align-self: end;
  color: #7a3b16;
  border-top: 1px solid rgba(84, 55, 34, 0.11);
}

.apothecary-site .topic-card:hover,
.apothecary-site .topic-card:focus-visible,
.apothecary-site .path-card:hover,
.apothecary-site .path-card:focus-visible {
  border-color: rgba(139, 45, 34, 0.38);
  box-shadow: 0 18px 38px rgba(73, 48, 31, 0.15);
}

.apothecary-site .topic-card:focus-visible,
.apothecary-site .path-card:focus-visible,
.apothecary-site .primary-link:focus-visible,
.apothecary-site .secondary-link:focus-visible {
  outline: 3px solid rgba(240, 201, 120, 0.78);
  outline-offset: 3px;
}

.apothecary-site .feature-band {
  border-top: 1px solid rgba(255, 244, 223, 0.12);
  border-bottom: 1px solid rgba(255, 244, 223, 0.12);
}

@media (max-width: 1040px) {
  .apothecary-site .hero-section {
    grid-template-columns: 1fr;
  }

  .apothecary-site .hero-media {
    width: min(100%, 680px);
    aspect-ratio: 16 / 10;
  }

  .apothecary-site .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .apothecary-site .topic-card:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
    min-height: 330px;
  }

  .apothecary-site .topic-card:not(:nth-child(1)),
  .apothecary-site .topic-card[href]:not(:nth-child(1)),
  .apothecary-site .topic-card:nth-child(7) {
    grid-column: auto;
    grid-template-columns: 124px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body.apothecary-site {
    background:
      repeating-linear-gradient(90deg, rgba(49, 34, 22, 0.042) 0 1px, transparent 1px 30px),
      linear-gradient(180deg, #111a16 0, #173d35 25rem, #f1dfbf 25.05rem, #fff9ef 100%);
  }

  .apothecary-site .hero-section {
    padding: 1.45rem;
    border-radius: 0;
  }

  .apothecary-site .hero-section h1 {
    max-width: 10ch;
    font-size: clamp(2.18rem, 11vw, 3.15rem);
  }

  .apothecary-site .intent-panel {
    border-radius: 0;
  }

  .apothecary-site .intent-panel .section-heading {
    align-items: start;
  }

  .apothecary-site .path-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .path-card {
    min-height: 98px;
  }

  .apothecary-site .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site .topic-card:nth-child(1),
  .apothecary-site .topic-card:not(:nth-child(1)),
  .apothecary-site .topic-card[href]:not(:nth-child(1)),
  .apothecary-site .topic-card:nth-child(7) {
    grid-column: auto;
  }

  .apothecary-site .topic-card:nth-child(1) {
    min-height: 310px;
  }

  .apothecary-site .topic-card:not(:nth-child(1)),
  .apothecary-site .topic-card[href]:not(:nth-child(1)),
  .apothecary-site .topic-card:nth-child(7) {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
    padding: 0.62rem;
    column-gap: 0.72rem;
  }

  .apothecary-site .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site .topic-card:nth-child(7) .topic-thumb {
    min-height: 96px;
  }

  .apothecary-site .topic-card:not(:nth-child(1)) p,
  .apothecary-site .topic-card:nth-child(7) p {
    font-size: 0.84rem;
  }
}

@media (max-width: 460px) {
  .apothecary-site .topic-card:not(:nth-child(1)),
  .apothecary-site .topic-card[href]:not(:nth-child(1)),
  .apothecary-site .topic-card:nth-child(7) {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .apothecary-site .topic-card:not(:nth-child(1)) p,
  .apothecary-site .topic-card:nth-child(7) p {
    display: none;
  }
}

/* Home magazine reinforcement: make the index feel like an editorial dossier. */
body.apothecary-site.home-page {
  background:
    linear-gradient(90deg, rgba(67, 43, 25, 0.045) 0 1px, transparent 1px 86px),
    linear-gradient(0deg, rgba(67, 43, 25, 0.032) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 248, 232, 0.035) 18px 19px, transparent 19px 37px),
    linear-gradient(180deg, #0e1713 0, #143a32 26rem, #e8d4aa 26.05rem, #fff8ec 64%, #f4e5c9 100%);
}

.apothecary-site.home-page .site-header {
  border-bottom-color: rgba(239, 205, 139, 0.18);
  background: rgba(13, 22, 18, 0.86);
  box-shadow: 0 12px 30px rgba(14, 8, 5, 0.16);
}

.apothecary-site.home-page .nav {
  max-width: 1240px;
}

.apothecary-site.home-page .hero-section {
  max-width: 1240px;
  min-height: min(690px, calc(100vh - 92px));
  padding: clamp(2rem, 4.4vw, 4.8rem);
  border: 1px solid rgba(239, 205, 139, 0.22);
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.09) 0 1px, transparent 1px 64px),
    linear-gradient(0deg, rgba(239, 205, 139, 0.07) 0 1px, transparent 1px 64px),
    linear-gradient(135deg, #0e1713 0%, #173f36 54%, #69281f 100%);
  box-shadow: 0 34px 86px rgba(18, 9, 7, 0.33);
}

.apothecary-site.home-page .hero-section::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 0;
  border: 1px solid rgba(255, 248, 232, 0.12);
  pointer-events: none;
}

.apothecary-site.home-page .hero-copy,
.apothecary-site.home-page .hero-media {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 10ch;
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-copy .intro {
  max-width: 55ch;
  color: rgba(255, 248, 232, 0.82);
}

.apothecary-site.home-page .hero-media {
  padding: 0.48rem;
  border: 1px solid rgba(239, 205, 139, 0.24);
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.16), rgba(255, 248, 232, 0.05));
}

.apothecary-site.home-page .hero-media img {
  border-radius: 6px;
}

.apothecary-site.home-page .intent-panel {
  border-color: rgba(96, 60, 35, 0.18);
  background:
    linear-gradient(90deg, rgba(15, 93, 80, 0.11), transparent 48%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(244, 231, 204, 0.94));
}

.apothecary-site.home-page .path-card {
  min-height: 104px;
  padding: 0.86rem 1rem 0.9rem;
  background:
    linear-gradient(90deg, rgba(139, 45, 34, 0.09) 0 4px, transparent 4px),
    rgba(255, 251, 244, 0.94);
}

.apothecary-site.home-page .path-card:hover,
.apothecary-site.home-page .path-card:focus-visible {
  transform: translateY(-2px);
}

.apothecary-site.home-page .content-section#topics {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(67, 43, 25, 0.05) 0 1px, transparent 1px 76px),
    linear-gradient(0deg, rgba(67, 43, 25, 0.038) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(234, 214, 174, 0.93) 48%, rgba(255, 249, 239, 0.98));
}

.apothecary-site.home-page #topics .content-narrow {
  position: relative;
}

.apothecary-site.home-page #topics .content-narrow::before {
  content: "";
  position: absolute;
  inset: -1.15rem -1.3rem auto;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #173f36, #d1a551 45%, #8b2d22);
  opacity: 0.86;
}

.apothecary-site.home-page #topics h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
  line-height: 1;
}

.apothecary-site.home-page #topics .section-intro {
  margin-top: 0.65rem;
  color: rgba(36, 27, 19, 0.68);
}

.apothecary-site.home-page .topic-grid {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  grid-auto-rows: minmax(116px, auto);
  gap: 0.74rem;
  align-items: stretch;
}

.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .topic-card[href] {
  border: 1px solid rgba(87, 55, 31, 0.17);
  background: rgba(255, 251, 244, 0.97);
  box-shadow: 0 14px 34px rgba(65, 42, 24, 0.11);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  position: relative;
  min-height: 100%;
  padding: clamp(1.05rem, 2.1vw, 1.45rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #111713;
  color: #fff8e8;
}

.apothecary-site.home-page .topic-card:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(14, 23, 19, 0.04) 0%, rgba(14, 23, 19, 0.24) 42%, rgba(14, 23, 19, 0.91) 100%),
    linear-gradient(90deg, rgba(105, 40, 31, 0.24), transparent 48%);
}

.apothecary-site.home-page .topic-card:nth-child(1)::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  z-index: 2;
  border: 1px solid rgba(255, 248, 232, 0.22);
  pointer-events: none;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(1) h3,
.apothecary-site.home-page .topic-card:nth-child(1) p,
.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  position: relative;
  z-index: 3;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label {
  width: fit-content;
  color: #fff8e8;
  background: rgba(139, 45, 34, 0.72);
  border: 1px solid rgba(255, 248, 232, 0.28);
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 19ch;
  color: #fff8e8;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.apothecary-site.home-page .topic-card:nth-child(1) p {
  color: rgba(255, 248, 232, 0.78);
}

.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  color: #f0c978;
  border-top-color: rgba(255, 248, 232, 0.22);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  position: relative;
  min-height: 116px;
  padding: 0.64rem;
  grid-template-columns: minmax(104px, 126px) minmax(0, 1fr);
  column-gap: 0.74rem;
  background:
    linear-gradient(90deg, rgba(15, 93, 80, 0.12) 0 5px, transparent 5px),
    rgba(255, 251, 244, 0.98);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1))::before,
.apothecary-site.home-page .topic-card:nth-child(7)::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(209, 165, 81, 0.12), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  min-height: 100px;
  aspect-ratio: 1 / 1;
  border-color: rgba(87, 55, 31, 0.14);
  background: #e7d0a2;
  overflow: hidden;
}

.apothecary-site.home-page .topic-thumb img {
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  width: fit-content;
  color: #134f45;
  border: 1px solid rgba(15, 93, 80, 0.12);
  background: rgba(15, 93, 80, 0.08);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  font-size: clamp(0.95rem, 1vw, 1.03rem);
  line-height: 1.24;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  margin-top: 0.26rem;
  font-size: 0.84rem;
  line-height: 1.36;
}

.apothecary-site.home-page .topic-card .card-link {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.apothecary-site.home-page .topic-card .card-link::after {
  content: " >";
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(139, 45, 34, 0.42);
  box-shadow: 0 22px 46px rgba(65, 42, 24, 0.17);
}

.apothecary-site.home-page .topic-card:hover::before,
.apothecary-site.home-page .topic-card:focus-visible::before {
  opacity: 1;
}

.apothecary-site.home-page .topic-card:hover .topic-thumb img,
.apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
  transform: scale(1.055);
}

.apothecary-site.home-page .feature-band {
  padding-block: clamp(1.7rem, 3.4vw, 3.1rem);
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.08) 0 1px, transparent 1px 70px),
    linear-gradient(180deg, #11231e, #173d35);
}

.apothecary-site.home-page .feature-band .content-narrow {
  max-width: 1080px;
}

.apothecary-site.home-page .method-list {
  gap: 0.62rem;
}

.apothecary-site.home-page .method-list > div {
  padding: 0.78rem 0.9rem;
  border-color: rgba(255, 248, 232, 0.14);
  background: rgba(255, 248, 232, 0.065);
}

.apothecary-site.home-page #standards {
  padding-top: clamp(1.8rem, 3.2vw, 3rem);
  padding-bottom: clamp(2rem, 3.8vw, 3.4rem);
  background:
    linear-gradient(90deg, rgba(67, 43, 25, 0.035) 0 1px, transparent 1px 82px),
    linear-gradient(180deg, #fff8ec, #f2dfbb);
}

.apothecary-site.home-page .standards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.apothecary-site.home-page .standards-grid article {
  min-height: 0;
  padding: 0.88rem;
  border-color: rgba(87, 55, 31, 0.14);
  background: rgba(255, 251, 244, 0.86);
  box-shadow: none;
}

.apothecary-site.home-page .standards-grid h3 {
  font-size: 0.96rem;
}

.apothecary-site.home-page .standards-grid p {
  font-size: 0.84rem;
  line-height: 1.46;
}

.apothecary-site.home-page #faq {
  padding-top: clamp(1.6rem, 3vw, 2.6rem);
}

.apothecary-site.home-page .site-footer {
  border-top-color: rgba(239, 205, 139, 0.16);
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.055) 0 1px, transparent 1px 68px),
    #0e1713;
}

@media (max-width: 1040px) {
  .apothecary-site.home-page .hero-section {
    min-height: 0;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1),
  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 430px;
  }

  .apothecary-site.home-page .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(67, 43, 25, 0.045) 0 1px, transparent 1px 48px),
      linear-gradient(0deg, rgba(67, 43, 25, 0.032) 0 1px, transparent 1px 48px),
      linear-gradient(180deg, #0e1713 0, #143a32 22rem, #e8d4aa 22.05rem, #fff8ec 100%);
  }

  .apothecary-site.home-page .hero-section::after {
    inset: 0.62rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 11ch;
    font-size: clamp(2.08rem, 10vw, 3.05rem);
  }

  .apothecary-site.home-page #topics .content-narrow::before {
    inset-inline: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 340px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 94px minmax(0, 1fr);
    min-height: 108px;
    column-gap: 0.68rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    min-height: 92px;
  }

  .apothecary-site.home-page .standards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
    margin-bottom: 0.22rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.9rem;
  }
}

/* Home reader board reinforcement: question-led magazine index. */
.apothecary-site.home-page .hero-section h1 {
  font-size: 4.05rem;
  line-height: 0.98;
}

.apothecary-site.home-page .reader-board {
  position: relative;
  max-width: 1240px;
  margin: clamp(1.1rem, 2.4vw, 2rem) auto 0;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: 0.78rem;
  overflow: hidden;
  border: 1px solid rgba(239, 205, 139, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, #10221d 0%, #173d35 62%, #10231f 100%);
  box-shadow: 0 24px 58px rgba(23, 20, 18, 0.22);
  color: #fff8e8;
}

.apothecary-site.home-page .reader-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(240, 201, 120, 0.64);
  pointer-events: none;
}

.apothecary-site.home-page .reader-board-copy {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 248, 232, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.06);
}

.apothecary-site.home-page .reader-board .eyebrow {
  color: #f0c978;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 13ch;
  color: #fff8e8;
  font-size: 2rem;
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  max-width: 35ch;
  margin: 0.7rem 0 0;
  color: rgba(255, 248, 232, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.apothecary-site.home-page .question-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.apothecary-site.home-page .question-card {
  position: relative;
  min-height: 142px;
  padding: 0.86rem 0.92rem 0.82rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 120, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(139, 45, 34, 0.1) 0 4px, transparent 4px),
    rgba(255, 251, 244, 0.96);
  color: #171412;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(5, 16, 14, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  touch-action: manipulation;
}

.apothecary-site.home-page .question-card span {
  color: #74231d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .question-card h3 {
  margin-top: 0.34rem;
  color: #211915;
  font-size: 1.02rem;
  line-height: 1.25;
}

.apothecary-site.home-page .question-card p {
  margin: 0.42rem 0 0;
  color: #605449;
  font-size: 0.84rem;
  line-height: 1.42;
}

.apothecary-site.home-page .question-card::after {
  content: "Read answer";
  width: fit-content;
  margin-top: auto;
  padding-top: 0.5rem;
  color: #0a3f3b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 120, 0.68);
  box-shadow: 0 18px 38px rgba(5, 16, 14, 0.28);
  outline: none;
}

.apothecary-site.home-page .path-card h3 {
  font-size: 1rem;
  line-height: 1.34;
}

.apothecary-site.home-page .path-card small {
  display: block;
  margin-top: 0.68rem;
  padding-top: 0.56rem;
  border-top: 1px solid rgba(15, 95, 86, 0.16);
  color: #0a3f3b;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
}

.apothecary-site.home-page #topics h2 {
  font-size: 2.05rem;
}

.apothecary-site.home-page .topic-card[href]::after {
  content: none;
  display: none;
}

.apothecary-site.home-page .topic-meta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin: 0.52rem 0 0.7rem;
}

.apothecary-site.home-page .topic-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.18rem 0.46rem;
  border: 1px solid rgba(15, 95, 86, 0.14);
  border-radius: 999px;
  background: rgba(15, 95, 86, 0.08);
  color: #0a3f3b;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta {
  max-width: 24rem;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta span {
  border-color: rgba(255, 248, 232, 0.24);
  background: rgba(255, 248, 232, 0.12);
  color: #fff8e8;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  display: grid;
  align-items: start;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  grid-row: 1 / span 5;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) h3,
.apothecary-site.home-page .topic-card:nth-child(7) p,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  grid-column: 2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  margin: 0.36rem 0 0.48rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span {
  min-height: 1.34rem;
  padding: 0.14rem 0.38rem;
  font-size: 0.69rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  margin-top: 0;
  padding-top: 0.38rem;
  border-top: 1px solid rgba(87, 55, 31, 0.1);
}

@media (max-width: 1040px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 3.35rem;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board-copy {
    min-height: 0;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.45rem;
  }

  .apothecary-site.home-page .reader-board {
    margin-top: 0.9rem;
    padding: 0.76rem;
    border-radius: 0;
  }

  .apothecary-site.home-page .reader-board-copy {
    padding: 0.88rem;
  }

  .apothecary-site.home-page .reader-board h2 {
    font-size: 1.55rem;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
  }

  .apothecary-site.home-page #topics h2 {
    font-size: 1.58rem;
  }

  .apothecary-site.home-page .topic-meta {
    gap: 0.22rem;
  }
}

@media (max-width: 460px) {
  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .question-card,
  .apothecary-site.home-page .path-card,
  .apothecary-site.home-page .topic-card,
  .apothecary-site.home-page .topic-thumb img {
    transition: none;
  }

  .apothecary-site.home-page .question-card:hover,
  .apothecary-site.home-page .question-card:focus-visible,
  .apothecary-site.home-page .path-card:hover,
  .apothecary-site.home-page .path-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover,
  .apothecary-site.home-page .topic-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover .topic-thumb img,
  .apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
    transform: none;
  }
}


/* Home cover boost v12: click-focused homepage layer. */
body.apothecary-site.home-page {
  color: #17231f;
  background:
    linear-gradient(90deg, rgba(8, 35, 33, 0.96) 0 64px, transparent 64px),
    linear-gradient(180deg, #071615 0, #102f2d 520px, #f7efe2 520px, #f7efe2 100%);
  letter-spacing: 0;
}

.apothecary-site.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(227, 188, 119, 0.22);
  background: rgba(7, 22, 21, 0.94);
  backdrop-filter: blur(14px);
}

.apothecary-site.home-page .nav {
  max-width: 1180px;
  min-height: 64px;
  padding: 0.58rem 1rem;
}

.apothecary-site.home-page .brand {
  color: #fff7e9;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 188, 119, 0.56);
  color: #081614;
  background: #e3bc77;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.apothecary-site.home-page .nav-links {
  gap: 0.2rem;
}

.apothecary-site.home-page .nav-links a {
  min-height: 36px;
  padding: 0 0.72rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 247, 233, 0.84);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .nav-links a:hover,
.apothecary-site.home-page .nav-links a:focus-visible {
  border-color: rgba(227, 188, 119, 0.34);
  color: #fff7e9;
  background: rgba(255, 247, 233, 0.08);
}

.apothecary-site.home-page .hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-content: end;
  justify-content: start;
  width: 100%;
  max-width: none;
  min-height: 560px;
  margin: 0;
  padding: 4.1rem max(1rem, calc((100vw - 1180px) / 2)) 1.35rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #fff8eb;
  background: #071615;
  box-shadow: none;
}

.apothecary-site.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 21, 0.96) 0%, rgba(7, 22, 21, 0.78) 34%, rgba(7, 22, 21, 0.24) 68%, rgba(7, 22, 21, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 22, 21, 0.16) 0%, rgba(7, 22, 21, 0.2) 55%, rgba(7, 22, 21, 0.92) 100%);
  pointer-events: none;
}

.apothecary-site.home-page .hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 6px;
  background: linear-gradient(90deg, #8f3328, #e3bc77, #1c5d55);
}

.apothecary-site.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #071615;
  box-shadow: none;
}

.apothecary-site.home-page .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
  transform: none;
}

.apothecary-site.home-page .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.apothecary-site.home-page .eyebrow {
  color: #b95a47;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .hero-section .eyebrow,
.apothecary-site.home-page .reader-board .eyebrow {
  color: #e3bc77;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 620px;
  margin: 0.4rem 0 0;
  color: #fff7e9;
  font-size: 3.18rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.apothecary-site.home-page .intro {
  max-width: 560px;
  margin-top: 0.82rem;
  color: rgba(255, 247, 233, 0.88);
  font-size: 1.01rem;
  line-height: 1.62;
}

.apothecary-site.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.64rem;
  margin-top: 1.15rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 0.98rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.apothecary-site.home-page .primary-link {
  border: 1px solid rgba(255, 247, 233, 0.18);
  color: #081614;
  background: #e3bc77;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.apothecary-site.home-page .secondary-link {
  border: 1px solid rgba(255, 247, 233, 0.26);
  color: #fff7e9;
  background: rgba(255, 247, 233, 0.09);
}

.apothecary-site.home-page .primary-link:hover,
.apothecary-site.home-page .primary-link:focus-visible,
.apothecary-site.home-page .secondary-link:hover,
.apothecary-site.home-page .secondary-link:focus-visible {
  transform: translateY(-1px);
}

.apothecary-site.home-page .hero-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  width: min(920px, 100%);
  margin-top: 1.08rem;
}

.apothecary-site.home-page .hero-picks a {
  display: grid;
  gap: 0.28rem;
  min-height: 92px;
  padding: 0.78rem;
  border: 1px solid rgba(255, 247, 233, 0.16);
  border-radius: 8px;
  color: #fff7e9;
  background: rgba(7, 22, 21, 0.58);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.apothecary-site.home-page .hero-picks a:hover,
.apothecary-site.home-page .hero-picks a:focus-visible {
  border-color: rgba(227, 188, 119, 0.58);
  background: rgba(21, 58, 53, 0.74);
  transform: translateY(-2px);
}

.apothecary-site.home-page .hero-picks span {
  color: #e3bc77;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .hero-picks strong {
  color: #fff7e9;
  font-size: 0.91rem;
  line-height: 1.28;
}

.apothecary-site.home-page .reader-board {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.45rem max(1rem, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0;
  color: #fff7e9;
  background:
    linear-gradient(90deg, rgba(227, 188, 119, 0.18) 0 5px, transparent 5px),
    linear-gradient(135deg, #071615, #123f39 58%, #71291f);
  box-shadow: none;
}

.apothecary-site.home-page .reader-board-copy {
  align-self: center;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 360px;
  margin-top: 0.34rem;
  color: #fff7e9;
  font-size: 1.72rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.apothecary-site.home-page .reader-board p {
  max-width: 420px;
  color: rgba(255, 247, 233, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.apothecary-site.home-page .question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.64rem;
}

.apothecary-site.home-page .question-card {
  display: grid;
  align-content: start;
  min-height: 172px;
  padding: 0.82rem;
  border: 1px solid rgba(255, 247, 233, 0.14);
  border-radius: 8px;
  color: #fff7e9;
  background: rgba(255, 247, 233, 0.07);
  text-decoration: none;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible {
  border-color: rgba(227, 188, 119, 0.58);
  background: rgba(255, 247, 233, 0.12);
  transform: translateY(-2px);
}

.apothecary-site.home-page .question-card span {
  color: #e3bc77;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .question-card h3 {
  margin-top: 0.42rem;
  color: #fff7e9;
  font-size: 0.98rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card p {
  margin-top: 0.45rem;
  color: rgba(255, 247, 233, 0.72);
  font-size: 0.8rem;
  line-height: 1.48;
}

.apothecary-site.home-page .intent-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.35rem max(1rem, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0;
  background: #f6eddd;
  box-shadow: none;
}

.apothecary-site.home-page .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto 0.75rem;
}

.apothecary-site.home-page .section-heading h2,
.apothecary-site.home-page #topics h2,
.apothecary-site.home-page .feature-band h2,
.apothecary-site.home-page #standards h2,
.apothecary-site.home-page #faq h2 {
  color: #17231f;
  font-size: 1.72rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.apothecary-site.home-page .section-heading > p,
.apothecary-site.home-page .section-intro {
  max-width: 480px;
  color: #5f5b50;
  font-size: 0.9rem;
  line-height: 1.55;
}

.apothecary-site.home-page .path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
  max-width: 1180px;
  margin: 0 auto;
}

.apothecary-site.home-page .path-card {
  display: grid;
  gap: 0.4rem;
  min-height: 140px;
  padding: 0.9rem;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: 8px;
  color: #17231f;
  background: #fff9ef;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(76, 54, 28, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.apothecary-site.home-page .path-card:hover,
.apothecary-site.home-page .path-card:focus-visible {
  border-color: rgba(143, 51, 40, 0.38);
  box-shadow: 0 18px 34px rgba(76, 54, 28, 0.13);
  transform: translateY(-2px);
}

.apothecary-site.home-page .path-card span {
  color: #8f3328;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .path-card h3 {
  color: #17231f;
  font-size: 0.98rem;
  line-height: 1.34;
  letter-spacing: 0;
}

.apothecary-site.home-page .path-card small {
  align-self: end;
  color: #5d6f68;
  font-size: 0.78rem;
}

.apothecary-site.home-page #topics {
  width: 100%;
  padding: 1.55rem max(1rem, calc((100vw - 1180px) / 2)) 1.7rem;
  background:
    linear-gradient(90deg, rgba(143, 51, 40, 0.08) 0 1px, transparent 1px 32px),
    #fff8ec;
}

.apothecary-site.home-page #topics .content-narrow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.apothecary-site.home-page .topic-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  grid-auto-rows: minmax(104px, auto);
  gap: 0.68rem;
  margin-top: 0.95rem;
}

.apothecary-site.home-page .topic-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: 8px;
  color: #17231f;
  background: #fffdf7;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(80, 56, 31, 0.09);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible {
  border-color: rgba(143, 51, 40, 0.42);
  box-shadow: 0 20px 38px rgba(80, 56, 31, 0.15);
  transform: translateY(-2px);
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  display: flex;
  grid-column: 1;
  grid-row: span 6;
  flex-direction: column;
  min-height: 636px;
  padding: 0;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  display: grid;
  grid-column: 2;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 0 0.72rem;
  min-height: 104px;
  padding: 0.52rem;
}

.apothecary-site.home-page .topic-card .topic-thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #112f2c;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
  width: 100%;
  height: 350px;
  min-height: 350px;
  border-radius: 0;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  grid-column: 1;
  grid-row: 1 / span 5;
  width: 104px;
  height: 100%;
  min-height: 92px;
  border-radius: 6px;
}

.apothecary-site.home-page .topic-card .topic-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 200ms ease;
}

.apothecary-site.home-page .topic-card:hover .topic-thumb img,
.apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
  transform: scale(1.035);
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(1) h3,
.apothecary-site.home-page .topic-card:nth-child(1) p,
.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  margin-right: 1rem;
  margin-left: 1rem;
}

.apothecary-site.home-page .topic-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.15rem;
  color: #8f3328;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label {
  margin-top: 0.96rem;
}

.apothecary-site.home-page .topic-card h3 {
  min-width: 0;
  margin-top: 0.18rem;
  color: #17231f;
  font-size: 0.98rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  margin-top: 0.35rem;
  font-size: 1.42rem;
  line-height: 1.12;
}

.apothecary-site.home-page .topic-card p {
  margin-top: 0.28rem;
  color: #5f5b50;
  font-size: 0.82rem;
  line-height: 1.42;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.apothecary-site.home-page .topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.52rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  display: flex;
  gap: 0.28rem;
  margin-top: 0.34rem;
  overflow: hidden;
}

.apothecary-site.home-page .topic-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.48rem;
  border: 1px solid rgba(28, 93, 85, 0.18);
  border-radius: 999px;
  color: #1c5d55;
  background: rgba(28, 93, 85, 0.08);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span:nth-child(n+3),
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span:nth-child(n+3) {
  display: none;
}

.apothecary-site.home-page .topic-card .card-link {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 30px;
  margin-top: 0.5rem;
  padding: 0 0.68rem;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: 999px;
  color: #fff8ec;
  background: #143f39;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  min-height: 26px;
  margin-top: 0.36rem;
  padding: 0 0.58rem;
  font-size: 0.68rem;
}

.apothecary-site.home-page .feature-band {
  width: 100%;
  margin: 0;
  padding: 1.55rem max(1rem, calc((100vw - 1180px) / 2));
  border: 0;
  background:
    linear-gradient(90deg, rgba(227, 188, 119, 0.2) 0 5px, transparent 5px),
    #102f2d;
}

.apothecary-site.home-page .feature-band .content-narrow,
.apothecary-site.home-page #standards .content-narrow,
.apothecary-site.home-page #faq .content-narrow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.apothecary-site.home-page .feature-band h2,
.apothecary-site.home-page .feature-band p {
  color: #fff7e9;
}

.apothecary-site.home-page .feature-band p {
  color: rgba(255, 247, 233, 0.74);
  font-size: 0.9rem;
  line-height: 1.58;
}

.apothecary-site.home-page .split-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
}

.apothecary-site.home-page .method-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.apothecary-site.home-page .method-list > div {
  border: 1px solid rgba(255, 247, 233, 0.14);
  border-radius: 8px;
  background: rgba(255, 247, 233, 0.07);
}

.apothecary-site.home-page .method-list strong {
  color: #e3bc77;
}

.apothecary-site.home-page .method-list span {
  color: rgba(255, 247, 233, 0.76);
}

.apothecary-site.home-page #standards,
.apothecary-site.home-page #faq {
  padding: 1.5rem max(1rem, calc((100vw - 1180px) / 2));
  background: #f6eddd;
}

.apothecary-site.home-page .standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
  margin-top: 0.9rem;
}

.apothecary-site.home-page .standards-grid article,
.apothecary-site.home-page details {
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: 8px;
  background: #fff9ef;
  box-shadow: none;
}

.apothecary-site.home-page .standards-grid h3 {
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.apothecary-site.home-page .standards-grid p,
.apothecary-site.home-page details p {
  color: #5f5b50;
  font-size: 0.86rem;
  line-height: 1.55;
}

.apothecary-site.home-page .site-footer {
  border-top: 1px solid rgba(227, 188, 119, 0.22);
  color: rgba(255, 247, 233, 0.78);
  background: #071615;
}

.apothecary-site.home-page .site-footer strong,
.apothecary-site.home-page .site-footer a {
  color: #fff7e9;
}

.apothecary-site.home-page a:focus-visible {
  outline: 3px solid rgba(227, 188, 119, 0.92);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(180deg, #071615 0, #102f2d 460px, #f7efe2 460px, #f7efe2 100%);
  }

  .apothecary-site.home-page .nav {
    min-height: 58px;
  }

  .apothecary-site.home-page .nav-links {
    display: none;
  }

  .apothecary-site.home-page .hero-section {
    min-height: 520px;
    padding-top: 3rem;
  }

  .apothecary-site.home-page .hero-section::before {
    background:
      linear-gradient(90deg, rgba(7, 22, 21, 0.94) 0%, rgba(7, 22, 21, 0.72) 55%, rgba(7, 22, 21, 0.34) 100%),
      linear-gradient(180deg, rgba(7, 22, 21, 0.08) 0%, rgba(7, 22, 21, 0.18) 52%, rgba(7, 22, 21, 0.94) 100%);
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.55rem;
  }

  .apothecary-site.home-page .hero-picks,
  .apothecary-site.home-page .path-grid,
  .apothecary-site.home-page .topic-grid,
  .apothecary-site.home-page .split-layout,
  .apothecary-site.home-page .method-list {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .apothecary-site.home-page .topic-card:nth-child(1),
  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
    height: 270px;
    min-height: 270px;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(180deg, #071615 0, #102f2d 420px, #f7efe2 420px, #f7efe2 100%);
  }

  .apothecary-site.home-page .brand span:last-child {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .apothecary-site.home-page .hero-section {
    min-height: 500px;
    padding: 2.35rem 1rem 1rem;
  }

  .apothecary-site.home-page .hero-media img {
    object-position: 57% center;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 340px;
    font-size: 2.04rem;
    line-height: 1.02;
  }

  .apothecary-site.home-page .intro {
    max-width: 340px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .apothecary-site.home-page .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 340px;
  }

  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link {
    width: 100%;
    min-height: 40px;
    font-size: 0.8rem;
  }

  .apothecary-site.home-page .hero-picks {
    gap: 0.46rem;
  }

  .apothecary-site.home-page .hero-picks a {
    min-height: 72px;
    padding: 0.64rem;
  }

  .apothecary-site.home-page .hero-picks strong {
    font-size: 0.82rem;
  }

  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics,
  .apothecary-site.home-page .feature-band,
  .apothecary-site.home-page #standards,
  .apothecary-site.home-page #faq {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .section-heading h2,
  .apothecary-site.home-page #topics h2,
  .apothecary-site.home-page .feature-band h2,
  .apothecary-site.home-page #standards h2,
  .apothecary-site.home-page #faq h2 {
    font-size: 1.38rem;
  }

  .apothecary-site.home-page .question-grid,
  .apothecary-site.home-page .path-grid,
  .apothecary-site.home-page .standards-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
    padding: 0.74rem;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
    height: 220px;
    min-height: 220px;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) h3 {
    font-size: 1.12rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 92px;
    padding: 0.44rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 82px;
    min-height: 82px;
  }

  .apothecary-site.home-page .topic-card h3 {
    font-size: 0.86rem;
  }

  .apothecary-site.home-page .topic-card p {
    font-size: 0.76rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 1.86rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 74px;
    min-height: 74px;
  }

  .apothecary-site.home-page .topic-card .card-link {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link,
  .apothecary-site.home-page .hero-picks a,
  .apothecary-site.home-page .question-card,
  .apothecary-site.home-page .path-card,
  .apothecary-site.home-page .topic-card,
  .apothecary-site.home-page .topic-card .topic-thumb img {
    transition: none;
  }

  .apothecary-site.home-page .primary-link:hover,
  .apothecary-site.home-page .primary-link:focus-visible,
  .apothecary-site.home-page .secondary-link:hover,
  .apothecary-site.home-page .secondary-link:focus-visible,
  .apothecary-site.home-page .hero-picks a:hover,
  .apothecary-site.home-page .hero-picks a:focus-visible,
  .apothecary-site.home-page .question-card:hover,
  .apothecary-site.home-page .question-card:focus-visible,
  .apothecary-site.home-page .path-card:hover,
  .apothecary-site.home-page .path-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover,
  .apothecary-site.home-page .topic-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover .topic-thumb img,
  .apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
    transform: none;
  }
}



/* home-cover-boost-17-final */
body.apothecary-site.home-page {
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.08) 0, rgba(6, 16, 14, 0) 240px),
    linear-gradient(90deg, rgba(185, 139, 49, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 111, 101, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.apothecary-site.home-page .hero-section {
  position: relative;
  margin-top: 0.75rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 191, 0.9);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(6, 16, 14, 0.78) 0%, rgba(18, 63, 55, 0.72) 54%, rgba(141, 51, 39, 0.62) 100%);
  box-shadow: 0 24px 56px rgba(6, 16, 14, 0.16);
}

.apothecary-site.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.08) 0 1px, transparent 1px 58px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.08) 0 1px, transparent 1px 58px);
  opacity: 0.14;
  pointer-events: none;
}

.apothecary-site.home-page .hero-copy,
.apothecary-site.home-page .hero-media {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .hero-section .eyebrow,
.apothecary-site.home-page .hero-section h1,
.apothecary-site.home-page .hero-section .intro {
  color: #fff9ef;
}

.apothecary-site.home-page .hero-section .intro {
  max-width: 58ch;
}

.apothecary-site.home-page .hero-actions {
  margin-top: 1.15rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link,
.apothecary-site.home-page .hero-picks a {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.apothecary-site.home-page .primary-link {
  box-shadow: 0 10px 20px rgba(169, 60, 43, 0.2);
}

.apothecary-site.home-page .secondary-link {
  border: 1px solid rgba(255, 249, 239, 0.24);
  background: rgba(255, 249, 239, 0.1);
  color: #fff9ef;
}

.apothecary-site.home-page .secondary-link:hover,
.apothecary-site.home-page .secondary-link:focus-visible {
  background: rgba(255, 249, 239, 0.18);
  border-color: rgba(255, 249, 239, 0.42);
}

.apothecary-site.home-page .hero-picks {
  margin-top: 1rem;
}

.apothecary-site.home-page .hero-picks a {
  border-color: rgba(255, 249, 239, 0.18);
  background: rgba(255, 249, 239, 0.1);
  color: #fff9ef;
}

.apothecary-site.home-page .hero-picks a span {
  color: #d9ae5f;
}

.apothecary-site.home-page .hero-media {
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: 10px;
  background: rgba(6, 16, 14, 0.26);
  box-shadow: 0 18px 42px rgba(6, 16, 14, 0.24);
}

.apothecary-site.home-page .hero-media img {
  border-radius: 10px;
  object-fit: cover;
}

.apothecary-site.home-page .search-routes {
  width: min(1180px, calc(100% - 2rem));
  margin: 0.95rem auto 1.2rem;
}

.apothecary-site.home-page .search-routes a {
  min-height: 88px;
  border-radius: 10px;
}

.apothecary-site.home-page .search-routes a::before {
  height: 4px;
}

.apothecary-site.home-page .search-routes strong {
  max-width: 26ch;
}

.apothecary-site.home-page .reader-board {
  position: relative;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(30, 111, 101, 0.08) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(243, 221, 180, 0.92));
}

.apothecary-site.home-page .question-grid {
  gap: 0.7rem;
}

.apothecary-site.home-page .question-card {
  position: relative;
  min-height: 164px;
  padding: 0.86rem 0.82rem 0.8rem;
  border-radius: 8px;
}

.apothecary-site.home-page .question-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d9ae5f, #8d3327);
  border-radius: 8px 0 0 8px;
}

.apothecary-site.home-page .question-card::after {
  content: none;
  display: none;
}

.apothecary-site.home-page .question-card span {
  display: inline-block;
  margin-bottom: 0.22rem;
  padding-left: 0.18rem;
  font-size: 0.69rem;
  text-transform: uppercase;
}

.apothecary-site.home-page .question-card h3 {
  padding-left: 0.18rem;
}

.apothecary-site.home-page .question-card p {
  padding-left: 0.18rem;
  margin-top: 0.45rem;
}

.apothecary-site.home-page .question-cta {
  margin-left: 0.18rem;
  border-radius: 999px;
  box-shadow: 0 8px 14px rgba(217, 174, 95, 0.18);
}

.apothecary-site.home-page .question-card:hover .question-cta,
.apothecary-site.home-page .question-card:focus-visible .question-cta {
  transform: translateY(-1px);
}

.apothecary-site.home-page .story-shelf {
  margin-top: 1.1rem;
  border-radius: 10px;
}

.apothecary-site.home-page .shelf-grid {
  gap: 0.8rem;
}

.apothecary-site.home-page .shelf-card,
.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .path-card {
  border-radius: 8px;
}

.apothecary-site.home-page .topic-grid {
  gap: 0.75rem;
}

.apothecary-site.home-page .topic-card {
  border: 1px solid rgba(223, 210, 191, 0.96);
  background: rgba(255, 249, 239, 0.94);
}

.apothecary-site.home-page .topic-card .card-link {
  min-height: 32px;
}

.apothecary-site.home-page .feature-band {
  border-radius: 10px;
}

.apothecary-site.home-page .intent-panel,
.apothecary-site.home-page .content-section,
.apothecary-site.home-page .feature-band {
  box-shadow: 0 16px 34px rgba(33, 29, 31, 0.06);
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 420px);
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .apothecary-site.home-page .search-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .apothecary-site.home-page .hero-section {
    padding: 0.95rem;
    border-radius: 0;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.18rem;
  }

  .apothecary-site.home-page .hero-media {
    width: 100%;
  }

  .apothecary-site.home-page .search-routes,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .story-shelf,
  .apothecary-site.home-page .content-section,
  .apothecary-site.home-page .feature-band {
    width: min(100% - 0.72rem, 1180px);
    border-radius: 0;
  }

  .apothecary-site.home-page .search-routes {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 1.96rem;
  }

  .apothecary-site.home-page .question-cta {
    width: fit-content;
  }
}

/* home-cover-boost-16 */
.apothecary-site.home-page .search-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0.85rem auto 1.05rem;
}

.apothecary-site.home-page .search-routes a {
  position: relative;
  min-height: 82px;
  padding: 0.74rem 0.78rem 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.38);
  border-radius: 8px;
  color: #fff9ef;
  background:
    linear-gradient(135deg, rgba(18, 63, 55, 0.96), rgba(6, 16, 14, 0.92)),
    linear-gradient(90deg, rgba(217, 174, 95, 0.24), transparent);
  box-shadow: 0 12px 26px rgba(6, 16, 14, 0.18);
  text-decoration: none;
}

.apothecary-site.home-page .search-routes a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #d9ae5f, #8d3327, #123f37);
}

.apothecary-site.home-page .search-routes span {
  display: block;
  color: #d9ae5f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .search-routes strong {
  display: block;
  margin-top: 0.32rem;
  color: #fff9ef;
  font-size: 0.92rem;
  line-height: 1.2;
}

.apothecary-site.home-page .search-routes a:hover,
.apothecary-site.home-page .search-routes a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 174, 95, 0.72);
  box-shadow: 0 18px 34px rgba(6, 16, 14, 0.24);
  outline: none;
}

.apothecary-site.home-page .question-card {
  display: flex;
  flex-direction: column;
}

.apothecary-site.home-page .question-card::after {
  content: none;
}

.apothecary-site.home-page .question-cta {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  min-height: 30px;
  margin-top: auto;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(217, 174, 95, 0.42);
  border-radius: 6px;
  color: #111915;
  background: #d9ae5f;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
}

.apothecary-site.home-page .question-card:hover .question-cta,
.apothecary-site.home-page .question-card:focus-visible .question-cta {
  background: #fff9ef;
  border-color: rgba(255, 249, 239, 0.72);
}

@media (max-width: 960px) {
  .apothecary-site.home-page .search-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .apothecary-site.home-page .search-routes {
    grid-template-columns: 1fr;
    width: min(100% - 0.72rem, 1180px);
    margin-top: 0.72rem;
  }

  .apothecary-site.home-page .search-routes a {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .search-routes a {
    transition: none;
  }

  .apothecary-site.home-page .search-routes a:hover,
  .apothecary-site.home-page .search-routes a:focus-visible {
    transform: none;
  }
}

/* home-cover-boost-15 */
.apothecary-site.home-page .story-shelf {
  position: relative;
  max-width: 1180px;
  margin: 1rem auto 0;
  padding: 1rem;
  border: 1px solid rgba(217, 174, 95, 0.32);
  border-radius: 8px;
  color: #fff9ef;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.13) 0 1px, transparent 1px 58px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.08), transparent 42%),
    linear-gradient(135deg, #06100e 0%, #123f37 54%, #8d3327 128%);
  box-shadow: 0 22px 56px rgba(6, 16, 14, 0.24);
}

.apothecary-site.home-page .story-shelf::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #d9ae5f, #fff2cf 48%, #8d3327);
}

.apothecary-site.home-page .shelf-heading {
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.88rem;
}

.apothecary-site.home-page .shelf-heading h2 {
  max-width: 18ch;
  color: #fff9ef;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.apothecary-site.home-page .shelf-heading > p {
  max-width: 50ch;
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.88rem;
  line-height: 1.52;
}

.apothecary-site.home-page .shelf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  grid-template-rows: repeat(2, minmax(178px, auto));
  gap: 0.62rem;
}

.apothecary-site.home-page .shelf-card {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.24);
  border-radius: 8px;
  color: #fff9ef;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.09), rgba(255, 249, 239, 0.035)),
    rgba(6, 16, 14, 0.5);
  box-shadow: 0 14px 30px rgba(6, 16, 14, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .shelf-card-large {
  grid-row: 1 / span 2;
  display: flex;
  min-height: 366px;
}

.apothecary-site.home-page .shelf-card figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #123f37;
}

.apothecary-site.home-page .shelf-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(6, 16, 14, 0.84));
}

.apothecary-site.home-page .shelf-card-large figure {
  position: absolute;
  inset: 0;
}

.apothecary-site.home-page .shelf-card-large figure::after {
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.18), rgba(6, 16, 14, 0.78) 58%, rgba(6, 16, 14, 0.96)),
    linear-gradient(180deg, transparent 34%, rgba(6, 16, 14, 0.86));
}

.apothecary-site.home-page .shelf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.apothecary-site.home-page .shelf-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 0.82rem;
}

.apothecary-site.home-page .shelf-card-large .shelf-card-body {
  width: min(48%, 380px);
  margin-left: auto;
  justify-content: end;
  padding: 1.1rem;
}

.apothecary-site.home-page .shelf-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 0.44rem;
  padding: 0 0.52rem;
  border: 1px solid rgba(217, 174, 95, 0.44);
  border-radius: 999px;
  color: #f3d58d;
  background: rgba(6, 16, 14, 0.52);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .shelf-card h3 {
  margin: 0;
  color: #fff9ef;
  font-size: 1.05rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.apothecary-site.home-page .shelf-card-large h3 {
  font-size: 1.56rem;
  line-height: 1.12;
}

.apothecary-site.home-page .shelf-card p {
  margin: 0.42rem 0 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: 0.78rem;
  line-height: 1.42;
}

.apothecary-site.home-page .shelf-card-large p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.apothecary-site.home-page .shelf-card .card-link {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin-top: auto;
  padding: 0 0.72rem;
  border: 1px solid rgba(217, 174, 95, 0.38);
  border-radius: 999px;
  color: #111915;
  background: #d9ae5f;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .shelf-card:hover,
.apothecary-site.home-page .shelf-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 174, 95, 0.62);
  box-shadow: 0 20px 38px rgba(6, 16, 14, 0.3);
}

.apothecary-site.home-page .shelf-card:hover img,
.apothecary-site.home-page .shelf-card:focus-visible img {
  transform: scale(1.035);
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) {
  grid-column: 2;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 188px;
  padding: 0.62rem;
  column-gap: 0.72rem;
  border-color: rgba(217, 174, 95, 0.34);
  color: #fff9ef;
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.2), rgba(6, 16, 14, 0.9)),
    linear-gradient(135deg, #123f37, #8d3327 120%);
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7)::before {
  background: linear-gradient(90deg, rgba(217, 174, 95, 0.18), transparent 44%);
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-thumb {
  width: 150px;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 7px;
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-label {
  color: #f3d58d;
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) h3 {
  color: #fff9ef;
  font-size: 1.05rem;
  line-height: 1.18;
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) p {
  color: rgba(255, 249, 239, 0.78);
  font-size: 0.78rem;
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-meta span {
  border-color: rgba(217, 174, 95, 0.32);
  color: rgba(255, 249, 239, 0.82);
  background: rgba(6, 16, 14, 0.38);
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-meta span:nth-child(n+3) {
  display: inline-flex;
}

.apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .card-link {
  color: #111915;
  background: #d9ae5f;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .shelf-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .apothecary-site.home-page .shelf-card-large {
    grid-row: auto;
    min-height: 330px;
  }

  .apothecary-site.home-page .shelf-card-large .shelf-card-body {
    width: min(54%, 400px);
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .shelf-heading {
    align-items: start;
  }

  .apothecary-site.home-page .shelf-heading h2 {
    max-width: none;
  }

  .apothecary-site.home-page .shelf-card-large .shelf-card-body {
    width: min(68%, 420px);
  }

  .apothecary-site.home-page .topic-grid .topic-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .apothecary-site.home-page .story-shelf {
    margin-top: 0.7rem;
    padding: 0.86rem;
    border-radius: 0;
  }

  .apothecary-site.home-page .shelf-card,
  .apothecary-site.home-page .shelf-card-large {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 132px;
  }

  .apothecary-site.home-page .shelf-card-large figure {
    position: relative;
    inset: auto;
  }

  .apothecary-site.home-page .shelf-card figure::after,
  .apothecary-site.home-page .shelf-card-large figure::after {
    background: linear-gradient(90deg, transparent 48%, rgba(6, 16, 14, 0.68));
  }

  .apothecary-site.home-page .shelf-card-large .shelf-card-body {
    width: auto;
    margin-left: 0;
    justify-content: start;
    padding: 0.72rem;
  }

  .apothecary-site.home-page .shelf-card h3,
  .apothecary-site.home-page .shelf-card-large h3 {
    font-size: 0.94rem;
    line-height: 1.22;
  }

  .apothecary-site.home-page .shelf-card p,
  .apothecary-site.home-page .shelf-card-large p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.74rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .apothecary-site.home-page .shelf-card .card-link {
    min-height: 30px;
    margin-top: 0.48rem;
  }

  .apothecary-site.home-page .topic-grid .topic-card:nth-child(7) {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 116px;
    padding: 0.48rem;
  }

  .apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-thumb {
    width: 82px;
    min-height: 82px;
    aspect-ratio: 1 / 1;
  }

  .apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-meta {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .shelf-card,
  .apothecary-site.home-page .shelf-card-large {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .apothecary-site.home-page .shelf-kicker {
    min-height: 22px;
    font-size: 0.62rem;
  }

  .apothecary-site.home-page .topic-grid .topic-card:nth-child(7) {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-grid .topic-card:nth-child(7) .topic-thumb {
    width: 72px;
    min-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .shelf-card,
  .apothecary-site.home-page .shelf-card img {
    transition: none;
  }

  .apothecary-site.home-page .shelf-card:hover,
  .apothecary-site.home-page .shelf-card:focus-visible,
  .apothecary-site.home-page .shelf-card:hover img,
  .apothecary-site.home-page .shelf-card:focus-visible img {
    transform: none;
  }
}

/* home-cover-boost-14 */
body.apothecary-site.home-page {
  --v14-ink: #111915;
  --v14-muted: rgba(17, 25, 21, 0.72);
  --v14-night: #06100e;
  --v14-jade: #123f37;
  --v14-blue: #182b3a;
  --v14-cinnabar: #8d3327;
  --v14-gold: #d9ae5f;
  --v14-paper: #fff9ef;
  --v14-paper-deep: #ead0a1;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.12) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(141, 51, 39, 0.035) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #06100e 0, #102b29 430px, #f3dfbb 720px, #fff9ef 100%);
  color: var(--v14-ink);
}

.apothecary-site.home-page .site-header {
  border-bottom: 1px solid rgba(217, 174, 95, 0.26);
  background: rgba(6, 16, 14, 0.9);
  backdrop-filter: blur(14px);
}

.apothecary-site.home-page .nav {
  max-width: 1260px;
}

.apothecary-site.home-page .brand {
  color: #fff9ef;
}

.apothecary-site.home-page .brand-mark {
  border-color: rgba(217, 174, 95, 0.46);
  color: #111915;
  background: #d9ae5f;
}

.apothecary-site.home-page .nav-links a {
  min-height: 44px;
  color: rgba(255, 249, 239, 0.78);
}

.apothecary-site.home-page .nav-links a:hover,
.apothecary-site.home-page .nav-links a:focus-visible {
  color: #fff9ef;
}

.apothecary-site.home-page .hero-section {
  position: relative;
  isolation: isolate;
  align-items: end;
  max-width: 1260px;
  min-height: 620px;
  margin: 1rem auto 1.35rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.32);
  border-radius: 10px;
  background: #06100e;
  box-shadow: 0 30px 70px rgba(6, 16, 14, 0.36);
}

.apothecary-site.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.96) 0%, rgba(6, 16, 14, 0.86) 33%, rgba(6, 16, 14, 0.38) 58%, rgba(6, 16, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 16, 14, 0.08) 0%, rgba(6, 16, 14, 0.08) 52%, rgba(6, 16, 14, 0.72) 100%);
}

.apothecary-site.home-page .hero-section::after {
  content: "";
  position: absolute;
  inset: 0.72rem;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 249, 239, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(217, 174, 95, 0.13);
}

.apothecary-site.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.apothecary-site.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.06) contrast(1.03);
}

.apothecary-site.home-page .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: 0.8rem;
}

.apothecary-site.home-page .hero-section .eyebrow {
  color: #d9ae5f;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 13ch;
  color: #fff9ef;
  font-size: 3.18rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.apothecary-site.home-page .intro {
  max-width: 55ch;
  color: rgba(255, 249, 239, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 46px;
  border-radius: 999px;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .primary-link {
  color: #111915;
  background: #d9ae5f;
  box-shadow: 0 14px 28px rgba(217, 174, 95, 0.24);
}

.apothecary-site.home-page .secondary-link {
  border-color: rgba(255, 249, 239, 0.28);
  color: #fff9ef;
  background: rgba(255, 249, 239, 0.08);
}

.apothecary-site.home-page .primary-link:hover,
.apothecary-site.home-page .primary-link:focus-visible,
.apothecary-site.home-page .secondary-link:hover,
.apothecary-site.home-page .secondary-link:focus-visible {
  transform: translateY(-2px);
}

.apothecary-site.home-page .hero-picks {
  max-width: 680px;
  gap: 0.56rem;
  margin-top: 1.1rem;
}

.apothecary-site.home-page .hero-picks a {
  position: relative;
  min-height: 92px;
  padding: 0.78rem 0.82rem;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.28);
  border-radius: 8px;
  color: #fff9ef;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.12), rgba(255, 249, 239, 0.045)),
    rgba(6, 16, 14, 0.44);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.apothecary-site.home-page .hero-picks a::after {
  content: "Open";
  position: absolute;
  right: 0.72rem;
  bottom: 0.62rem;
  color: #d9ae5f;
  font-size: 0.68rem;
  font-weight: 850;
}

.apothecary-site.home-page .hero-picks span {
  color: #d9ae5f;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-picks strong {
  padding-right: 2.2rem;
  font-size: 0.86rem;
  line-height: 1.28;
}

.apothecary-site.home-page .reader-board {
  position: relative;
  max-width: 1260px;
  padding: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.1) 0 1px, transparent 1px 60px),
    linear-gradient(135deg, #06100e 0%, #123f37 54%, #182b3a 100%);
  box-shadow: 0 22px 48px rgba(6, 16, 14, 0.24);
}

.apothecary-site.home-page .reader-board-copy {
  padding: 0.9rem;
}

.apothecary-site.home-page .reader-board h2 {
  color: #fff9ef;
  font-size: 1.58rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.86rem;
}

.apothecary-site.home-page .question-grid {
  gap: 0.62rem;
}

.apothecary-site.home-page .question-card {
  position: relative;
  min-height: 196px;
  overflow: hidden;
  padding: 0.86rem;
  border: 1px solid rgba(217, 174, 95, 0.34);
  border-radius: 8px;
  color: #fff9ef;
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.12), rgba(6, 16, 14, 0.9)),
    #123f37;
}

.apothecary-site.home-page .question-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.88)),
    url("/assets/articles/will-maomao-and-jinshi-end-up-together/figure-01.png") center / cover;
}

.apothecary-site.home-page .question-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.9)),
    url("/assets/articles/understanding-the-real-name-of-jinshi/figure-01.png") center / cover;
}

.apothecary-site.home-page .question-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.9)),
    url("/assets/articles/the-age-of-maomao-in-apothecary-diaries/figure-01.png") center / cover;
}

.apothecary-site.home-page .question-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.9)),
    url("/assets/articles/comparing-apothecary-diaries-light-novel-vs-manga/figure-01.png") center / cover;
}

.apothecary-site.home-page .question-card span,
.apothecary-site.home-page .question-card h3,
.apothecary-site.home-page .question-card p,
.apothecary-site.home-page .question-card::after {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .question-card span {
  color: #d9ae5f;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card h3 {
  margin-top: 0.35rem;
  color: #fff9ef;
  font-size: 1rem;
  line-height: 1.22;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.apothecary-site.home-page .question-card p {
  margin-top: 0.38rem;
  color: rgba(255, 249, 239, 0.78);
  font-size: 0.78rem;
  line-height: 1.42;
}

.apothecary-site.home-page .question-card::after {
  min-height: 32px;
  border: 1px solid rgba(217, 174, 95, 0.36);
  color: #111915;
  background: #d9ae5f;
}

.apothecary-site.home-page .intent-panel {
  max-width: 1260px;
  padding: 1rem;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.1) 0 6px, transparent 6px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.99), rgba(238, 216, 177, 0.98));
  box-shadow: 0 18px 36px rgba(65, 42, 24, 0.12);
}

.apothecary-site.home-page .path-grid {
  gap: 0.66rem;
}

.apothecary-site.home-page .path-card {
  min-height: 124px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 63, 55, 0.1), transparent 52%),
    #fff9ef;
}

.apothecary-site.home-page .path-card:hover,
.apothecary-site.home-page .path-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(141, 51, 39, 0.4);
}

.apothecary-site.home-page #topics {
  padding: 2rem 1rem 2.15rem;
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.09) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, #fff9ef 0%, #edd7ac 48%, #fff9ef 100%);
}

.apothecary-site.home-page #topics .content-narrow {
  max-width: 1260px;
  padding: 1.05rem;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.09) 0 6px, transparent 6px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.99), rgba(239, 220, 186, 0.98));
}

.apothecary-site.home-page #topics h2 {
  font-size: 1.86rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-grid {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 0.64rem;
}

.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .topic-card[href] {
  border-radius: 8px;
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  min-height: 560px;
  padding: 1rem;
  justify-content: end;
  background: #06100e;
}

.apothecary-site.home-page .topic-card:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.04) 0%, rgba(6, 16, 14, 0.26) 44%, rgba(6, 16, 14, 0.93) 100%),
    linear-gradient(90deg, rgba(6, 16, 14, 0.18), transparent 54%);
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border-radius: inherit;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(1) h3,
.apothecary-site.home-page .topic-card:nth-child(1) p,
.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  position: relative;
  z-index: 2;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label {
  color: #d9ae5f;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 18ch;
  font-size: 1.45rem;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta span {
  border-color: rgba(217, 174, 95, 0.38);
  color: rgba(255, 249, 239, 0.78);
  background: rgba(6, 16, 14, 0.28);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 114px;
  padding: 0.54rem;
  column-gap: 0.7rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  width: 104px;
  min-height: 104px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  font-size: 0.94rem;
}

.apothecary-site.home-page .topic-card .card-link {
  min-height: 32px;
  border-color: rgba(18, 63, 55, 0.28);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  margin-top: 0.32rem;
}

.apothecary-site.home-page .feature-band {
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.1) 0 6px, transparent 6px),
    linear-gradient(180deg, #fff9ef, #f3e0ba);
}

.apothecary-site.home-page .site-footer {
  border-top: 1px solid rgba(217, 174, 95, 0.28);
  background: #06100e;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    min-height: 590px;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.82rem;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section {
    min-height: 650px;
    margin-top: 0;
    border-radius: 0;
  }

  .apothecary-site.home-page .hero-section::before {
    background:
      linear-gradient(180deg, rgba(6, 16, 14, 0.08) 0%, rgba(6, 16, 14, 0.25) 34%, rgba(6, 16, 14, 0.96) 78%, rgba(6, 16, 14, 0.98) 100%);
  }

  .apothecary-site.home-page .hero-copy {
    max-width: none;
    padding: 0.45rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 12ch;
    font-size: 2.34rem;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(18, 63, 55, 0.18) 0 7px, transparent 7px),
      linear-gradient(180deg, #06100e 0, #123f37 360px, #f0d8ad 650px, #fff9ef 100%);
  }

  .apothecary-site.home-page .hero-section {
    min-height: 690px;
    padding: 0.9rem;
  }

  .apothecary-site.home-page .hero-section::after {
    inset: 0.45rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2rem;
  }

  .apothecary-site.home-page .intro {
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .apothecary-site.home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link {
    width: 100%;
  }

  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics .content-narrow {
    border-radius: 0;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 178px;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 350px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 100px;
    padding: 0.46rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 82px;
    min-height: 82px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 1.86rem;
  }

  .apothecary-site.home-page .hero-picks a {
    min-height: 82px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 74px;
    min-height: 74px;
  }
}

/* Home cover boost v13: denser editorial homepage with real article entry points. */
body.apothecary-site.home-page {
  --home-ink: #141816;
  --home-muted: #5b625c;
  --home-green: #0d3b33;
  --home-green-2: #15594d;
  --home-red: #833226;
  --home-gold: #d8a84d;
  --home-paper: #fff8eb;
  --home-paper-2: #f2dec0;
  color: var(--home-ink);
  background:
    linear-gradient(90deg, rgba(13, 59, 51, 0.34) 0 10px, transparent 10px),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.045) 0 1px, transparent 1px 36px),
    linear-gradient(180deg, #04100d 0, #0b2b26 465px, #7b2f26 466px, #d8a84d 470px, #fff8eb 760px, #f2dec0 100%);
}

.apothecary-site.home-page .site-header {
  border-bottom: 1px solid rgba(216, 168, 77, 0.22);
  background: rgba(4, 16, 13, 0.84);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.apothecary-site.home-page .brand,
.apothecary-site.home-page .nav-links a {
  color: #fff8eb;
}

.apothecary-site.home-page .brand-mark {
  border-color: rgba(216, 168, 77, 0.45);
  color: #101612;
  background: var(--home-gold);
}

.apothecary-site.home-page .nav-links a:hover,
.apothecary-site.home-page .nav-links a:focus-visible {
  color: #f8d777;
}

.apothecary-site.home-page main {
  position: relative;
  overflow: hidden;
}

.apothecary-site.home-page main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 620px;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(4, 16, 13, 0.82), rgba(13, 59, 51, 0.24) 48%, rgba(131, 50, 38, 0.22)),
    image-set(url("/assets/hero-apothecary-reading-room-960.webp") type("image/webp"));
  background-position: center top;
  background-size: cover;
  opacity: 0.34;
  filter: saturate(1.06) contrast(1.08);
}

.apothecary-site.home-page .hero-section,
.apothecary-site.home-page .reader-board,
.apothecary-site.home-page .intent-panel,
.apothecary-site.home-page #topics .content-narrow {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .hero-section {
  max-width: 1220px;
  min-height: 540px;
  margin: 1.05rem auto 1.15rem;
  padding: 1.35rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 1.2rem;
  border: 1px solid rgba(216, 168, 77, 0.32);
  border-radius: 8px;
  color: #fff8eb;
  background:
    linear-gradient(100deg, rgba(4, 16, 13, 0.96) 0 49%, rgba(13, 59, 51, 0.72) 49% 100%),
    linear-gradient(180deg, rgba(216, 168, 77, 0.12), transparent 46%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.apothecary-site.home-page .hero-section::before {
  inset: 1rem auto 1rem 1rem;
  width: 7px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--home-gold), var(--home-red), var(--home-green-2));
  opacity: 1;
}

.apothecary-site.home-page .hero-section::after {
  inset: auto 1.1rem 1.1rem auto;
  width: min(36%, 360px);
  height: 42%;
  border: 1px solid rgba(216, 168, 77, 0.2);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(216, 168, 77, 0.1), transparent);
  opacity: 0.7;
}

.apothecary-site.home-page .hero-copy {
  align-self: center;
  max-width: 640px;
  padding-left: 1.05rem;
}

.apothecary-site.home-page .hero-section .eyebrow,
.apothecary-site.home-page .reader-board .eyebrow,
.apothecary-site.home-page .intent-panel .eyebrow,
.apothecary-site.home-page #topics .eyebrow {
  color: #f1c863;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 10ch;
  margin: 0.28rem 0 0;
  color: #fff8eb;
  font-size: 3.5rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.apothecary-site.home-page .intro {
  max-width: 58ch;
  margin-top: 0.92rem;
  color: rgba(255, 248, 235, 0.84);
  font-size: 1rem;
  line-height: 1.62;
}

.apothecary-site.home-page .hero-actions {
  gap: 0.72rem;
  margin-top: 1.1rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 46px;
  border-radius: 6px;
  font-size: 0.86rem;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.apothecary-site.home-page .primary-link {
  color: #111612;
  background: linear-gradient(180deg, #f5ce67, #cf9440);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.apothecary-site.home-page .secondary-link {
  border-color: rgba(255, 248, 235, 0.28);
  color: #fff8eb;
  background: rgba(255, 248, 235, 0.08);
}

.apothecary-site.home-page .primary-link:hover,
.apothecary-site.home-page .primary-link:focus-visible,
.apothecary-site.home-page .secondary-link:hover,
.apothecary-site.home-page .secondary-link:focus-visible {
  transform: translateY(-2px);
}

.apothecary-site.home-page .hero-picks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 1rem;
}

.apothecary-site.home-page .hero-picks a {
  min-height: 92px;
  padding: 0.72rem;
  border: 1px solid rgba(216, 168, 77, 0.22);
  border-radius: 6px;
  color: #fff8eb;
  background:
    linear-gradient(135deg, rgba(216, 168, 77, 0.16), rgba(255, 248, 235, 0.04)),
    rgba(255, 248, 235, 0.05);
  box-shadow: none;
}

.apothecary-site.home-page .hero-picks a span {
  color: #f1c863;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-picks a strong {
  margin-top: 0.28rem;
  color: #fff8eb;
  font-size: 0.84rem;
  line-height: 1.24;
}

.apothecary-site.home-page .hero-picks a:hover,
.apothecary-site.home-page .hero-picks a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 168, 77, 0.55);
  background: rgba(255, 248, 235, 0.1);
}

.apothecary-site.home-page .hero-media {
  align-self: stretch;
  width: 100%;
  min-height: 470px;
  border: 1px solid rgba(216, 168, 77, 0.38);
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.apothecary-site.home-page .hero-media img {
  height: 100%;
  object-fit: cover;
}

.apothecary-site.home-page .hero-media::after {
  content: "Palace medicine, hidden names, and slow-burn clues";
  position: absolute;
  right: 0.72rem;
  bottom: 0.72rem;
  left: 0.72rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.56rem 0.72rem;
  border: 1px solid rgba(216, 168, 77, 0.28);
  border-radius: 6px;
  color: #fff8eb;
  background: rgba(4, 16, 13, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.apothecary-site.home-page .reader-board {
  max-width: 1220px;
  margin: 0 auto 1.05rem;
  padding: 1rem;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 0.9rem;
  border: 1px solid rgba(13, 59, 51, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #09231f 0 31%, rgba(9, 35, 31, 0.92) 31% 100%),
    linear-gradient(180deg, rgba(216, 168, 77, 0.12), transparent);
  box-shadow: 0 20px 48px rgba(22, 24, 20, 0.22);
}

.apothecary-site.home-page .reader-board::before {
  background: linear-gradient(180deg, rgba(216, 168, 77, 0.2), transparent);
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 9ch;
  color: #fff8eb;
  font-size: 1.8rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.apothecary-site.home-page .reader-board p,
.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  color: rgba(255, 248, 235, 0.76);
  font-size: 0.9rem;
}

.apothecary-site.home-page .question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.apothecary-site.home-page .question-card {
  position: relative;
  min-height: 238px;
  padding: 0.72rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 77, 0.22);
  border-radius: 8px;
  color: #fff8eb;
  background-color: #0b211d;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .question-card:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(4, 16, 13, 0.16), rgba(4, 16, 13, 0.92)), url("/assets/articles/will-maomao-and-jinshi-end-up-together/figure-01.png");
}

.apothecary-site.home-page .question-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(4, 16, 13, 0.16), rgba(4, 16, 13, 0.92)), url("/assets/articles/understanding-the-real-name-of-jinshi/figure-01.png");
}

.apothecary-site.home-page .question-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(4, 16, 13, 0.16), rgba(4, 16, 13, 0.92)), url("/assets/articles/the-age-of-maomao-in-apothecary-diaries/figure-01.png");
}

.apothecary-site.home-page .question-card:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(4, 16, 13, 0.16), rgba(4, 16, 13, 0.92)), url("/assets/articles/comparing-apothecary-diaries-light-novel-vs-manga/figure-01.png");
}

.apothecary-site.home-page .question-card span {
  width: fit-content;
  margin-bottom: 0.42rem;
  padding: 0.22rem 0.44rem;
  border: 1px solid rgba(216, 168, 77, 0.36);
  border-radius: 999px;
  color: #101612;
  background: rgba(244, 201, 96, 0.92);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card h3 {
  color: #fff8eb;
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card p {
  margin-top: 0.38rem;
  color: rgba(255, 248, 235, 0.82);
  font-size: 0.76rem;
  line-height: 1.35;
}

.apothecary-site.home-page .question-card::after {
  content: "Read guide";
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  margin-top: 0.62rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  color: #101612;
  background: #fff8eb;
  font-size: 0.68rem;
  font-weight: 900;
}

.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 168, 77, 0.58);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.apothecary-site.home-page .intent-panel {
  max-width: 1220px;
  margin: 0 auto 1.05rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(131, 50, 38, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(131, 50, 38, 0.1), transparent 42%),
    rgba(255, 248, 235, 0.94);
  box-shadow: 0 18px 44px rgba(73, 45, 27, 0.14);
}

.apothecary-site.home-page .intent-panel .section-heading {
  margin-bottom: 0.65rem;
}

.apothecary-site.home-page .intent-panel h2,
.apothecary-site.home-page #topics h2 {
  font-size: 1.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.apothecary-site.home-page .intent-panel .section-heading > p,
.apothecary-site.home-page .section-intro {
  color: var(--home-muted);
  font-size: 0.92rem;
}

.apothecary-site.home-page .path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.apothecary-site.home-page .path-card {
  min-height: 128px;
  padding: 0.72rem;
  border: 1px solid rgba(13, 59, 51, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(72, 48, 29, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .path-card span {
  color: var(--home-red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
}

.apothecary-site.home-page .path-card h3 {
  margin-top: 0.34rem;
  color: var(--home-ink);
  font-size: 0.9rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.apothecary-site.home-page .path-card small {
  margin-top: auto;
  color: var(--home-muted);
  font-size: 0.72rem;
}

.apothecary-site.home-page .path-card:hover,
.apothecary-site.home-page .path-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(131, 50, 38, 0.38);
  box-shadow: 0 18px 34px rgba(72, 48, 29, 0.16);
}

.apothecary-site.home-page #topics .content-narrow {
  max-width: 1220px;
  padding: 1rem;
  border: 1px solid rgba(13, 59, 51, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 59, 51, 0.08), rgba(255, 248, 235, 0.94) 230px),
    #fff8eb;
  box-shadow: 0 22px 54px rgba(73, 45, 27, 0.16);
}

.apothecary-site.home-page .topic-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 0.68rem;
  margin-top: 0.8rem;
}

.apothecary-site.home-page .topic-card {
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  min-height: 612px;
  padding: 0;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(13, 59, 51, 0.24);
  background: #061815;
  box-shadow: 0 18px 40px rgba(73, 45, 27, 0.16);
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border-radius: 8px;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 13, 0.08), rgba(4, 16, 13, 0.9));
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(1) h3,
.apothecary-site.home-page .topic-card:nth-child(1) p,
.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  position: relative;
  z-index: 1;
  margin-right: 0.95rem;
  margin-left: 0.95rem;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label {
  width: fit-content;
  margin-bottom: 0.42rem;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  color: #101612;
  background: var(--home-gold);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 13ch;
  color: #fff8eb;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) p {
  max-width: 42ch;
  color: rgba(255, 248, 235, 0.82);
  font-size: 0.88rem;
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta {
  margin-top: 0.7rem;
}

.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  margin-top: 0.76rem;
  margin-bottom: 0.95rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  min-height: 134px;
  padding: 0.54rem;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.66rem;
  border: 1px solid rgba(13, 59, 51, 0.16);
  background:
    linear-gradient(90deg, rgba(216, 168, 77, 0.12), transparent 48%),
    #ffffff;
  box-shadow: 0 10px 24px rgba(72, 48, 29, 0.08);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  width: 108px;
  min-height: 108px;
  border-radius: 6px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  color: var(--home-red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  color: var(--home-ink);
  font-size: 0.92rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  margin-top: 0.22rem;
  color: var(--home-muted);
  font-size: 0.74rem;
  line-height: 1.34;
  -webkit-line-clamp: 2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  margin-top: 0.38rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span {
  color: #5c3f20;
  background: #f6ead5;
}

.apothecary-site.home-page .topic-card .card-link {
  min-height: 32px;
  margin-top: 0.42rem;
  border-color: rgba(13, 59, 51, 0.24);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .feature-band,
.apothecary-site.home-page #standards,
.apothecary-site.home-page #faq {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .feature-band {
  margin-top: 1.05rem;
}

.apothecary-site.home-page .method-list > div,
.apothecary-site.home-page .standards-grid article,
.apothecary-site.home-page details {
  border-radius: 8px;
}

.apothecary-site.home-page a:focus-visible {
  outline: 3px solid rgba(216, 168, 77, 0.95);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    min-height: 500px;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 3.05rem;
  }

  .apothecary-site.home-page .hero-media {
    min-height: 430px;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .question-card {
    min-height: 210px;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(13, 59, 51, 0.28) 0 8px, transparent 8px),
      linear-gradient(180deg, #04100d 0, #0b2b26 390px, #7b2f26 391px, #d8a84d 395px, #fff8eb 620px, #f2dec0 100%);
  }

  .apothecary-site.home-page .hero-section {
    grid-template-columns: 1fr;
    max-width: calc(100% - 1.2rem);
    min-height: 0;
    padding: 0.95rem;
  }

  .apothecary-site.home-page .hero-copy {
    padding-left: 0.58rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 12ch;
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .apothecary-site.home-page .intro {
    font-size: 0.92rem;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .hero-picks a {
    min-height: 72px;
  }

  .apothecary-site.home-page .hero-media {
    width: 100%;
    min-height: 280px;
  }

  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics .content-narrow {
    max-width: calc(100% - 1.2rem);
    border-radius: 8px;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
    background: #09231f;
  }

  .apothecary-site.home-page .reader-board h2 {
    max-width: none;
    font-size: 1.5rem;
  }

  .apothecary-site.home-page .path-grid,
  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 420px;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 620px) {
  .apothecary-site.home-page .site-header {
    background: rgba(4, 16, 13, 0.94);
  }

  .apothecary-site.home-page .hero-section {
    margin-top: 0.62rem;
    padding: 0.78rem;
  }

  .apothecary-site.home-page .hero-section::before {
    inset: 0.8rem auto 0.8rem 0.8rem;
    width: 5px;
  }

  .apothecary-site.home-page .hero-section::after {
    display: none;
  }

  .apothecary-site.home-page .hero-copy {
    padding-left: 0.48rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.12rem;
  }

  .apothecary-site.home-page .intro {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link {
    width: 100%;
    min-height: 46px;
  }

  .apothecary-site.home-page .hero-media {
    min-height: 236px;
  }

  .apothecary-site.home-page .hero-media::after {
    min-height: 40px;
    font-size: 0.7rem;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 172px;
  }

  .apothecary-site.home-page .intent-panel h2,
  .apothecary-site.home-page #topics h2 {
    font-size: 1.38rem;
  }

  .apothecary-site.home-page .path-card {
    min-height: 112px;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 360px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 104px;
    gap: 0.52rem;
    padding: 0.45rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 82px;
    min-height: 82px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.84rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
  .apothecary-site.home-page .topic-card:nth-child(7) p,
  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 1.92rem;
  }

  .apothecary-site.home-page .question-card h3 {
    font-size: 0.92rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 74px;
    min-height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link,
  .apothecary-site.home-page .hero-picks a,
  .apothecary-site.home-page .question-card,
  .apothecary-site.home-page .path-card,
  .apothecary-site.home-page .topic-card,
  .apothecary-site.home-page .topic-card .topic-thumb img {
    transition: none;
  }

  .apothecary-site.home-page .primary-link:hover,
  .apothecary-site.home-page .primary-link:focus-visible,
  .apothecary-site.home-page .secondary-link:hover,
  .apothecary-site.home-page .secondary-link:focus-visible,
  .apothecary-site.home-page .hero-picks a:hover,
  .apothecary-site.home-page .hero-picks a:focus-visible,
  .apothecary-site.home-page .question-card:hover,
  .apothecary-site.home-page .question-card:focus-visible,
  .apothecary-site.home-page .path-card:hover,
  .apothecary-site.home-page .path-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover,
  .apothecary-site.home-page .topic-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover .topic-thumb img,
  .apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
    transform: none;
  }
}

/* Home editorial upgrade: denser clickable magazine front page. */
body.apothecary-site.home-page {
  background:
    linear-gradient(90deg, rgba(25, 65, 55, 0.055) 0 1px, transparent 1px 64px),
    linear-gradient(0deg, rgba(116, 35, 29, 0.035) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, #0d1713 0, #163d34 18.5rem, #e9c987 18.56rem, #fff8ec 41rem, #f5e4bf 100%);
}

.apothecary-site.home-page main {
  background:
    linear-gradient(180deg, rgba(13, 23, 19, 0) 0 28rem, rgba(255, 248, 236, 0.88) 28.1rem 100%),
    linear-gradient(90deg, rgba(15, 95, 86, 0.05) 0 1px, transparent 1px 92px);
}

.apothecary-site.home-page .hero-section,
.apothecary-site.home-page .reader-board,
.apothecary-site.home-page .intent-panel,
.apothecary-site.home-page .content-narrow {
  max-width: 1220px;
}

.apothecary-site.home-page .hero-section {
  min-height: 0;
  margin-top: 1rem;
  padding: clamp(1rem, 2.3vw, 1.75rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.76fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
  overflow: hidden;
  border: 1px solid rgba(239, 205, 139, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.11) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, rgba(255, 248, 232, 0.08), rgba(255, 248, 232, 0.025)),
    #10221d;
  box-shadow: 0 22px 52px rgba(4, 14, 12, 0.28);
}

.apothecary-site.home-page .hero-section::before {
  opacity: 0.28;
}

.apothecary-site.home-page .hero-section::after {
  inset: 0.75rem;
  border-color: rgba(239, 205, 139, 0.18);
}

.apothecary-site.home-page .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 5.2vw, 3.45rem);
  line-height: 1.01;
  letter-spacing: 0;
}

.apothecary-site.home-page .intro {
  max-width: 58ch;
  margin-top: 0.74rem;
  font-size: 0.98rem;
  line-height: 1.62;
}

.apothecary-site.home-page .hero-actions {
  gap: 0.58rem;
  margin-top: 1rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 2.7rem;
  padding: 0.72rem 0.94rem;
  border-radius: 8px;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  justify-self: end;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 205, 139, 0.32);
  border-radius: 8px;
  background: #21352f;
  box-shadow: 0 20px 44px rgba(5, 16, 14, 0.3);
}

.apothecary-site.home-page .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 16, 0.02), rgba(9, 19, 16, 0.26)),
    linear-gradient(90deg, rgba(240, 201, 120, 0.22), transparent 34%);
  pointer-events: none;
}

.apothecary-site.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apothecary-site.home-page .hero-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
  margin-top: 0.92rem;
}

.apothecary-site.home-page .hero-picks a {
  position: relative;
  min-height: 5.1rem;
  padding: 0.68rem 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(239, 205, 139, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.105), rgba(255, 248, 232, 0.04)),
    rgba(9, 31, 27, 0.7);
  color: #fff8e8;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.apothecary-site.home-page .hero-picks a::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  bottom: 0.58rem;
  width: 1.4rem;
  height: 1px;
  background: rgba(240, 201, 120, 0.82);
  box-shadow: 0.34rem 0.34rem 0 rgba(240, 201, 120, 0.52);
}

.apothecary-site.home-page .hero-picks span {
  display: block;
  margin-bottom: 0.32rem;
  color: #f0c978;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .hero-picks strong {
  display: block;
  max-width: 18ch;
  color: #fff8e8;
  font-size: 0.86rem;
  line-height: 1.28;
}

.apothecary-site.home-page .hero-picks a:hover,
.apothecary-site.home-page .hero-picks a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 120, 0.66);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.16), rgba(255, 248, 232, 0.06)),
    rgba(15, 64, 55, 0.76);
  outline: none;
}

.apothecary-site.home-page .reader-board {
  margin-top: clamp(0.9rem, 1.9vw, 1.45rem);
  padding: 0.92rem;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1.58fr);
  gap: 0.64rem;
  border-color: rgba(239, 205, 139, 0.28);
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, #11251f 0%, #15392f 60%, #0e1d19 100%);
}

.apothecary-site.home-page .reader-board-copy {
  padding: 0.84rem;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 12ch;
  font-size: clamp(1.38rem, 2.3vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  margin-top: 0.52rem;
  font-size: 0.84rem;
  line-height: 1.48;
}

.apothecary-site.home-page .question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.52rem;
}

.apothecary-site.home-page .question-card {
  min-height: 124px;
  padding: 0.7rem 0.72rem 0.66rem;
  border-color: rgba(240, 201, 120, 0.3);
  background:
    linear-gradient(90deg, rgba(116, 35, 29, 0.18) 0 3px, transparent 3px),
    linear-gradient(180deg, #fffaf0 0%, #f8ecd4 100%);
}

.apothecary-site.home-page .question-card span {
  font-size: 0.65rem;
}

.apothecary-site.home-page .question-card h3 {
  margin-top: 0.26rem;
  font-size: 0.9rem;
  line-height: 1.24;
}

.apothecary-site.home-page .question-card p {
  margin-top: 0.3rem;
  font-size: 0.76rem;
  line-height: 1.36;
}

.apothecary-site.home-page .question-card::after {
  padding-top: 0.38rem;
  font-size: 0.68rem;
}

.apothecary-site.home-page .intent-panel {
  margin-top: clamp(0.95rem, 2vw, 1.55rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(116, 35, 29, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(116, 35, 29, 0.07) 0 1px, transparent 1px 80px),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(248, 236, 212, 0.96));
  box-shadow: 0 16px 34px rgba(87, 55, 31, 0.12);
}

.apothecary-site.home-page .intent-panel .section-heading {
  gap: 1rem;
  margin-bottom: 0.78rem;
}

.apothecary-site.home-page .intent-panel .section-heading h2 {
  font-size: clamp(1.48rem, 3vw, 1.96rem);
  letter-spacing: 0;
}

.apothecary-site.home-page .intent-panel .section-heading > p {
  max-width: 46ch;
  font-size: 0.9rem;
  line-height: 1.52;
}

.apothecary-site.home-page .path-grid {
  gap: 0.62rem;
}

.apothecary-site.home-page .path-card {
  min-height: 0;
  padding: 0.86rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 236, 0.86)),
    #fff8ec;
}

.apothecary-site.home-page .path-card span {
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .path-card h3 {
  margin-top: 0.38rem;
  font-size: 0.92rem;
  line-height: 1.34;
}

.apothecary-site.home-page .path-card small {
  margin-top: 0.55rem;
  padding-top: 0.48rem;
  font-size: 0.72rem;
}

.apothecary-site.home-page #topics {
  padding-top: clamp(1.5rem, 3vw, 2.35rem);
}

.apothecary-site.home-page #topics .content-narrow {
  position: relative;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgba(87, 55, 31, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 95, 86, 0.052) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(246, 228, 191, 0.94));
  box-shadow: 0 18px 42px rgba(87, 55, 31, 0.11);
}

.apothecary-site.home-page #topics .section-intro {
  max-width: 58ch;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.56;
}

.apothecary-site.home-page #topics h2 {
  font-size: clamp(1.52rem, 3.2vw, 2.02rem);
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-grid {
  grid-template-columns: minmax(280px, 0.92fr) repeat(2, minmax(250px, 1fr));
  grid-auto-flow: dense;
  gap: 0.68rem;
  align-items: stretch;
}

.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .topic-card[href] {
  border-radius: 8px;
  border-color: rgba(87, 55, 31, 0.14);
  box-shadow: 0 12px 26px rgba(87, 55, 31, 0.11);
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  grid-row: span 3;
  min-height: 486px;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 18ch;
  font-size: clamp(1.34rem, 2.2vw, 1.72rem);
  line-height: 1.08;
}

.apothecary-site.home-page .topic-card:nth-child(1) p {
  max-width: 32ch;
  font-size: 0.88rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 146px;
  padding: 0.66rem;
  column-gap: 0.62rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(248, 236, 212, 0.98)),
    #fff8ec;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1))::before,
.apothecary-site.home-page .topic-card:nth-child(7)::before {
  width: 3px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  min-height: 126px;
  aspect-ratio: 1 / 1.08;
  border-radius: 7px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  margin-bottom: 0.2rem;
  font-size: 0.66rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  font-size: 0.93rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  display: -webkit-box;
  margin-top: 0.28rem;
  overflow: hidden;
  color: #5f5144;
  font-size: 0.76rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  margin: 0.32rem 0 0.38rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span {
  min-height: 1.18rem;
  padding: 0.1rem 0.32rem;
  font-size: 0.62rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span:nth-child(n+3),
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span:nth-child(n+3) {
  display: none;
}

.apothecary-site.home-page .topic-card .card-link {
  color: #74231d;
  font-size: 0.73rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible {
  border-color: rgba(116, 35, 29, 0.36);
  box-shadow: 0 18px 36px rgba(87, 55, 31, 0.18);
}

.apothecary-site.home-page .feature-band {
  margin-top: clamp(1.35rem, 3vw, 2.2rem);
  background:
    linear-gradient(90deg, rgba(239, 205, 139, 0.08) 0 1px, transparent 1px 82px),
    #10221d;
}

.apothecary-site.home-page .standards-grid {
  gap: 0.72rem;
}

.apothecary-site.home-page .standards-grid article,
.apothecary-site.home-page details {
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    grid-row: span 3;
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .hero-copy {
    max-width: none;
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 380px);
    justify-self: start;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .hero-picks a {
    min-height: 0;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
    max-width: none;
  }

  .apothecary-site.home-page .intent-panel .section-heading {
    display: block;
  }

  .apothecary-site.home-page .intent-panel .section-heading > p {
    max-width: none;
    margin-top: 0.42rem;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(25, 65, 55, 0.05) 0 1px, transparent 1px 48px),
      linear-gradient(0deg, rgba(116, 35, 29, 0.032) 0 1px, transparent 1px 48px),
      linear-gradient(180deg, #0d1713 0, #163d34 20rem, #e9c987 20.05rem, #fff8ec 100%);
  }

  .apothecary-site.home-page .hero-section {
    margin-top: 0;
    border-radius: 0;
  }

  .apothecary-site.home-page .hero-section::after {
    inset: 0.55rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 11ch;
    font-size: clamp(2.08rem, 10vw, 2.68rem);
  }

  .apothecary-site.home-page .intro {
    font-size: 0.92rem;
  }

  .apothecary-site.home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link {
    justify-content: center;
    width: 100%;
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 320px);
  }

  .apothecary-site.home-page .reader-board {
    border-radius: 0;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
  }

  .apothecary-site.home-page #topics .content-narrow,
  .apothecary-site.home-page .intent-panel {
    border-radius: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 318px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 118px;
    padding: 0.56rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    min-height: 94px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 0.5rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
  .apothecary-site.home-page .topic-card:nth-child(7) p {
    display: none;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .hero-picks a {
    transition: none;
  }

  .apothecary-site.home-page .hero-picks a:hover,
  .apothecary-site.home-page .hero-picks a:focus-visible {
    transform: none;
  }
}

/* Home final polish: stronger editorial hooks without changing article content. */
body.apothecary-site.home-page {
  --home-ink: #10241f;
  --home-jade: #175548;
  --home-red: #74231d;
  --home-gold: #e3b862;
  --home-paper: #fff8ec;
  --home-paper-deep: #efd7a8;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(227, 184, 98, 0.075) 0 1px, transparent 1px 84px),
    linear-gradient(0deg, rgba(116, 35, 29, 0.052) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, #0b1512 0, #10241f 11rem, #183f35 19rem, #e8c77f 19.05rem, #fff8ec 38rem, #f2dfbd 100%);
}

.apothecary-site.home-page main {
  position: relative;
  z-index: 0;
}

.apothecary-site.home-page main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 248, 236, 0.06) 28.2% 28.7%, transparent 29% 100%),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0 1px, transparent 1px 34px);
  opacity: 0.82;
}

.apothecary-site.home-page .site-header {
  border-bottom-color: rgba(227, 184, 98, 0.22);
  background: rgba(11, 21, 18, 0.9);
  backdrop-filter: blur(14px);
}

.apothecary-site.home-page .nav {
  min-height: 4rem;
}

.apothecary-site.home-page .nav-links a {
  min-height: 44px;
  align-items: center;
}

.apothecary-site.home-page .hero-section {
  position: relative;
  grid-template-columns: minmax(0, 1.08fr) minmax(292px, 0.7fr);
  gap: clamp(1rem, 2.7vw, 2.1rem);
  align-items: center;
  max-width: 1180px;
  margin-top: clamp(0.85rem, 1.8vw, 1.35rem);
  padding: clamp(1rem, 2.8vw, 1.85rem);
  overflow: hidden;
  border: 1px solid rgba(227, 184, 98, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(10, 20, 17, 0.96) 0%, rgba(17, 53, 45, 0.94) 55%, rgba(116, 35, 29, 0.62) 100%),
    linear-gradient(0deg, rgba(227, 184, 98, 0.1) 0 1px, transparent 1px 64px);
  box-shadow: 0 30px 70px rgba(8, 17, 14, 0.34);
}

.apothecary-site.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(227, 184, 98, 0.11) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), transparent 42%);
}

.apothecary-site.home-page .hero-section::after {
  inset: 0.72rem;
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: 6px;
}

.apothecary-site.home-page .hero-copy {
  max-width: 700px;
  padding: clamp(0.35rem, 1vw, 0.7rem);
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 5.2vw, 4.15rem);
  line-height: 0.96;
  text-wrap: balance;
}

.apothecary-site.home-page .intro {
  max-width: 56ch;
  margin-top: 0.82rem;
  color: rgba(255, 248, 236, 0.88);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.62;
}

.apothecary-site.home-page .hero-actions {
  gap: 0.58rem;
  margin-top: 1.05rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.apothecary-site.home-page .primary-link:hover,
.apothecary-site.home-page .primary-link:focus-visible,
.apothecary-site.home-page .secondary-link:hover,
.apothecary-site.home-page .secondary-link:focus-visible {
  transform: translateY(-1px);
}

.apothecary-site.home-page .hero-media {
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 8px;
  background: #08110f;
  box-shadow: 0 24px 50px rgba(6, 12, 10, 0.42);
}

.apothecary-site.home-page .hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 17, 15, 0.7), transparent);
}

.apothecary-site.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apothecary-site.home-page .hero-picks {
  counter-reset: home-pick;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
  margin-top: 1.02rem;
}

.apothecary-site.home-page .hero-picks a {
  counter-increment: home-pick;
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  min-height: 4.75rem;
  padding: 0.68rem 0.72rem;
  column-gap: 0.58rem;
  border-color: rgba(227, 184, 98, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.12), rgba(255, 248, 236, 0.04)),
    rgba(8, 20, 17, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.08);
}

.apothecary-site.home-page .hero-picks a::before {
  content: "0" counter(home-pick);
  grid-row: 1 / 3;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(227, 184, 98, 0.4);
  border-radius: 50%;
  color: var(--home-gold);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.apothecary-site.home-page .hero-picks a::after {
  right: 0.78rem;
  bottom: 0.7rem;
  width: 1.35rem;
  background: rgba(227, 184, 98, 0.86);
}

.apothecary-site.home-page .hero-picks span,
.apothecary-site.home-page .hero-picks strong {
  grid-column: 2;
}

.apothecary-site.home-page .hero-picks span {
  margin-bottom: 0.25rem;
  color: #e8c77f;
  font-size: 0.66rem;
}

.apothecary-site.home-page .hero-picks strong {
  max-width: 20ch;
  font-size: 0.86rem;
}

.apothecary-site.home-page .reader-board {
  max-width: 1180px;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1.66fr);
  gap: 0.68rem;
  margin-top: clamp(1rem, 2vw, 1.55rem);
  padding: 0.76rem;
  border-color: rgba(227, 184, 98, 0.34);
  background:
    linear-gradient(90deg, rgba(227, 184, 98, 0.1) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, #0d1c18 0%, #173f35 58%, #74231d 155%);
  box-shadow: 0 24px 54px rgba(8, 17, 14, 0.24);
}

.apothecary-site.home-page .reader-board-copy {
  padding: 0.78rem;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 11ch;
  font-size: clamp(1.28rem, 2vw, 1.62rem);
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.82rem;
}

.apothecary-site.home-page .question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.52rem;
}

.apothecary-site.home-page .question-card {
  min-height: 116px;
  padding: 0.66rem 0.68rem;
  border-color: rgba(227, 184, 98, 0.32);
  background:
    linear-gradient(90deg, rgba(116, 35, 29, 0.2) 0 3px, transparent 3px),
    linear-gradient(180deg, #fffaf0 0%, #f4dfb6 100%);
  box-shadow: 0 10px 22px rgba(8, 17, 14, 0.16);
}

.apothecary-site.home-page .question-card h3 {
  font-size: 0.86rem;
  line-height: 1.25;
}

.apothecary-site.home-page .question-card p {
  font-size: 0.74rem;
  line-height: 1.36;
}

.apothecary-site.home-page .question-card::after {
  content: "Open guide";
  margin-top: auto;
  color: var(--home-red);
  font-weight: 900;
}

.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(116, 35, 29, 0.38);
  box-shadow: 0 16px 30px rgba(8, 17, 14, 0.2);
}

.apothecary-site.home-page .intent-panel {
  max-width: 1180px;
  border-color: rgba(116, 35, 29, 0.18);
  background:
    linear-gradient(90deg, rgba(116, 35, 29, 0.062) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(240, 214, 166, 0.96));
}

.apothecary-site.home-page .path-grid {
  gap: 0.58rem;
}

.apothecary-site.home-page .path-card {
  min-height: 0;
  padding: 0.78rem;
  border-color: rgba(87, 55, 31, 0.14);
  box-shadow: none;
}

.apothecary-site.home-page .path-card h3 {
  font-size: 0.88rem;
}

.apothecary-site.home-page #topics {
  padding-top: clamp(1.2rem, 2.6vw, 2rem);
}

.apothecary-site.home-page #topics .content-narrow {
  max-width: 1180px;
  padding: clamp(0.9rem, 2vw, 1.2rem);
  border-color: rgba(87, 55, 31, 0.16);
  background:
    linear-gradient(90deg, rgba(23, 85, 72, 0.055) 0 1px, transparent 1px 60px),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(239, 215, 168, 0.94));
}

.apothecary-site.home-page #topics h2 {
  font-size: clamp(1.42rem, 2.8vw, 1.9rem);
}

.apothecary-site.home-page #topics .section-intro {
  max-width: 62ch;
  margin-bottom: 0.8rem;
  font-size: 0.86rem;
}

.apothecary-site.home-page .topic-grid {
  counter-reset: article-card;
  grid-template-columns: minmax(310px, 0.9fr) repeat(2, minmax(220px, 1fr));
  gap: 0.58rem;
}

.apothecary-site.home-page .topic-card {
  counter-increment: article-card;
}

.apothecary-site.home-page .topic-label::before {
  content: counter(article-card, decimal-leading-zero) " / ";
  color: var(--home-red);
  font-weight: 900;
}

.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .topic-card[href] {
  border-color: rgba(87, 55, 31, 0.14);
  box-shadow: 0 10px 24px rgba(87, 55, 31, 0.12);
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  min-height: 448px;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  font-size: clamp(1.24rem, 2vw, 1.58rem);
}

.apothecary-site.home-page .topic-card:nth-child(1) p {
  font-size: 0.84rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 126px;
  padding: 0.58rem;
  column-gap: 0.56rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  min-height: 110px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  font-size: 0.62rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  font-size: 0.86rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  font-size: 0.72rem;
  -webkit-line-clamp: 2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  display: none;
}

.apothecary-site.home-page .topic-card .card-link {
  margin-top: auto;
  font-size: 0.7rem;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(116, 35, 29, 0.36);
  box-shadow: 0 16px 34px rgba(87, 55, 31, 0.18);
}

.apothecary-site.home-page .feature-band {
  border-top: 1px solid rgba(227, 184, 98, 0.22);
  border-bottom: 1px solid rgba(227, 184, 98, 0.18);
  background:
    linear-gradient(90deg, rgba(227, 184, 98, 0.085) 0 1px, transparent 1px 70px),
    linear-gradient(180deg, #0d1c18, #112d26);
}

.apothecary-site.home-page .method-list > div,
.apothecary-site.home-page .standards-grid article,
.apothecary-site.home-page details {
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 340px);
    justify-self: start;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2 {
    max-width: none;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 350px;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(227, 184, 98, 0.07) 0 1px, transparent 1px 46px),
      linear-gradient(180deg, #0b1512 0, #163b32 17rem, #e8c77f 17.05rem, #fff8ec 100%);
  }

  .apothecary-site.home-page .hero-section {
    padding: 0.92rem;
    border-radius: 0;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 9.2vw, 2.55rem);
  }

  .apothecary-site.home-page .intro {
    font-size: 0.9rem;
  }

  .apothecary-site.home-page .hero-picks a {
    grid-template-columns: 2rem minmax(0, 1fr);
    min-height: 4.25rem;
  }

  .apothecary-site.home-page .reader-board {
    padding: 0.66rem;
    border-radius: 0;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
  }

  .apothecary-site.home-page #topics .content-narrow,
  .apothecary-site.home-page .intent-panel {
    border-radius: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 310px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 112px;
    padding: 0.5rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    min-height: 90px;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link,
  .apothecary-site.home-page .hero-picks a,
  .apothecary-site.home-page .question-card,
  .apothecary-site.home-page .path-card,
  .apothecary-site.home-page .topic-card {
    transition: none;
  }

  .apothecary-site.home-page .primary-link:hover,
  .apothecary-site.home-page .primary-link:focus-visible,
  .apothecary-site.home-page .secondary-link:hover,
  .apothecary-site.home-page .secondary-link:focus-visible,
  .apothecary-site.home-page .question-card:hover,
  .apothecary-site.home-page .question-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover,
  .apothecary-site.home-page .topic-card:focus-visible {
    transform: none;
  }
}

/* Home cover boost v11: final homepage cascade layer. */
body.apothecary-site.home-page {
  --home-paper: #fff8ea;
  --home-ink: #111915;
  --home-green: #123f37;
  --home-green-dark: #07110f;
  --home-red: #8d3327;
  --home-gold: #d9ae5f;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.32) 0 10px, transparent 10px 100%),
    linear-gradient(180deg, #07110f 0, #123f37 64px, #fff8ea 64px, #fff8ea 58%, #ead0a1 100%);
  color: var(--home-ink);
}

.apothecary-site.home-page .site-header {
  border-bottom: 1px solid rgba(217, 174, 95, 0.34);
  background: rgba(7, 17, 15, 0.94);
  box-shadow: 0 10px 24px rgba(7, 17, 15, 0.18);
}

.apothecary-site.home-page .brand,
.apothecary-site.home-page .nav-links a {
  color: #fff8ea;
}

.apothecary-site.home-page .brand-mark {
  border-color: rgba(217, 174, 95, 0.72);
  background: var(--home-gold);
  color: var(--home-green-dark);
}

.apothecary-site.home-page .hero-section,
.apothecary-site.home-page .reader-board,
.apothecary-site.home-page .intent-panel,
.apothecary-site.home-page #topics .content-narrow {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  border-radius: 8px;
}

.apothecary-site.home-page .hero-section {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  min-height: 455px;
  margin-top: 1.05rem;
  padding: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.35);
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.22) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #07110f 0, #123f37 57%, #8d3327 100%);
  box-shadow: 0 24px 58px rgba(7, 17, 15, 0.24);
}

.apothecary-site.home-page .hero-section::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.16), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 248, 234, 0.06) 0 1px, transparent 1px 23px);
  opacity: 1;
}

.apothecary-site.home-page .hero-section::after {
  right: 1.05rem;
  bottom: 1.05rem;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(217, 174, 95, 0.46);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(217, 174, 95, 0.34), rgba(141, 51, 39, 0.12)),
    radial-gradient(circle at center, transparent 0 43%, rgba(217, 174, 95, 0.38) 44% 46%, transparent 47%);
  opacity: 0.56;
}

.apothecary-site.home-page .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  align-self: center;
  padding: 0.25rem 0 0.25rem 0.15rem;
}

.apothecary-site.home-page .hero-section .eyebrow,
.apothecary-site.home-page .reader-board .eyebrow,
.apothecary-site.home-page .intent-panel .eyebrow,
.apothecary-site.home-page #topics .eyebrow {
  width: fit-content;
  margin-bottom: 0.52rem;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(217, 174, 95, 0.42);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.1);
  color: var(--home-gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 12ch;
  margin-bottom: 0.55rem;
  color: #fff8ea;
  font-size: 3.18rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.apothecary-site.home-page .intro {
  max-width: 58ch;
  color: rgba(255, 248, 234, 0.84);
  font-size: 0.98rem;
  line-height: 1.58;
}

.apothecary-site.home-page .hero-actions {
  gap: 0.58rem;
  margin-top: 0.9rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 44px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .primary-link {
  border: 1px solid rgba(255, 248, 234, 0.3);
  background: var(--home-gold);
  color: var(--home-green-dark);
  box-shadow: 0 12px 24px rgba(217, 174, 95, 0.2);
}

.apothecary-site.home-page .secondary-link {
  border: 1px solid rgba(217, 174, 95, 0.5);
  background: rgba(255, 248, 234, 0.08);
  color: #fff8ea;
}

.apothecary-site.home-page .hero-picks {
  counter-reset: hero-pick;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
  margin-top: 1rem;
}

.apothecary-site.home-page .hero-picks a {
  counter-increment: hero-pick;
  position: relative;
  min-height: 92px;
  padding: 0.68rem 0.7rem 0.7rem 2.7rem;
  border: 1px solid rgba(217, 174, 95, 0.28);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.42);
  color: #fff8ea;
}

.apothecary-site.home-page .hero-picks a::before {
  content: "0" counter(hero-pick);
  position: absolute;
  top: 0.68rem;
  left: 0.66rem;
  display: inline-grid;
  width: 1.46rem;
  height: 1.46rem;
  place-items: center;
  border: 1px solid rgba(217, 174, 95, 0.5);
  border-radius: 50%;
  color: var(--home-gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.apothecary-site.home-page .hero-picks span {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--home-gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-picks strong {
  color: #fff8ea;
  font-size: 0.82rem;
  line-height: 1.26;
}

.apothecary-site.home-page .hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: auto;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.42);
  border-radius: 8px;
  background: var(--home-green-dark);
  box-shadow: 0 20px 40px rgba(7, 17, 15, 0.28);
}

.apothecary-site.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apothecary-site.home-page .hero-media::after {
  content: "Feature archive";
  position: absolute;
  right: 0.74rem;
  bottom: 0.74rem;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(217, 174, 95, 0.56);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.76);
  color: #fff8ea;
  font-size: 0.68rem;
  font-weight: 850;
}

.apothecary-site.home-page .reader-board {
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding: 0.9rem;
  border: 1px solid rgba(18, 63, 55, 0.16);
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.1) 0 5px, transparent 5px),
    var(--home-paper);
  box-shadow: 0 14px 30px rgba(65, 42, 24, 0.11);
}

.apothecary-site.home-page .reader-board::before {
  content: none;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 9ch;
  color: var(--home-green);
  font-size: 1.46rem;
  line-height: 1.06;
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  max-width: 25ch;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.84rem;
  line-height: 1.45;
}

.apothecary-site.home-page .question-grid {
  counter-reset: fan-question;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.apothecary-site.home-page .question-card {
  counter-increment: fan-question;
  min-height: 136px;
  padding: 0.68rem 0.7rem 0.72rem 3rem;
  border: 1px solid rgba(18, 63, 55, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.apothecary-site.home-page .question-card::before {
  content: counter(fan-question);
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  display: inline-grid;
  width: 1.62rem;
  height: 1.62rem;
  place-items: center;
  border-radius: 50%;
  background: var(--home-green);
  color: #fff8ea;
  font-size: 0.76rem;
  font-weight: 900;
}

.apothecary-site.home-page .question-card span {
  margin-bottom: 0.2rem;
  color: var(--home-red);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 0.96rem;
  line-height: 1.22;
}

.apothecary-site.home-page .question-card p {
  margin-top: 0.22rem;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.76rem;
  line-height: 1.4;
}

.apothecary-site.home-page .intent-panel {
  margin-top: 1.15rem;
  padding: 0.9rem;
  background:
    linear-gradient(135deg, rgba(18, 63, 55, 0.96), rgba(7, 17, 15, 0.96)),
    var(--home-green);
}

.apothecary-site.home-page .intent-panel .section-heading {
  align-items: end;
  gap: 0.8rem;
  margin-bottom: 0.72rem;
}

.apothecary-site.home-page .intent-panel .section-heading h2 {
  color: #fff8ea;
  font-size: 1.44rem;
  line-height: 1.1;
}

.apothecary-site.home-page .intent-panel .section-heading > p {
  max-width: 49ch;
  color: rgba(255, 248, 234, 0.72);
  font-size: 0.82rem;
  line-height: 1.42;
}

.apothecary-site.home-page .path-grid {
  gap: 0.58rem;
}

.apothecary-site.home-page .path-card {
  min-height: 132px;
  padding: 0.72rem;
  border: 1px solid rgba(217, 174, 95, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.08);
}

.apothecary-site.home-page .path-card span {
  color: var(--home-gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .path-card h3 {
  margin-top: 0.32rem;
  color: #fff8ea;
  font-size: 0.92rem;
  line-height: 1.3;
}

.apothecary-site.home-page .path-card small {
  margin-top: 0.48rem;
  color: rgba(255, 248, 234, 0.68);
  font-size: 0.72rem;
}

.apothecary-site.home-page #topics.content-section {
  padding-top: 1.2rem;
}

.apothecary-site.home-page #topics .content-narrow {
  padding: 1rem;
  border: 1px solid rgba(18, 63, 55, 0.14);
  background: rgba(255, 248, 234, 0.86);
  box-shadow: 0 16px 36px rgba(65, 42, 24, 0.1);
}

.apothecary-site.home-page #topics .eyebrow {
  background: rgba(18, 63, 55, 0.08);
  color: var(--home-red);
}

.apothecary-site.home-page #topics h2 {
  color: var(--home-green);
  font-size: 1.7rem;
  line-height: 1.1;
}

.apothecary-site.home-page .section-intro {
  max-width: 62ch;
  margin-top: 0.28rem;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.86rem;
  line-height: 1.48;
}

.apothecary-site.home-page .topic-grid {
  counter-reset: topic;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  grid-auto-flow: dense;
  gap: 0.68rem;
  margin-top: 0.82rem;
}

.apothecary-site.home-page .topic-card {
  counter-increment: topic;
  border: 1px solid rgba(18, 63, 55, 0.14);
  border-radius: 8px;
  box-shadow: none;
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  min-height: 456px;
  padding: 0.92rem;
  background: var(--home-green-dark);
}

.apothecary-site.home-page .topic-card:nth-child(1)::after {
  inset: 0.68rem;
  border-color: rgba(217, 174, 95, 0.42);
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label {
  width: fit-content;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.68);
  color: var(--home-gold);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 17ch;
  color: #fff8ea;
  font-size: 1.42rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  position: relative;
  grid-column: 2;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 102px;
  padding: 0.46rem 2.7rem 0.46rem 0.46rem;
  column-gap: 0.58rem;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.11) 0 4px, transparent 4px),
    rgba(255, 255, 255, 0.72);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1))::before,
.apothecary-site.home-page .topic-card:nth-child(7)::before {
  content: "0" counter(topic);
  position: absolute;
  top: 0.52rem;
  right: 0.56rem;
  display: inline-grid;
  width: 1.72rem;
  height: 1.72rem;
  place-items: center;
  border: 1px solid rgba(141, 51, 39, 0.28);
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.84);
  color: var(--home-red);
  font-size: 0.68rem;
  font-weight: 900;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  grid-column: 1;
  grid-row: 1 / span 5;
  width: 88px;
  min-height: 88px;
  border-radius: 6px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  color: var(--home-red);
  font-size: 0.62rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  font-size: 0.88rem;
  line-height: 1.2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  margin-top: 0.16rem;
  font-size: 0.72rem;
  line-height: 1.32;
}

.apothecary-site.home-page .topic-card .card-link {
  min-height: 32px;
  padding: 0 0.64rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible,
.apothecary-site.home-page .hero-picks a:hover,
.apothecary-site.home-page .hero-picks a:focus-visible,
.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible,
.apothecary-site.home-page .path-card:hover,
.apothecary-site.home-page .path-card:focus-visible {
  border-color: rgba(217, 174, 95, 0.62);
  box-shadow: 0 16px 30px rgba(65, 42, 24, 0.16);
  transform: translateY(-2px);
}

.apothecary-site.home-page .feature-band {
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(217, 174, 95, 0.26);
  border-bottom: 1px solid rgba(141, 51, 39, 0.2);
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.12) 0 1px, transparent 1px 32px),
    var(--home-green);
}

.apothecary-site.home-page .feature-band .content-narrow {
  gap: 1rem;
}

.apothecary-site.home-page .feature-band h2,
.apothecary-site.home-page .feature-band strong {
  color: #fff8ea;
}

.apothecary-site.home-page .feature-band p,
.apothecary-site.home-page .feature-band span {
  color: rgba(255, 248, 234, 0.75);
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(290px, 0.88fr) minmax(0, 1.12fr);
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 13ch;
    font-size: 2.38rem;
  }

  .apothecary-site.home-page .hero-media {
    width: 100%;
    min-height: 270px;
  }

  .apothecary-site.home-page .hero-picks,
  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
    max-width: none;
  }

  .apothecary-site.home-page .intent-panel .section-heading {
    align-items: start;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 370px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(141, 51, 39, 0.32) 0 7px, transparent 7px 100%),
      linear-gradient(180deg, #07110f 0, #123f37 56px, #fff8ea 56px, #fff8ea 68%, #ead0a1 100%);
  }

  .apothecary-site.home-page .hero-section,
  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics .content-narrow {
    width: min(100% - 0.72rem, 1180px);
    padding: 0.72rem;
    border-radius: 8px;
  }

  .apothecary-site.home-page .hero-section {
    margin-top: 0.54rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .apothecary-site.home-page .intro {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .apothecary-site.home-page .hero-media {
    min-height: 220px;
  }

  .apothecary-site.home-page .hero-picks a {
    min-height: 76px;
  }

  .apothecary-site.home-page .question-grid,
  .apothecary-site.home-page .path-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .intent-panel .section-heading h2,
  .apothecary-site.home-page #topics h2 {
    font-size: 1.28rem;
  }

  .apothecary-site.home-page .question-card,
  .apothecary-site.home-page .path-card {
    min-height: 0;
  }

  .apothecary-site.home-page .question-card {
    padding: 0.64rem 0.64rem 0.64rem 2.82rem;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 300px;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) h3 {
    font-size: 1.08rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 88px;
    padding: 0.42rem 2.44rem 0.42rem 0.42rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 74px;
    min-height: 74px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.8rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
  .apothecary-site.home-page .topic-card:nth-child(7) p {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 1.76rem;
  }

  .apothecary-site.home-page .hero-media {
    min-height: 190px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 66px;
    min-height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .path-card:hover,
  .apothecary-site.home-page .path-card:focus-visible {
    transform: none;
  }
}

/* Home cover boost v10: stronger editorial click design. */
body.apothecary-site.home-page {
  --home-paper: #fff8ea;
  --home-paper-deep: #ead0a1;
  --home-ink: #111915;
  --home-green: #123f37;
  --home-green-dark: #07110f;
  --home-red: #8d3327;
  --home-gold: #d9ae5f;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.32) 0 10px, transparent 10px 100%),
    linear-gradient(180deg, #07110f 0, #123f37 64px, #fff8ea 64px, #fff8ea 58%, #ead0a1 100%);
  color: var(--home-ink);
}

.apothecary-site.home-page .site-header {
  border-bottom: 1px solid rgba(217, 174, 95, 0.34);
  background: rgba(7, 17, 15, 0.94);
  box-shadow: 0 10px 24px rgba(7, 17, 15, 0.18);
}

.apothecary-site.home-page .nav {
  min-height: 58px;
}

.apothecary-site.home-page .brand,
.apothecary-site.home-page .nav-links a {
  color: #fff8ea;
}

.apothecary-site.home-page .brand-mark {
  border-color: rgba(217, 174, 95, 0.72);
  background: #d9ae5f;
  color: #07110f;
}

.apothecary-site.home-page .hero-section,
.apothecary-site.home-page .reader-board,
.apothecary-site.home-page .intent-panel,
.apothecary-site.home-page #topics .content-narrow {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.apothecary-site.home-page .hero-section {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  min-height: 455px;
  margin-top: 1.05rem;
  padding: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.22) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #07110f 0, #123f37 57%, #8d3327 100%);
  box-shadow: 0 24px 58px rgba(7, 17, 15, 0.24);
}

.apothecary-site.home-page .hero-section::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.16), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 248, 234, 0.06) 0 1px, transparent 1px 23px);
  opacity: 1;
}

.apothecary-site.home-page .hero-section::after {
  right: 1.05rem;
  bottom: 1.05rem;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(217, 174, 95, 0.46);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(217, 174, 95, 0.34), rgba(141, 51, 39, 0.12)),
    radial-gradient(circle at center, transparent 0 43%, rgba(217, 174, 95, 0.38) 44% 46%, transparent 47%);
  opacity: 0.56;
}

.apothecary-site.home-page .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  align-self: center;
  padding: 0.25rem 0 0.25rem 0.15rem;
}

.apothecary-site.home-page .hero-section .eyebrow,
.apothecary-site.home-page .reader-board .eyebrow,
.apothecary-site.home-page .intent-panel .eyebrow,
.apothecary-site.home-page #topics .eyebrow {
  width: fit-content;
  margin-bottom: 0.52rem;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(217, 174, 95, 0.42);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.1);
  color: #d9ae5f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 12ch;
  margin-bottom: 0.55rem;
  color: #fff8ea;
  font-size: 3.18rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.apothecary-site.home-page .intro {
  max-width: 58ch;
  color: rgba(255, 248, 234, 0.84);
  font-size: 0.98rem;
  line-height: 1.58;
}

.apothecary-site.home-page .hero-actions {
  gap: 0.58rem;
  margin-top: 0.9rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 44px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .primary-link {
  border: 1px solid rgba(255, 248, 234, 0.3);
  background: #d9ae5f;
  color: #07110f;
  box-shadow: 0 12px 24px rgba(217, 174, 95, 0.2);
}

.apothecary-site.home-page .secondary-link {
  border: 1px solid rgba(217, 174, 95, 0.5);
  background: rgba(255, 248, 234, 0.08);
  color: #fff8ea;
}

.apothecary-site.home-page .hero-picks {
  counter-reset: hero-pick;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
  margin-top: 1rem;
}

.apothecary-site.home-page .hero-picks a {
  counter-increment: hero-pick;
  position: relative;
  min-height: 92px;
  padding: 0.68rem 0.7rem 0.7rem 2.7rem;
  border: 1px solid rgba(217, 174, 95, 0.28);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.42);
  color: #fff8ea;
}

.apothecary-site.home-page .hero-picks a::before {
  content: "0" counter(hero-pick);
  position: absolute;
  top: 0.68rem;
  left: 0.66rem;
  display: inline-grid;
  width: 1.46rem;
  height: 1.46rem;
  place-items: center;
  border: 1px solid rgba(217, 174, 95, 0.5);
  border-radius: 50%;
  color: #d9ae5f;
  font-size: 0.68rem;
  font-weight: 900;
}

.apothecary-site.home-page .hero-picks span {
  display: block;
  margin-bottom: 0.22rem;
  color: #d9ae5f;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-picks strong {
  color: #fff8ea;
  font-size: 0.82rem;
  line-height: 1.26;
}

.apothecary-site.home-page .hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 95, 0.42);
  border-radius: 8px;
  background: #07110f;
  box-shadow: 0 20px 40px rgba(7, 17, 15, 0.28);
}

.apothecary-site.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apothecary-site.home-page .hero-media::after {
  content: "Feature archive";
  position: absolute;
  right: 0.74rem;
  bottom: 0.74rem;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(217, 174, 95, 0.56);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.76);
  color: #fff8ea;
  font-size: 0.68rem;
  font-weight: 850;
}

.apothecary-site.home-page .reader-board {
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding: 0.9rem;
  border: 1px solid rgba(18, 63, 55, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.1) 0 5px, transparent 5px),
    #fff8ea;
  box-shadow: 0 14px 30px rgba(65, 42, 24, 0.11);
}

.apothecary-site.home-page .reader-board::before {
  content: none;
}

.apothecary-site.home-page .reader-board-copy {
  padding: 0.2rem 0.15rem;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 9ch;
  color: #123f37;
  font-size: 1.46rem;
  line-height: 1.06;
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  max-width: 25ch;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.84rem;
  line-height: 1.45;
}

.apothecary-site.home-page .question-grid {
  counter-reset: fan-question;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.apothecary-site.home-page .question-card {
  counter-increment: fan-question;
  min-height: 136px;
  padding: 0.68rem 0.7rem 0.72rem 3rem;
  border: 1px solid rgba(18, 63, 55, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.apothecary-site.home-page .question-card::before {
  content: counter(fan-question);
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  display: inline-grid;
  width: 1.62rem;
  height: 1.62rem;
  place-items: center;
  border-radius: 50%;
  background: #123f37;
  color: #fff8ea;
  font-size: 0.76rem;
  font-weight: 900;
}

.apothecary-site.home-page .question-card span {
  margin-bottom: 0.2rem;
  color: #8d3327;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card h3 {
  margin: 0;
  color: #111915;
  font-size: 0.96rem;
  line-height: 1.22;
}

.apothecary-site.home-page .question-card p {
  margin-top: 0.22rem;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.76rem;
  line-height: 1.4;
}

.apothecary-site.home-page .intent-panel {
  margin-top: 1.15rem;
  padding: 0.9rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 63, 55, 0.96), rgba(7, 17, 15, 0.96)),
    #123f37;
}

.apothecary-site.home-page .intent-panel .section-heading {
  align-items: end;
  gap: 0.8rem;
  margin-bottom: 0.72rem;
}

.apothecary-site.home-page .intent-panel .section-heading h2 {
  color: #fff8ea;
  font-size: 1.44rem;
  line-height: 1.1;
}

.apothecary-site.home-page .intent-panel .section-heading > p {
  max-width: 49ch;
  color: rgba(255, 248, 234, 0.72);
  font-size: 0.82rem;
  line-height: 1.42;
}

.apothecary-site.home-page .path-grid {
  gap: 0.58rem;
}

.apothecary-site.home-page .path-card {
  min-height: 132px;
  padding: 0.72rem;
  border: 1px solid rgba(217, 174, 95, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.08);
}

.apothecary-site.home-page .path-card span {
  color: #d9ae5f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .path-card h3 {
  margin-top: 0.32rem;
  color: #fff8ea;
  font-size: 0.92rem;
  line-height: 1.3;
}

.apothecary-site.home-page .path-card small {
  margin-top: 0.48rem;
  color: rgba(255, 248, 234, 0.68);
  font-size: 0.72rem;
}

.apothecary-site.home-page #topics.content-section {
  padding-top: 1.2rem;
}

.apothecary-site.home-page #topics .content-narrow {
  padding: 1rem;
  border: 1px solid rgba(18, 63, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.86);
  box-shadow: 0 16px 36px rgba(65, 42, 24, 0.1);
}

.apothecary-site.home-page #topics .eyebrow {
  background: rgba(18, 63, 55, 0.08);
  color: #8d3327;
}

.apothecary-site.home-page #topics h2 {
  color: #123f37;
  font-size: 1.7rem;
  line-height: 1.1;
}

.apothecary-site.home-page .section-intro {
  max-width: 62ch;
  margin-top: 0.28rem;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.86rem;
  line-height: 1.48;
}

.apothecary-site.home-page .topic-grid {
  counter-reset: topic;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  grid-auto-flow: dense;
  gap: 0.68rem;
  margin-top: 0.82rem;
}

.apothecary-site.home-page .topic-card {
  counter-increment: topic;
  border: 1px solid rgba(18, 63, 55, 0.14);
  border-radius: 8px;
  box-shadow: none;
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  min-height: 456px;
  padding: 0.92rem;
  background: #07110f;
}

.apothecary-site.home-page .topic-card:nth-child(1)::after {
  inset: 0.68rem;
  border-color: rgba(217, 174, 95, 0.42);
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-label {
  width: fit-content;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.68);
  color: #d9ae5f;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 17ch;
  font-size: 1.42rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  position: relative;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 102px;
  padding: 0.46rem 2.7rem 0.46rem 0.46rem;
  column-gap: 0.58rem;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.11) 0 4px, transparent 4px),
    rgba(255, 255, 255, 0.72);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1))::before,
.apothecary-site.home-page .topic-card:nth-child(7)::before {
  content: "0" counter(topic);
  position: absolute;
  top: 0.52rem;
  right: 0.56rem;
  display: inline-grid;
  width: 1.72rem;
  height: 1.72rem;
  place-items: center;
  border: 1px solid rgba(141, 51, 39, 0.28);
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.84);
  color: #8d3327;
  font-size: 0.68rem;
  font-weight: 900;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  width: 88px;
  min-height: 88px;
  border-radius: 6px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  color: #8d3327;
  font-size: 0.62rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  padding-right: 0.1rem;
  font-size: 0.88rem;
  line-height: 1.2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  margin-top: 0.16rem;
  font-size: 0.72rem;
  line-height: 1.32;
}

.apothecary-site.home-page .topic-card .card-link {
  min-height: 32px;
  padding: 0 0.64rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible,
.apothecary-site.home-page .hero-picks a:hover,
.apothecary-site.home-page .hero-picks a:focus-visible,
.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible,
.apothecary-site.home-page .path-card:hover,
.apothecary-site.home-page .path-card:focus-visible {
  border-color: rgba(217, 174, 95, 0.62);
  box-shadow: 0 16px 30px rgba(65, 42, 24, 0.16);
  transform: translateY(-2px);
}

.apothecary-site.home-page .feature-band {
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(217, 174, 95, 0.26);
  border-bottom: 1px solid rgba(141, 51, 39, 0.2);
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.12) 0 1px, transparent 1px 32px),
    #123f37;
}

.apothecary-site.home-page .feature-band .content-narrow {
  gap: 1rem;
}

.apothecary-site.home-page .feature-band h2,
.apothecary-site.home-page .feature-band strong {
  color: #fff8ea;
}

.apothecary-site.home-page .feature-band p,
.apothecary-site.home-page .feature-band span {
  color: rgba(255, 248, 234, 0.75);
}

.apothecary-site.home-page .feature-band .method-list > div,
.apothecary-site.home-page .standards-grid article,
.apothecary-site.home-page details {
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(290px, 0.88fr) minmax(0, 1.12fr);
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 13ch;
    font-size: 2.38rem;
  }

  .apothecary-site.home-page .hero-media {
    width: 100%;
    min-height: 270px;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
    max-width: none;
  }

  .apothecary-site.home-page .intent-panel .section-heading {
    align-items: start;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 370px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(141, 51, 39, 0.32) 0 7px, transparent 7px 100%),
      linear-gradient(180deg, #07110f 0, #123f37 56px, #fff8ea 56px, #fff8ea 68%, #ead0a1 100%);
  }

  .apothecary-site.home-page .hero-section,
  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics .content-narrow {
    width: min(100% - 0.72rem, 1180px);
  }

  .apothecary-site.home-page .hero-section {
    margin-top: 0.54rem;
    padding: 0.72rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .apothecary-site.home-page .intro {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .apothecary-site.home-page .hero-media {
    min-height: 220px;
  }

  .apothecary-site.home-page .hero-picks a {
    min-height: 76px;
  }

  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics .content-narrow {
    padding: 0.72rem;
  }

  .apothecary-site.home-page .question-grid,
  .apothecary-site.home-page .path-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2,
  .apothecary-site.home-page .intent-panel .section-heading h2,
  .apothecary-site.home-page #topics h2 {
    font-size: 1.28rem;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
    padding: 0.64rem 0.64rem 0.64rem 2.82rem;
  }

  .apothecary-site.home-page .path-card {
    min-height: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 300px;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) h3 {
    font-size: 1.08rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 88px;
    padding: 0.42rem 2.44rem 0.42rem 0.42rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 74px;
    min-height: 74px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.8rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
  .apothecary-site.home-page .topic-card:nth-child(7) p {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 1.76rem;
  }

  .apothecary-site.home-page .hero-media {
    min-height: 190px;
  }

  .apothecary-site.home-page .hero-picks a {
    padding-right: 0.58rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 66px;
    min-height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .path-card:hover,
  .apothecary-site.home-page .path-card:focus-visible {
    transform: none;
  }
}

/* Home editorial boost: tighter magazine index and stronger click affordance. */
body.apothecary-site.home-page {
  --home-ink: #0d1f1a;
  --home-jade: #174e43;
  --home-red: #7c2a22;
  --home-gold: #dfb35e;
  --home-paper: #fff8ec;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(124, 42, 34, 0.045) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #07110f 0, #102b25 18rem, #7c2a22 18.06rem, #dfb35e 18.16rem, #fff8ec 34rem, #edd5a8 100%);
}

.apothecary-site.home-page main::before {
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(255, 248, 236, 0.075) 34.15% 34.7%, transparent 34.9% 100%),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0 1px, transparent 1px 30px),
    linear-gradient(90deg, rgba(223, 179, 94, 0.08), transparent 28%, rgba(124, 42, 34, 0.09));
}

.apothecary-site.home-page .hero-section {
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.62fr);
  gap: clamp(0.95rem, 2.4vw, 1.7rem);
  min-height: clamp(470px, 62vh, 590px);
  padding: clamp(1rem, 2.4vw, 1.7rem);
  border-color: rgba(223, 179, 94, 0.42);
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.98) 0%, rgba(18, 70, 59, 0.94) 54%, rgba(124, 42, 34, 0.72) 100%),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.07) 0 1px, transparent 1px 58px);
  box-shadow: 0 34px 76px rgba(7, 17, 15, 0.36);
}

.apothecary-site.home-page .hero-section::before {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.1), transparent 36%),
    repeating-linear-gradient(0deg, rgba(223, 179, 94, 0.08) 0 1px, transparent 1px 58px);
}

.apothecary-site.home-page .hero-copy {
  padding: clamp(0.25rem, 0.9vw, 0.55rem);
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 4.7vw, 3.55rem);
  line-height: 1;
}

.apothecary-site.home-page .intro {
  max-width: 54ch;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
}

.apothecary-site.home-page .hero-media {
  width: min(100%, 360px);
  justify-self: end;
  border-color: rgba(255, 248, 236, 0.34);
}

.apothecary-site.home-page .hero-media img {
  object-position: center 38%;
  filter: saturate(1.04) contrast(1.02);
}

.apothecary-site.home-page .hero-picks {
  gap: 0.45rem;
  margin-top: 0.82rem;
}

.apothecary-site.home-page .hero-picks a {
  min-height: 4.55rem;
  padding: 0.62rem 0.66rem;
  border-color: rgba(223, 179, 94, 0.34);
}

.apothecary-site.home-page .hero-picks a::before {
  width: 1.9rem;
  height: 1.9rem;
  border-color: rgba(223, 179, 94, 0.54);
}

.apothecary-site.home-page .hero-picks strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.apothecary-site.home-page .reader-board {
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1.68fr);
  padding: 0.68rem;
  gap: 0.56rem;
  border-color: rgba(223, 179, 94, 0.38);
  background:
    linear-gradient(90deg, rgba(223, 179, 94, 0.1) 0 1px, transparent 1px 54px),
    linear-gradient(135deg, #0b1815 0%, #174e43 58%, #7c2a22 140%);
}

.apothecary-site.home-page .reader-board-copy {
  padding: 0.64rem;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 12ch;
  font-size: clamp(1.18rem, 1.9vw, 1.48rem);
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  font-size: 0.78rem;
  line-height: 1.42;
}

.apothecary-site.home-page .question-grid {
  gap: 0.44rem;
}

.apothecary-site.home-page .question-card {
  display: flex;
  min-height: 108px;
  padding: 0.6rem 0.62rem;
  border-color: rgba(223, 179, 94, 0.34);
  background:
    linear-gradient(90deg, rgba(124, 42, 34, 0.24) 0 4px, transparent 4px),
    linear-gradient(180deg, #fffaf0 0%, #f4dfbb 100%);
}

.apothecary-site.home-page .question-card h3 {
  font-size: 0.82rem;
}

.apothecary-site.home-page .question-card p {
  font-size: 0.72rem;
}

.apothecary-site.home-page .question-card::after {
  content: "Read guide";
  min-height: 18px;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .intent-panel {
  padding: clamp(0.78rem, 1.7vw, 1.06rem);
  border-color: rgba(124, 42, 34, 0.22);
}

.apothecary-site.home-page .intent-panel .section-heading {
  margin-bottom: 0.58rem;
}

.apothecary-site.home-page .intent-panel .section-heading h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.68rem);
}

.apothecary-site.home-page .intent-panel .section-heading > p {
  font-size: 0.84rem;
}

.apothecary-site.home-page .path-grid {
  gap: 0.46rem;
}

.apothecary-site.home-page .path-card {
  padding: 0.68rem;
  border-left: 4px solid rgba(124, 42, 34, 0.38);
}

.apothecary-site.home-page .path-card h3 {
  font-size: 0.84rem;
  line-height: 1.32;
}

.apothecary-site.home-page .path-card small {
  margin-top: 0.52rem;
}

.apothecary-site.home-page .content-section#topics {
  padding-top: clamp(1.1rem, 2.4vw, 1.8rem);
  background:
    repeating-linear-gradient(90deg, rgba(23, 78, 67, 0.06) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(124, 42, 34, 0.042) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #fff8ec 0%, #efd9b0 42%, #fff8ec 100%);
}

.apothecary-site.home-page #topics .content-narrow {
  padding: clamp(0.82rem, 1.8vw, 1.08rem);
  border-color: rgba(87, 55, 31, 0.2);
  background:
    linear-gradient(90deg, rgba(124, 42, 34, 0.08) 0 5px, transparent 5px),
    linear-gradient(180deg, rgba(255, 251, 244, 0.99), rgba(238, 216, 176, 0.96));
}

.apothecary-site.home-page #topics .content-narrow::before {
  inset: -0.9rem -1rem auto;
  height: 5px;
  background: linear-gradient(90deg, #174e43, #dfb35e 48%, #7c2a22);
}

.apothecary-site.home-page #topics h2 {
  max-width: none;
  font-size: clamp(1.32rem, 2.5vw, 1.82rem);
}

.apothecary-site.home-page #topics .section-intro {
  max-width: 70ch;
  margin-bottom: 0.72rem;
  font-size: 0.82rem;
}

.apothecary-site.home-page .topic-grid {
  grid-template-columns: minmax(315px, 0.86fr) minmax(0, 1.14fr);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(92px, auto);
  gap: 0.46rem;
}

.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .topic-card[href] {
  border-color: rgba(87, 55, 31, 0.18);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.99);
  box-shadow: 0 10px 22px rgba(65, 42, 24, 0.12);
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  grid-row: span 6;
  min-height: 560px;
  padding: clamp(0.86rem, 1.7vw, 1.16rem);
}

.apothecary-site.home-page .topic-card:nth-child(1)::after {
  inset: 0.62rem;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 18ch;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
}

.apothecary-site.home-page .topic-card:nth-child(1) p {
  max-width: 38ch;
  font-size: 0.8rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  grid-column: 2;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  min-height: 96px;
  padding: 0.5rem;
  column-gap: 0.54rem;
  background:
    linear-gradient(90deg, rgba(23, 78, 67, 0.13) 0 4px, transparent 4px),
    rgba(255, 251, 244, 0.99);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  grid-column: 1;
  grid-row: 1 / span 4;
  width: 94px;
  min-height: 94px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) h3,
.apothecary-site.home-page .topic-card:nth-child(7) p,
.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  grid-column: 2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  margin-bottom: 0.16rem;
  font-size: 0.58rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  margin-top: 0;
  font-size: 0.82rem;
  line-height: 1.22;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  margin-top: 0.18rem;
  color: rgba(36, 27, 19, 0.7);
  font-size: 0.7rem;
  line-height: 1.32;
}

.apothecary-site.home-page .topic-card .card-link {
  font-size: 0.68rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 42, 34, 0.42);
  box-shadow: 0 18px 34px rgba(65, 42, 24, 0.17);
}

.apothecary-site.home-page .feature-band {
  margin-top: clamp(1.1rem, 2.5vw, 1.8rem);
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
    min-height: auto;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(285px, 0.8fr) minmax(0, 1.2fr);
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 500px;
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section,
  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 320px);
    justify-self: start;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    grid-row: auto;
    min-height: 330px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.045) 0 1px, transparent 1px 34px),
      linear-gradient(180deg, #07110f 0, #123229 16rem, #7c2a22 16.05rem, #dfb35e 16.12rem, #fff8ec 30rem, #edd5a8 100%);
  }

  .apothecary-site.home-page .hero-section {
    min-height: auto;
    padding: 0.86rem;
  }

  .apothecary-site.home-page .hero-section h1 {
    max-width: 12ch;
    font-size: clamp(1.9rem, 8.8vw, 2.44rem);
  }

  .apothecary-site.home-page .intro {
    font-size: 0.88rem;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 300px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 92px;
    padding: 0.44rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 78px;
    min-height: 78px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
  .apothecary-site.home-page .topic-card:nth-child(7) p {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 70px;
    min-height: 70px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.78rem;
  }
}

/* Home cover boost v8: content-first anime magazine index. */
body.apothecary-site.home-page {
  --home-ink: #111915;
  --home-soft-ink: #3d4a3e;
  --home-jade: #123f37;
  --home-jade-2: #1f6b59;
  --home-cinnabar: #8d3327;
  --home-gold: #d9ae5f;
  --home-ivory: #fff9ef;
  --home-paper: #f4e2bd;
  color: var(--home-ink);
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.26) 0 10px, transparent 10px 100%),
    repeating-linear-gradient(90deg, rgba(255, 249, 239, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(141, 51, 39, 0.05) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #06100e 0, #123f37 420px, #8d3327 421px, #d9ae5f 425px, #fff9ef 720px, #ead0a1 100%);
}

.apothecary-site.home-page main {
  position: relative;
  overflow: hidden;
}

.apothecary-site.home-page main::before {
  opacity: 1;
  background:
    linear-gradient(115deg, transparent 0 31%, rgba(217, 174, 95, 0.16) 31.2% 31.7%, transparent 32% 100%),
    linear-gradient(90deg, rgba(255, 249, 239, 0.08), transparent 30%, rgba(141, 51, 39, 0.12));
}

.apothecary-site.home-page .site-header {
  border-bottom: 1px solid rgba(217, 174, 95, 0.24);
  background: rgba(6, 16, 14, 0.86);
  backdrop-filter: blur(10px);
}

.apothecary-site.home-page .nav {
  min-height: 68px;
  max-width: 1180px;
}

.apothecary-site.home-page .brand {
  color: #fff9ef;
}

.apothecary-site.home-page .brand-mark {
  border-color: rgba(217, 174, 95, 0.78);
  background: #d9ae5f;
  color: #111915;
}

.apothecary-site.home-page .nav-links a {
  color: rgba(255, 249, 239, 0.84);
}

.apothecary-site.home-page .nav-links a:hover,
.apothecary-site.home-page .nav-links a:focus-visible {
  color: #fff9ef;
  background: rgba(255, 249, 239, 0.1);
}

.apothecary-site.home-page .hero-section {
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 390px);
  align-items: center;
  gap: 1.35rem;
  min-height: 535px;
  max-width: 1180px;
  margin: 1.25rem auto 0;
  padding: 1.45rem;
  border: 1px solid rgba(217, 174, 95, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.98) 0%, rgba(18, 63, 55, 0.97) 55%, rgba(141, 51, 39, 0.78) 100%),
    repeating-linear-gradient(90deg, rgba(255, 249, 239, 0.08) 0 1px, transparent 1px 60px);
  box-shadow: 0 28px 62px rgba(6, 16, 14, 0.38);
}

.apothecary-site.home-page .hero-section::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.11), transparent 42%),
    repeating-linear-gradient(0deg, rgba(217, 174, 95, 0.08) 0 1px, transparent 1px 52px);
}

.apothecary-site.home-page .hero-section::after {
  inset: 0.65rem;
  border: 1px solid rgba(217, 174, 95, 0.24);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(217, 174, 95, 0.1), transparent 24%, rgba(255, 249, 239, 0.08));
}

.apothecary-site.home-page .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0.2rem 0 0.2rem 0.1rem;
}

.apothecary-site.home-page .eyebrow {
  letter-spacing: 0;
}

.apothecary-site.home-page .hero-section h1 {
  max-width: 11.4ch;
  color: #fff9ef;
  font-size: 3.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.apothecary-site.home-page .intro {
  max-width: 53ch;
  color: rgba(255, 249, 239, 0.84);
  font-size: 1rem;
  line-height: 1.62;
}

.apothecary-site.home-page .hero-actions {
  gap: 0.6rem;
  margin-top: 1.05rem;
}

.apothecary-site.home-page .primary-link,
.apothecary-site.home-page .secondary-link {
  min-height: 44px;
  border-radius: 6px;
  letter-spacing: 0;
}

.apothecary-site.home-page .primary-link {
  background: #d9ae5f;
  color: #111915;
  box-shadow: 0 12px 28px rgba(6, 16, 14, 0.24);
}

.apothecary-site.home-page .secondary-link {
  border-color: rgba(255, 249, 239, 0.42);
  color: #fff9ef;
  background: rgba(255, 249, 239, 0.08);
}

.apothecary-site.home-page .primary-link:hover,
.apothecary-site.home-page .primary-link:focus-visible,
.apothecary-site.home-page .secondary-link:hover,
.apothecary-site.home-page .secondary-link:focus-visible {
  transform: translateY(-1px);
}

.apothecary-site.home-page .hero-media {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 380px);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 249, 239, 0.42);
  border-radius: 8px;
  background: #091512;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.apothecary-site.home-page .hero-media::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  pointer-events: none;
  border: 1px solid rgba(217, 174, 95, 0.34);
  border-radius: 5px;
}

.apothecary-site.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.05) contrast(1.03);
}

.apothecary-site.home-page .hero-picks {
  counter-reset: home-pick;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.apothecary-site.home-page .hero-picks a {
  counter-increment: home-pick;
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-content: center;
  min-height: 76px;
  padding: 0.66rem 0.7rem;
  border: 1px solid rgba(217, 174, 95, 0.34);
  border-radius: 7px;
  color: #fff9ef;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.11), rgba(255, 249, 239, 0.045)),
    rgba(6, 16, 14, 0.45);
}

.apothecary-site.home-page .hero-picks a::before {
  content: counter(home-pick, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(217, 174, 95, 0.58);
  border-radius: 999px;
  color: #d9ae5f;
  font-size: 0.68rem;
  font-weight: 800;
}

.apothecary-site.home-page .hero-picks a::after {
  content: "Open";
  position: absolute;
  right: 0.62rem;
  bottom: 0.48rem;
  color: rgba(255, 249, 239, 0.64);
  font-size: 0.68rem;
  font-weight: 800;
}

.apothecary-site.home-page .hero-picks span,
.apothecary-site.home-page .hero-picks strong {
  grid-column: 2;
}

.apothecary-site.home-page .hero-picks span {
  color: rgba(217, 174, 95, 0.86);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apothecary-site.home-page .hero-picks strong {
  padding-right: 2.4rem;
  font-size: 0.82rem;
  line-height: 1.25;
}

.apothecary-site.home-page .hero-picks a:hover,
.apothecary-site.home-page .hero-picks a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 174, 95, 0.72);
  background:
    linear-gradient(180deg, rgba(217, 174, 95, 0.18), rgba(255, 249, 239, 0.06)),
    rgba(6, 16, 14, 0.6);
}

.apothecary-site.home-page .reader-board {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1.66fr);
  gap: 0.62rem;
  max-width: 1180px;
  padding: 0.72rem;
  border: 1px solid rgba(217, 174, 95, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 174, 95, 0.12) 0 1px, transparent 1px 56px),
    linear-gradient(135deg, #06100e 0%, #123f37 58%, #8d3327 132%);
}

.apothecary-site.home-page .reader-board-copy {
  padding: 0.74rem;
}

.apothecary-site.home-page .reader-board h2 {
  max-width: 13ch;
  color: #fff9ef;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.apothecary-site.home-page .reader-board-copy p:not(.eyebrow) {
  color: rgba(255, 249, 239, 0.72);
  font-size: 0.82rem;
  line-height: 1.48;
}

.apothecary-site.home-page .question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.48rem;
}

.apothecary-site.home-page .question-card {
  min-height: 148px;
  padding: 0.72rem;
  border: 1px solid rgba(217, 174, 95, 0.3);
  border-radius: 7px;
  color: var(--home-ink);
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.28) 0 4px, transparent 4px),
    linear-gradient(180deg, #fff9ef 0%, #f3ddb4 100%);
  box-shadow: 0 12px 24px rgba(6, 16, 14, 0.18);
}

.apothecary-site.home-page .question-card span {
  color: #8d3327;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card h3 {
  font-size: 0.91rem;
  line-height: 1.24;
}

.apothecary-site.home-page .question-card p {
  color: rgba(17, 25, 21, 0.72);
  font-size: 0.74rem;
  line-height: 1.4;
}

.apothecary-site.home-page .question-card::after {
  content: "Open guide";
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  min-height: 28px;
  margin-top: auto;
  padding: 0 0.56rem;
  border-radius: 999px;
  color: #fff9ef;
  background: #123f37;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.apothecary-site.home-page .question-card:hover,
.apothecary-site.home-page .question-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(141, 51, 39, 0.42);
  box-shadow: 0 16px 28px rgba(6, 16, 14, 0.24);
}

.apothecary-site.home-page .intent-panel {
  max-width: 1180px;
  padding: 1rem;
  border: 1px solid rgba(141, 51, 39, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.09) 0 6px, transparent 6px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(242, 218, 178, 0.96));
}

.apothecary-site.home-page .intent-panel .section-heading {
  margin-bottom: 0.74rem;
}

.apothecary-site.home-page .intent-panel .section-heading h2 {
  font-size: 1.62rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.apothecary-site.home-page .intent-panel .section-heading > p {
  max-width: 58ch;
  font-size: 0.88rem;
}

.apothecary-site.home-page .path-grid {
  gap: 0.58rem;
}

.apothecary-site.home-page .path-card {
  min-height: 132px;
  padding: 0.84rem;
  border: 1px solid rgba(18, 63, 55, 0.16);
  border-left: 5px solid rgba(141, 51, 39, 0.5);
  border-radius: 7px;
  background: rgba(255, 249, 239, 0.94);
}

.apothecary-site.home-page .path-card h3 {
  font-size: 0.9rem;
  line-height: 1.34;
}

.apothecary-site.home-page .path-card small {
  margin-top: auto;
  color: #8d3327;
}

.apothecary-site.home-page #topics {
  padding-top: 1.8rem;
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.1) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(141, 51, 39, 0.04) 0 1px, transparent 1px 56px),
    linear-gradient(180deg, #fff9ef 0%, #ead0a1 50%, #fff9ef 100%);
}

.apothecary-site.home-page #topics .content-narrow {
  max-width: 1180px;
  padding: 1rem;
  border: 1px solid rgba(87, 55, 31, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(141, 51, 39, 0.09) 0 6px, transparent 6px),
    linear-gradient(180deg, rgba(255, 249, 239, 0.99), rgba(240, 219, 183, 0.97));
  box-shadow: 0 18px 40px rgba(65, 42, 24, 0.13);
}

.apothecary-site.home-page #topics .content-narrow::before {
  inset: -0.78rem -0.9rem auto;
  height: 5px;
  background: linear-gradient(90deg, #123f37, #d9ae5f 50%, #8d3327);
}

.apothecary-site.home-page #topics h2 {
  max-width: none;
  font-size: 1.75rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.apothecary-site.home-page #topics .section-intro {
  max-width: 72ch;
  margin-bottom: 0.86rem;
  color: rgba(17, 25, 21, 0.72);
  font-size: 0.88rem;
  line-height: 1.52;
}

.apothecary-site.home-page .topic-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(98px, auto);
  gap: 0.54rem;
}

.apothecary-site.home-page .topic-card,
.apothecary-site.home-page .topic-card[href] {
  overflow: hidden;
  border: 1px solid rgba(87, 55, 31, 0.18);
  border-radius: 8px;
  color: var(--home-ink);
  background: rgba(255, 249, 239, 0.99);
  box-shadow: 0 10px 22px rgba(65, 42, 24, 0.11);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apothecary-site.home-page .topic-card:nth-child(1) {
  grid-column: 1;
  grid-row: span 6;
  min-height: 545px;
  padding: 0.92rem;
  background:
    linear-gradient(180deg, transparent 44%, rgba(6, 16, 14, 0.9) 100%),
    #123f37;
}

.apothecary-site.home-page .topic-card:nth-child(1)::after {
  inset: 0.58rem;
  border-color: rgba(217, 174, 95, 0.38);
}

.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb {
  min-height: 100%;
}

.apothecary-site.home-page .topic-card:nth-child(1) h3 {
  max-width: 18ch;
  color: #fff9ef;
  font-size: 1.34rem;
  line-height: 1.18;
}

.apothecary-site.home-page .topic-card:nth-child(1) p {
  max-width: 40ch;
  color: rgba(255, 249, 239, 0.78);
  font-size: 0.84rem;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)),
.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
.apothecary-site.home-page .topic-card:nth-child(7) {
  grid-column: 2;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 108px;
  padding: 0.5rem;
  column-gap: 0.62rem;
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.13) 0 4px, transparent 4px),
    rgba(255, 249, 239, 0.99);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1))::before,
.apothecary-site.home-page .topic-card:nth-child(7)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(217, 174, 95, 0.08), transparent 34%);
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  grid-column: 1;
  grid-row: 1 / span 5;
  width: 92px;
  min-height: 92px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.apothecary-site.home-page .topic-card .topic-thumb img {
  object-fit: cover;
  transition: transform 220ms ease;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) h3,
.apothecary-site.home-page .topic-card:nth-child(7) p,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  grid-column: 2;
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-label {
  margin: 0 0 0.14rem;
  color: #8d3327;
  font-size: 0.62rem;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
.apothecary-site.home-page .topic-card:nth-child(7) h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.22;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
.apothecary-site.home-page .topic-card:nth-child(7) p {
  display: -webkit-box;
  margin-top: 0.18rem;
  overflow: hidden;
  color: rgba(17, 25, 21, 0.7);
  font-size: 0.74rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  display: flex;
  gap: 0.28rem;
  margin-top: 0.35rem;
  overflow: hidden;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span,
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span {
  white-space: nowrap;
}

.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span:nth-child(n+3),
.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span:nth-child(n+3) {
  display: none;
}

.apothecary-site.home-page .topic-card .card-link {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 0.42rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(18, 63, 55, 0.24);
  border-radius: 999px;
  color: #fff9ef;
  background: #123f37;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
}

.apothecary-site.home-page .topic-card:nth-child(1) .card-link {
  background: #d9ae5f;
  color: #111915;
}

.apothecary-site.home-page .topic-card:hover,
.apothecary-site.home-page .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(141, 51, 39, 0.45);
  box-shadow: 0 18px 34px rgba(65, 42, 24, 0.18);
}

.apothecary-site.home-page .topic-card:hover .topic-thumb img,
.apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
  transform: scale(1.035);
}

.apothecary-site.home-page .feature-band {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(18, 63, 55, 0.18);
  border-bottom: 1px solid rgba(141, 51, 39, 0.18);
  background:
    linear-gradient(90deg, rgba(18, 63, 55, 0.11) 0 6px, transparent 6px),
    linear-gradient(180deg, #f8ecd4, #fff9ef);
}

.apothecary-site.home-page .method-list > div,
.apothecary-site.home-page .standards-grid article,
.apothecary-site.home-page details {
  border-radius: 8px;
  border-color: rgba(87, 55, 31, 0.18);
  background: rgba(255, 249, 239, 0.9);
}

.apothecary-site.home-page a:focus-visible {
  outline: 3px solid rgba(217, 174, 95, 0.9);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
    min-height: 500px;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 860px) {
  .apothecary-site.home-page .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.72rem;
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 340px);
    justify-self: center;
  }

  .apothecary-site.home-page .hero-picks {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .reader-board h2 {
    max-width: none;
  }

  .apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body.apothecary-site.home-page {
    background:
      linear-gradient(90deg, rgba(18, 63, 55, 0.22) 0 8px, transparent 8px 100%),
      repeating-linear-gradient(90deg, rgba(255, 249, 239, 0.05) 0 1px, transparent 1px 34px),
      linear-gradient(180deg, #06100e 0, #123f37 310px, #8d3327 311px, #d9ae5f 315px, #fff9ef 560px, #ead0a1 100%);
  }

  .apothecary-site.home-page .hero-section {
    margin-top: 0.7rem;
    padding: 0.86rem;
    border-radius: 0;
  }

  .apothecary-site.home-page .hero-section h1 {
    font-size: 2.24rem;
  }

  .apothecary-site.home-page .intro {
    font-size: 0.9rem;
  }

  .apothecary-site.home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link {
    width: 100%;
  }

  .apothecary-site.home-page .hero-media {
    width: min(100%, 300px);
  }

  .apothecary-site.home-page .reader-board,
  .apothecary-site.home-page .intent-panel,
  .apothecary-site.home-page #topics .content-narrow {
    border-radius: 0;
  }

  .apothecary-site.home-page .question-grid {
    grid-template-columns: 1fr;
  }

  .apothecary-site.home-page .question-card {
    min-height: 0;
  }

  .apothecary-site.home-page .topic-card:nth-child(1) {
    min-height: 330px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 96px;
    padding: 0.44rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 78px;
    min-height: 78px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
    display: none;
  }
}

@media (max-width: 420px) {
  .apothecary-site.home-page .hero-section h1 {
    font-size: 2rem;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
  .apothecary-site.home-page .topic-card:nth-child(7) {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
  .apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
    width: 70px;
    min-height: 70px;
  }

  .apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
  .apothecary-site.home-page .topic-card:nth-child(7) h3 {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apothecary-site.home-page .primary-link,
  .apothecary-site.home-page .secondary-link,
  .apothecary-site.home-page .hero-picks a,
  .apothecary-site.home-page .question-card,
  .apothecary-site.home-page .path-card,
  .apothecary-site.home-page .topic-card,
  .apothecary-site.home-page .topic-card .topic-thumb img {
    transition: none;
  }

  .apothecary-site.home-page .primary-link:hover,
  .apothecary-site.home-page .primary-link:focus-visible,
  .apothecary-site.home-page .secondary-link:hover,
  .apothecary-site.home-page .secondary-link:focus-visible,
  .apothecary-site.home-page .hero-picks a:hover,
  .apothecary-site.home-page .hero-picks a:focus-visible,
  .apothecary-site.home-page .question-card:hover,
  .apothecary-site.home-page .question-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover,
  .apothecary-site.home-page .topic-card:focus-visible,
  .apothecary-site.home-page .topic-card:hover .topic-thumb img,
  .apothecary-site.home-page .topic-card:focus-visible .topic-thumb img {
    transform: none;
  }
}
/* home-cover-boost-17-eof-override */
.apothecary-site.home-page .question-card::after {
  content: none;
  display: none;
}

/* home-cover-boost-18-clarity */
.apothecary-site.home-page .hero-media {
  overflow: hidden;
}

.apothecary-site.home-page .hero-media::before,
.apothecary-site.home-page .hero-media::after {
  content: none;
  display: none;
}

.apothecary-site.home-page .hero-media img {
  border-radius: 7px;
}

.apothecary-site.home-page .question-card {
  isolation: isolate;
  background-position: center 38%;
  box-shadow:
    inset 0 -132px 96px rgba(3, 10, 9, 0.88),
    inset 0 0 0 1px rgba(255, 249, 239, 0.08);
}

.apothecary-site.home-page .question-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 16, 13, 0.18) 0%, rgba(4, 16, 13, 0.58) 48%, rgba(3, 10, 9, 0.94) 100%);
}

.apothecary-site.home-page .question-card > * {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .question-card h3 {
  color: #fffef8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.74);
}

.apothecary-site.home-page .question-card p {
  color: rgba(255, 249, 239, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.62);
}

/* home-cover-boost-19-readable-cards */
.apothecary-site.home-page .hero-media {
  position: relative;
  overflow: hidden;
}

.apothecary-site.home-page .hero-media::before,
.apothecary-site.home-page .hero-media::after {
  content: none !important;
  display: none !important;
}

.apothecary-site.home-page .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

.apothecary-site.home-page .question-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  box-shadow:
    inset 0 -170px 118px rgba(3, 10, 9, 0.94),
    inset 0 0 0 1px rgba(255, 249, 239, 0.12);
}

.apothecary-site.home-page .question-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 10, 9, 0.06) 0%, rgba(3, 10, 9, 0.44) 38%, rgba(3, 10, 9, 0.96) 100%);
}

.apothecary-site.home-page .question-card span,
.apothecary-site.home-page .question-card h3,
.apothecary-site.home-page .question-card p,
.apothecary-site.home-page .question-card .question-cta {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .question-card span {
  color: rgba(255, 249, 239, 0.82);
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.72);
}

.apothecary-site.home-page .question-card h3 {
  color: #fffdf6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.86);
}

.apothecary-site.home-page .question-card p {
  color: rgba(255, 249, 239, 0.92);
  text-shadow: 0 1px 11px rgba(0, 0, 0, 0.74);
}

/* home-cover-boost-20-clean-hero-readable-cards */
.apothecary-site.home-page .hero-section::before,
.apothecary-site.home-page .hero-section::after,
.apothecary-site.home-page .hero-media::before,
.apothecary-site.home-page .hero-media::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.apothecary-site.home-page .hero-section {
  isolation: isolate;
}

.apothecary-site.home-page .hero-media,
.apothecary-site.home-page .hero-media img {
  position: relative;
  z-index: 1;
}

.apothecary-site.home-page .question-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  min-height: 236px;
  padding: 1.08rem;
  background-color: #06100e;
  background-position: center 42%;
  background-size: cover;
  box-shadow:
    inset 0 -220px 152px rgba(2, 8, 7, 0.98),
    inset 0 0 0 1px rgba(255, 249, 239, 0.16);
}

.apothecary-site.home-page .question-card::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 10, 9, 0.2) 0%, rgba(3, 10, 9, 0.7) 50%, rgba(2, 8, 7, 0.99) 100%);
}

.apothecary-site.home-page .question-card span,
.apothecary-site.home-page .question-card h3,
.apothecary-site.home-page .question-card p,
.apothecary-site.home-page .question-card .question-cta {
  position: relative;
  z-index: 2;
}

.apothecary-site.home-page .question-card span {
  color: rgba(255, 245, 220, 0.94);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.86);
}

.apothecary-site.home-page .question-card h3 {
  max-width: 18rem;
  color: #fffdf4;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.96),
    0 8px 26px rgba(0, 0, 0, 0.88);
}

.apothecary-site.home-page .question-card p {
  max-width: 19rem;
  color: rgba(255, 249, 239, 0.94);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.92),
    0 6px 18px rgba(0, 0, 0, 0.82);
}

.apothecary-site.home-page .question-card .question-cta {
  color: #ffe5a6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
}

/* home-cover-boost-21-final-clarity */
body.apothecary-site.home-page .hero-section::before,
body.apothecary-site.home-page .hero-section::after,
body.apothecary-site.home-page .hero-media::before,
body.apothecary-site.home-page .hero-media::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  mix-blend-mode: normal !important;
}

body.apothecary-site.home-page .hero-media {
  position: relative !important;
  z-index: 2 !important;
  overflow: hidden !important;
  background: #06100e !important;
  background-image: none !important;
  border: 1px solid rgba(255, 249, 239, 0.16) !important;
  box-shadow:
    0 26px 72px rgba(6, 16, 14, 0.36),
    0 0 0 1px rgba(217, 174, 95, 0.08) !important;
  isolation: isolate !important;
}

body.apothecary-site.home-page .hero-media > img {
  position: relative !important;
  z-index: 4 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  object-fit: cover !important;
  filter: none !important;
  backdrop-filter: none !important;
  mix-blend-mode: normal !important;
}

body.apothecary-site.home-page .hero-media figcaption {
  display: none !important;
}

body.apothecary-site.home-page .question-card {
  position: relative !important;
  display: flex !important;
  min-height: 236px !important;
  padding: 1.05rem !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background-color: #06100e !important;
  background-size: cover !important;
  background-position: center 40% !important;
  background-repeat: no-repeat !important;
  background-blend-mode: normal !important;
  border: 1px solid rgba(255, 249, 239, 0.18) !important;
  box-shadow:
    0 18px 42px rgba(6, 16, 14, 0.2),
    inset 0 0 0 1px rgba(255, 249, 239, 0.05) !important;
}

body.apothecary-site.home-page .question-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(3, 10, 9, 0.06) 0%, rgba(3, 10, 9, 0.35) 36%, rgba(3, 10, 9, 0.92) 78%, rgba(3, 10, 9, 0.98) 100%) !important;
}

body.apothecary-site.home-page .question-card::after {
  content: "" !important;
  position: absolute !important;
  right: 0.72rem !important;
  bottom: 0.72rem !important;
  left: 0.72rem !important;
  z-index: 2 !important;
  display: block !important;
  height: 58% !important;
  min-height: 118px !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(6, 16, 14, 0.78), rgba(6, 16, 14, 0.96)) !important;
  border: 1px solid rgba(255, 249, 239, 0.12) !important;
  border-radius: 7px !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34) !important;
}

body.apothecary-site.home-page .question-card span,
body.apothecary-site.home-page .question-card h3,
body.apothecary-site.home-page .question-card p,
body.apothecary-site.home-page .question-card .question-cta {
  position: relative !important;
  z-index: 3 !important;
  max-width: 21rem !important;
}

body.apothecary-site.home-page .question-card span {
  align-self: flex-start !important;
  padding: 0.22rem 0.46rem !important;
  color: #2b170c !important;
  background: rgba(255, 232, 176, 0.94) !important;
  border-radius: 999px !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page .question-card h3 {
  color: #fffaf0 !important;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem) !important;
  line-height: 1.15 !important;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.96),
    0 8px 22px rgba(0, 0, 0, 0.82) !important;
}

body.apothecary-site.home-page .question-card p {
  color: rgba(255, 249, 239, 0.9) !important;
  font-size: 0.9rem !important;
  line-height: 1.42 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72) !important;
}

body.apothecary-site.home-page .question-card .question-cta {
  align-self: flex-start !important;
  padding: 0.34rem 0.54rem !important;
  color: #211107 !important;
  background: rgba(239, 195, 104, 0.96) !important;
  border-radius: 999px !important;
  text-shadow: none !important;
}

@media (max-width: 700px) {
  body.apothecary-site.home-page .question-card {
    min-height: 206px !important;
  }

  body.apothecary-site.home-page .question-card::after {
    height: 64% !important;
  }
}

/* home-cover-boost-22-remove-main-mask-readable-question-cards */
body.apothecary-site.home-page main::before,
body.apothecary-site.home-page main::after,
body.apothecary-site.home-page .hero-section::before,
body.apothecary-site.home-page .hero-section::after,
body.apothecary-site.home-page .hero-media::before,
body.apothecary-site.home-page .hero-media::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
}

body.apothecary-site.home-page main,
body.apothecary-site.home-page .hero-section,
body.apothecary-site.home-page .hero-media {
  isolation: isolate !important;
}

body.apothecary-site.home-page .hero-media {
  background-image: none !important;
}

body.apothecary-site.home-page .hero-media > img {
  position: relative !important;
  z-index: 5 !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

body.apothecary-site.home-page .question-card {
  flex-direction: column !important;
  justify-content: flex-end !important;
  gap: 0.48rem !important;
  min-height: 224px !important;
  padding: 0.92rem !important;
  background-position: center 42% !important;
}

body.apothecary-site.home-page .question-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  background:
    linear-gradient(180deg, rgba(3, 10, 9, 0.16) 0%, rgba(3, 10, 9, 0.44) 35%, rgba(3, 10, 9, 0.9) 78%, rgba(3, 10, 9, 0.98) 100%) !important;
}

body.apothecary-site.home-page .question-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0.68rem !important;
  z-index: 2 !important;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(4, 14, 12, 0.62), rgba(4, 12, 10, 0.94)) !important;
  border: 1px solid rgba(255, 249, 239, 0.14) !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36) !important;
}

body.apothecary-site.home-page .question-card span,
body.apothecary-site.home-page .question-card h3,
body.apothecary-site.home-page .question-card p,
body.apothecary-site.home-page .question-card .question-cta {
  position: relative !important;
  z-index: 3 !important;
  max-width: 100% !important;
}

body.apothecary-site.home-page .question-card h3 {
  color: #fffaf0 !important;
  font-size: clamp(1rem, 1.18vw, 1.14rem) !important;
  line-height: 1.2 !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.98), 0 8px 22px rgba(0, 0, 0, 0.9) !important;
}

body.apothecary-site.home-page .question-card p {
  color: rgba(255, 249, 239, 0.92) !important;
  font-size: 0.88rem !important;
  line-height: 1.42 !important;
}

@media (max-width: 700px) {
  body.apothecary-site.home-page .question-card {
    min-height: 198px !important;
  }

  body.apothecary-site.home-page .question-card::after {
    inset: 0.58rem !important;
  }
}

/* home-cover-boost-23-clean-hero-sharper-question-cards */
body.apothecary-site.home-page main::before,
body.apothecary-site.home-page main::after,
body.apothecary-site.home-page .hero-section::before,
body.apothecary-site.home-page .hero-section::after,
body.apothecary-site.home-page .hero-media::before,
body.apothecary-site.home-page .hero-media::after {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
}

body.apothecary-site.home-page .hero-media {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #07130f !important;
  background-image: none !important;
}

body.apothecary-site.home-page .hero-media > img {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  object-fit: cover !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  clip-path: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.apothecary-site.home-page .question-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  gap: 0.48rem !important;
  min-height: 224px !important;
  padding: 0.96rem !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background-color: #06100e !important;
  background-size: cover !important;
  background-position: center 42% !important;
  background-repeat: no-repeat !important;
  background-blend-mode: normal !important;
  border: 1px solid rgba(255, 249, 239, 0.2) !important;
}

body.apothecary-site.home-page .question-card::after {
  content: none !important;
  display: none !important;
}

body.apothecary-site.home-page .question-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(3, 10, 9, 0.02) 0%,
      rgba(3, 10, 9, 0.12) 28%,
      rgba(3, 10, 9, 0.58) 58%,
      rgba(3, 10, 9, 0.95) 100%
    ) !important;
}

body.apothecary-site.home-page .question-card span,
body.apothecary-site.home-page .question-card h3,
body.apothecary-site.home-page .question-card p,
body.apothecary-site.home-page .question-card .question-cta {
  position: relative !important;
  z-index: 2 !important;
  max-width: 100% !important;
}

body.apothecary-site.home-page .question-card h3 {
  color: #fffaf0 !important;
  font-size: clamp(1rem, 1.12vw, 1.12rem) !important;
  line-height: 1.2 !important;
  text-wrap: balance !important;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.98),
    0 8px 22px rgba(0, 0, 0, 0.92),
    0 0 1px rgba(0, 0, 0, 1) !important;
}

body.apothecary-site.home-page .question-card p {
  color: rgba(255, 249, 239, 0.93) !important;
  font-size: 0.88rem !important;
  line-height: 1.42 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78) !important;
}

@media (max-width: 700px) {
  body.apothecary-site.home-page .question-card {
    min-height: 198px !important;
  }
}

/* home-resilient-article-grid-24 */
body.apothecary-site.home-page .question-grid,
body.apothecary-site.home-page .shelf-grid,
body.apothecary-site.home-page .topic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
  align-items: stretch !important;
}

body.apothecary-site.home-page .shelf-card,
body.apothecary-site.home-page .shelf-card-large,
body.apothecary-site.home-page .topic-card:nth-child(n),
body.apothecary-site.home-page .topic-card[href]:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
  min-width: 0 !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n),
body.apothecary-site.home-page .topic-card[href]:nth-child(n) {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.82rem !important;
  min-height: 100% !important;
  padding: 1rem !important;
  overflow: hidden !important;
  background: rgba(255, 252, 246, 0.96) !important;
  border: 1px solid rgba(78, 49, 29, 0.14) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 34px rgba(34, 20, 12, 0.08) !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n)::before,
body.apothecary-site.home-page .topic-card:nth-child(n)::after,
body.apothecary-site.home-page .topic-card[href]:nth-child(n)::before,
body.apothecary-site.home-page .topic-card[href]:nth-child(n)::after {
  content: none !important;
  display: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb {
  order: 0 !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  background: #efe4d4 !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-label,
body.apothecary-site.home-page .topic-card:nth-child(n) h3,
body.apothecary-site.home-page .topic-card:nth-child(n) p,
body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta,
body.apothecary-site.home-page .topic-card:nth-child(n) .card-link {
  position: relative !important;
  z-index: 1 !important;
  width: auto !important;
  max-width: 100% !important;
  color: inherit !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) h3,
body.apothecary-site.home-page .shelf-card h3,
body.apothecary-site.home-page .question-card h3 {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) h3 {
  display: -webkit-box !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #28170e !important;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem) !important;
  line-height: 1.22 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  text-wrap: balance !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) p {
  display: -webkit-box !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: rgba(40, 23, 14, 0.76) !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-label {
  align-self: flex-start !important;
  padding: 0.28rem 0.52rem !important;
  color: #704016 !important;
  background: rgba(178, 107, 43, 0.12) !important;
  border: 1px solid rgba(178, 107, 43, 0.22) !important;
  border-radius: 999px !important;
  font-size: 0.73rem !important;
  letter-spacing: 0 !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.42rem !important;
  max-height: none !important;
  margin-top: auto !important;
  overflow: visible !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta span,
body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta span:nth-child(n) {
  display: inline-flex !important;
  max-width: 100% !important;
  padding: 0.24rem 0.46rem !important;
  color: rgba(40, 23, 14, 0.72) !important;
  background: rgba(40, 23, 14, 0.06) !important;
  border-radius: 999px !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .card-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  min-height: 44px !important;
  margin-top: 0.2rem !important;
  padding: 0.56rem 0.82rem !important;
  color: #fffaf0 !important;
  background: #7a431c !important;
  border-radius: 999px !important;
  font-size: 0.86rem !important;
  line-height: 1.1 !important;
}

body.apothecary-site.home-page .topic-card:hover,
body.apothecary-site.home-page .topic-card:focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 42px rgba(34, 20, 12, 0.13) !important;
}

body.apothecary-site.home-page .shelf-card {
  min-height: 100% !important;
  overflow: hidden !important;
}

body.apothecary-site.home-page .shelf-card-body {
  min-width: 0 !important;
}

body.apothecary-site.home-page .shelf-card h3,
body.apothecary-site.home-page .shelf-card p {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
}

body.apothecary-site.home-page .shelf-card h3 {
  -webkit-line-clamp: 3 !important;
}

body.apothecary-site.home-page .shelf-card p {
  -webkit-line-clamp: 4 !important;
}

body.apothecary-site.home-page .question-card {
  min-width: 0 !important;
}

body.apothecary-site.home-page .question-card h3,
body.apothecary-site.home-page .question-card p {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
}

body.apothecary-site.home-page .question-card h3 {
  -webkit-line-clamp: 3 !important;
}

body.apothecary-site.home-page .question-card p {
  -webkit-line-clamp: 4 !important;
}

@media (max-width: 760px) {
  body.apothecary-site.home-page .question-grid,
  body.apothecary-site.home-page .shelf-grid,
  body.apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr !important;
  }

  body.apothecary-site.home-page .topic-card:nth-child(n) {
    padding: 0.9rem !important;
  }

  body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb {
    aspect-ratio: 16 / 9 !important;
  }
}

/* home-resilient-article-grid-25 */
body.apothecary-site.home-page .topic-card:not(:nth-child(1)),
body.apothecary-site.home-page .topic-card[href]:not(:nth-child(1)),
body.apothecary-site.home-page .topic-card:nth-child(1),
body.apothecary-site.home-page .topic-card:nth-child(7) {
  display: flex !important;
  grid-column: auto !important;
  grid-row: auto !important;
  min-width: 0 !important;
  min-height: 100% !important;
}

body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-thumb,
body.apothecary-site.home-page .topic-card:nth-child(1) .topic-thumb,
body.apothecary-site.home-page .topic-card:nth-child(7) .topic-thumb {
  display: block !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
}

body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-label,
body.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
body.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
body.apothecary-site.home-page .topic-card:nth-child(1) .topic-label,
body.apothecary-site.home-page .topic-card:nth-child(1) h3,
body.apothecary-site.home-page .topic-card:nth-child(1) p,
body.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta,
body.apothecary-site.home-page .topic-card:nth-child(1) .card-link,
body.apothecary-site.home-page .topic-card:nth-child(7) .topic-label,
body.apothecary-site.home-page .topic-card:nth-child(7) h3,
body.apothecary-site.home-page .topic-card:nth-child(7) p,
body.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta,
body.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  grid-column: auto !important;
  grid-row: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.apothecary-site.home-page .topic-card:not(:nth-child(1)) h3,
body.apothecary-site.home-page .topic-card:nth-child(1) h3,
body.apothecary-site.home-page .topic-card:nth-child(7) h3,
body.apothecary-site.home-page .topic-card:not(:nth-child(1)) p,
body.apothecary-site.home-page .topic-card:nth-child(1) p,
body.apothecary-site.home-page .topic-card:nth-child(7) p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
}

body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta,
body.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta,
body.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
}

body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .topic-meta span:nth-child(n),
body.apothecary-site.home-page .topic-card:nth-child(1) .topic-meta span:nth-child(n),
body.apothecary-site.home-page .topic-card:nth-child(7) .topic-meta span:nth-child(n) {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.apothecary-site.home-page .topic-card:not(:nth-child(1)) .card-link,
body.apothecary-site.home-page .topic-card:nth-child(1) .card-link,
body.apothecary-site.home-page .topic-card:nth-child(7) .card-link {
  display: inline-flex !important;
}

/* home-resilient-article-grid-26 */
body.apothecary-site.home-page .topic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n),
body.apothecary-site.home-page .topic-card[href]:nth-child(n) {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.72rem !important;
  grid-column: auto !important;
  grid-row: auto !important;
  min-width: 0 !important;
  min-height: 100% !important;
  padding: 1rem !important;
  position: relative !important;
  inset: auto !important;
  overflow: hidden !important;
  color: #28170e !important;
  background: #fffaf0 !important;
  border: 1px solid rgba(116, 68, 30, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 34px rgba(34, 20, 12, 0.08) !important;
  transform: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n)::before,
body.apothecary-site.home-page .topic-card:nth-child(n)::after,
body.apothecary-site.home-page .topic-card[href]:nth-child(n)::before,
body.apothecary-site.home-page .topic-card[href]:nth-child(n)::after,
body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb::before,
body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb::after {
  content: none !important;
  display: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb {
  display: block !important;
  flex: 0 0 auto !important;
  order: 0 !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  z-index: 0 !important;
  overflow: hidden !important;
  background: #efe4d4 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: static !important;
  inset: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-label,
body.apothecary-site.home-page .topic-card:nth-child(n) h3,
body.apothecary-site.home-page .topic-card:nth-child(n) p,
body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta,
body.apothecary-site.home-page .topic-card:nth-child(n) .card-link {
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  color: inherit !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-label {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  order: 1 !important;
  padding: 0.28rem 0.54rem !important;
  color: #704016 !important;
  background: rgba(178, 107, 43, 0.12) !important;
  border: 1px solid rgba(178, 107, 43, 0.24) !important;
  border-radius: 999px !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) h3 {
  display: -webkit-box !important;
  order: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #28170e !important;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem) !important;
  line-height: 1.25 !important;
  font-weight: 760 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  text-wrap: balance !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) p {
  display: -webkit-box !important;
  order: 3 !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: rgba(40, 23, 14, 0.76) !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  order: 4 !important;
  gap: 0.42rem !important;
  max-height: none !important;
  margin-top: auto !important;
  overflow: visible !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta span,
body.apothecary-site.home-page .topic-card:nth-child(n) .topic-meta span:nth-child(n) {
  display: inline-flex !important;
  max-width: 100% !important;
  padding: 0.24rem 0.46rem !important;
  color: rgba(40, 23, 14, 0.72) !important;
  background: rgba(40, 23, 14, 0.06) !important;
  border-radius: 999px !important;
  line-height: 1.2 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page .topic-card:nth-child(n) .card-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  order: 5 !important;
  min-height: 44px !important;
  margin-top: 0.15rem !important;
  padding: 0.56rem 0.82rem !important;
  color: #fffaf0 !important;
  background: #7a431c !important;
  border-radius: 999px !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
}

body.apothecary-site.home-page .topic-card:hover,
body.apothecary-site.home-page .topic-card:focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 42px rgba(34, 20, 12, 0.13) !important;
}

@media (max-width: 760px) {
  body.apothecary-site.home-page .topic-grid {
    grid-template-columns: 1fr !important;
  }

  body.apothecary-site.home-page .topic-card:nth-child(n),
  body.apothecary-site.home-page .topic-card[href]:nth-child(n) {
    padding: 0.9rem !important;
  }

  body.apothecary-site.home-page .topic-card:nth-child(n) .topic-thumb {
    aspect-ratio: 16 / 9 !important;
  }
}

/* home-resilient-article-grid-27 */
body.apothecary-site.home-page #topics .topic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)) !important;
  grid-template-areas: none !important;
  grid-auto-flow: row !important;
  grid-auto-rows: auto !important;
  align-items: stretch !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.72rem !important;
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 100% !important;
  max-height: none !important;
  padding: 1rem !important;
  position: relative !important;
  inset: auto !important;
  overflow: hidden !important;
  color: #28170e !important;
  background: #fffaf0 !important;
  border: 1px solid rgba(116, 68, 30, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 34px rgba(34, 20, 12, 0.08) !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card::before,
body.apothecary-site.home-page #topics .topic-grid > .topic-card::after,
body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-thumb::before,
body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-thumb::after {
  content: none !important;
  display: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-thumb,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child .topic-thumb,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) .topic-thumb {
  display: block !important;
  flex: 0 0 auto !important;
  order: 0 !important;
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 10 !important;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  z-index: 0 !important;
  overflow: hidden !important;
  background: #efe4d4 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  position: static !important;
  inset: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-label,
body.apothecary-site.home-page #topics .topic-grid > .topic-card h3,
body.apothecary-site.home-page #topics .topic-grid > .topic-card p,
body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > .topic-card .card-link,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child .topic-label,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child h3,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child p,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:first-child .card-link,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) .topic-label,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) h3,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) p,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:nth-child(7) .card-link {
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  text-shadow: none !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-label {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  order: 1 !important;
  padding: 0.28rem 0.54rem !important;
  color: #704016 !important;
  background: rgba(178, 107, 43, 0.12) !important;
  border: 1px solid rgba(178, 107, 43, 0.24) !important;
  border-radius: 999px !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card h3 {
  display: -webkit-box !important;
  order: 2 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #28170e !important;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem) !important;
  line-height: 1.25 !important;
  font-weight: 760 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  text-wrap: balance !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card p {
  display: -webkit-box !important;
  order: 3 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: rgba(40, 23, 14, 0.76) !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  order: 4 !important;
  gap: 0.42rem !important;
  margin-top: auto !important;
  overflow: visible !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-meta span,
body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-meta span:nth-child(n) {
  display: inline-flex !important;
  max-width: 100% !important;
  padding: 0.24rem 0.46rem !important;
  color: rgba(40, 23, 14, 0.72) !important;
  background: rgba(40, 23, 14, 0.06) !important;
  border-radius: 999px !important;
  line-height: 1.2 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card .card-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  order: 5 !important;
  min-height: 44px !important;
  margin-top: 0.15rem !important;
  padding: 0.56rem 0.82rem !important;
  color: #fffaf0 !important;
  background: #7a431c !important;
  border-radius: 999px !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
}

body.apothecary-site.home-page #topics .topic-grid > .topic-card:hover,
body.apothecary-site.home-page #topics .topic-grid > .topic-card:focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 42px rgba(34, 20, 12, 0.13) !important;
}

@media (max-width: 760px) {
  body.apothecary-site.home-page #topics .topic-grid {
    grid-template-columns: 1fr !important;
  }

  body.apothecary-site.home-page #topics .topic-grid > .topic-card {
    padding: 0.9rem !important;
  }

  body.apothecary-site.home-page #topics .topic-grid > .topic-card .topic-thumb {
    aspect-ratio: 16 / 9 !important;
  }
}

/* home-resilient-article-grid-28 */
body.apothecary-site.home-page #topics .topic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
  grid-template-areas: none !important;
  grid-auto-flow: row !important;
  grid-auto-rows: auto !important;
  align-items: stretch !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n),
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.72rem !important;
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 100% !important;
  max-height: none !important;
  padding: 1rem !important;
  position: relative !important;
  inset: auto !important;
  isolation: isolate !important;
  overflow: hidden !important;
  color: #28170e !important;
  background: #fffaf0 !important;
  border: 1px solid rgba(116, 68, 30, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 34px rgba(34, 20, 12, 0.08) !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n)::before,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n)::after,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb::before,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb::after {
  content: none !important;
  display: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child .topic-thumb,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) .topic-thumb {
  display: block !important;
  flex: 0 0 auto !important;
  order: 0 !important;
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 10 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  inset: auto !important;
  z-index: 0 !important;
  overflow: hidden !important;
  background: #efe4d4 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb img,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child .topic-thumb img,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) .topic-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  position: static !important;
  inset: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-label,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) h3,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) p,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .card-link,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child .topic-label,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child h3,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child p,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child .card-link,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) .topic-label,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) h3,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) p,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) .card-link {
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  text-shadow: none !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-label {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  order: 1 !important;
  padding: 0.28rem 0.54rem !important;
  color: #704016 !important;
  background: rgba(178, 107, 43, 0.12) !important;
  border: 1px solid rgba(178, 107, 43, 0.24) !important;
  border-radius: 999px !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) h3 {
  display: -webkit-box !important;
  order: 2 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #28170e !important;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem) !important;
  line-height: 1.25 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  text-wrap: balance !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) p {
  display: -webkit-box !important;
  order: 3 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: rgba(40, 23, 14, 0.76) !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  order: 4 !important;
  gap: 0.42rem !important;
  margin-top: auto !important;
  overflow: visible !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta span,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta span:nth-child(n) {
  display: inline-flex !important;
  max-width: 100% !important;
  padding: 0.24rem 0.46rem !important;
  color: rgba(40, 23, 14, 0.72) !important;
  background: rgba(40, 23, 14, 0.06) !important;
  border-radius: 999px !important;
  line-height: 1.2 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .card-link,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:first-child .card-link,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(7) .card-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  order: 5 !important;
  min-height: 44px !important;
  margin-top: 0.15rem !important;
  padding: 0.56rem 0.82rem !important;
  color: #fffaf0 !important;
  background: #7a431c !important;
  border-radius: 999px !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n):hover,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n):focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 42px rgba(34, 20, 12, 0.13) !important;
}

@media (max-width: 760px) {
  body.apothecary-site.home-page #topics .topic-grid {
    grid-template-columns: 1fr !important;
  }

  body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) {
    padding: 0.9rem !important;
  }

  body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb {
    aspect-ratio: 16 / 9 !important;
  }
}

body.apothecary-site .article-content .article-figure img {
  cursor: zoom-in;
  touch-action: manipulation;
}

body.apothecary-site .article-content .article-figure img:focus-visible {
  outline: 3px solid rgba(122, 67, 28, 0.72);
  outline-offset: 5px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(14, 9, 6, 0.82);
  backdrop-filter: blur(4px);
}

.image-lightbox__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(100%, 1200px);
  max-height: 100%;
}

.image-lightbox__image {
  display: block;
  width: auto;
  max-width: min(96vw, 1200px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  background: #1d130d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.image-lightbox__caption {
  max-width: min(90vw, 900px);
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.image-lightbox__close {
  position: absolute;
  top: max(0.6rem, env(safe-area-inset-top));
  right: max(0.6rem, env(safe-area-inset-right));
  z-index: 1;
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  color: #2b170d;
  background: #fffaf0;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.image-lightbox__close:focus-visible {
  outline: 3px solid rgba(255, 250, 240, 0.86);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .image-lightbox {
    padding: 0.75rem;
  }

  .image-lightbox__image {
    max-width: 94vw;
    max-height: 78vh;
    border-radius: 10px;
  }

  .image-lightbox__caption {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .image-lightbox {
    animation: lightbox-fade-in 180ms ease-out both;
  }

  .image-lightbox__image {
    animation: lightbox-image-in 200ms ease-out both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .image-lightbox__image {
    animation: none !important;
  }
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile homepage hero stability patch for real-browser rendering. */
@media (max-width: 640px) {
  html,
  body.apothecary-site.home-page {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.apothecary-site.home-page *,
  body.apothecary-site.home-page *::before,
  body.apothecary-site.home-page *::after {
    box-sizing: border-box;
  }

  body.apothecary-site.home-page main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.apothecary-site.home-page .hero-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.95rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0.7rem 0.5rem 1rem !important;
    padding: 1rem !important;
    position: relative !important;
    inset: auto !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body.apothecary-site.home-page .hero-copy,
  body.apothecary-site.home-page .hero-section h1,
  body.apothecary-site.home-page .hero-copy .intro,
  body.apothecary-site.home-page .hero-actions,
  body.apothecary-site.home-page .hero-picks,
  body.apothecary-site.home-page .hero-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
  }

  body.apothecary-site.home-page .hero-copy {
    display: block !important;
    padding: 0 0.55rem 0 0.45rem !important;
    border-left: 3px solid rgba(217, 174, 95, 0.72) !important;
    overflow: visible !important;
  }

  body.apothecary-site.home-page .hero-section h1 {
    font-size: 2.45rem !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  body.apothecary-site.home-page .hero-copy .intro {
    display: block !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    width: 100% !important;
    max-width: 20rem !important;
    white-space: normal !important;
    word-break: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
    overflow-wrap: normal !important;
  }

  body.apothecary-site.home-page .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }

  body.apothecary-site.home-page .hero-actions .primary-link,
  body.apothecary-site.home-page .hero-actions .secondary-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 44px !important;
    max-height: none !important;
    padding: 0.78rem 0.95rem !important;
    aspect-ratio: auto !important;
    border-radius: 8px !important;
    font-size: 0.94rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  body.apothecary-site.home-page .hero-picks {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
  }

  body.apothecary-site.home-page .hero-picks a {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0.78rem 0.82rem !important;
    overflow: hidden !important;
  }

  body.apothecary-site.home-page .hero-picks a strong,
  body.apothecary-site.home-page .hero-picks a span {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  body.apothecary-site.home-page .hero-media {
    display: block !important;
    aspect-ratio: 16 / 10 !important;
    margin-top: 0.15rem !important;
    z-index: 0 !important;
  }

  body.apothecary-site.home-page .hero-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    position: static !important;
    inset: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
  }
}

/* Mobile article detail stability patch. */
@media (max-width: 680px) {
  html,
  body.apothecary-site:not(.home-page) {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.apothecary-site:not(.home-page) *,
  body.apothecary-site:not(.home-page) *::before,
  body.apothecary-site:not(.home-page) *::after {
    box-sizing: border-box;
  }

  body.apothecary-site:not(.home-page) main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.apothecary-site:not(.home-page) .article-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.9rem 0.85rem 3rem !important;
  }

  body.apothecary-site:not(.home-page) .article-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 1.1rem !important;
    overflow: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-hero > *,
  body.apothecary-site:not(.home-page) .article-hero h1,
  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-hero .article-dek,
  body.apothecary-site:not(.home-page) .article-hero .hero-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem) !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
    overflow-wrap: break-word !important;
    text-wrap: balance;
  }

  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-hero .article-dek {
    font-size: 1rem !important;
    line-height: 1.62 !important;
    overflow-wrap: break-word !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .eyebrow,
  body.apothecary-site:not(.home-page) .article-hero .article-kicker {
    font-size: 0.76rem !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
  }

  body.apothecary-site:not(.home-page) .hero-media {
    aspect-ratio: 16 / 10 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  body.apothecary-site:not(.home-page) .hero-media::before,
  body.apothecary-site:not(.home-page) .hero-media::after {
    display: none !important;
  }

  body.apothecary-site:not(.home-page) .hero-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.apothecary-site:not(.home-page) .article-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.apothecary-site:not(.home-page) .article-toc {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0.9rem !important;
    border-radius: 8px !important;
  }

  body.apothecary-site:not(.home-page) .article-toc a {
    display: flex !important;
    align-items: center !important;
    min-height: 44px !important;
    padding: 0.68rem 0 !important;
    overflow-wrap: anywhere !important;
    touch-action: manipulation;
  }

  body.apothecary-site:not(.home-page) .article-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-content p,
  body.apothecary-site:not(.home-page) .article-content li {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    overflow-wrap: break-word !important;
  }

  body.apothecary-site:not(.home-page) .article-content h2 {
    font-size: 1.45rem !important;
    line-height: 1.22 !important;
    overflow-wrap: break-word !important;
  }

  body.apothecary-site:not(.home-page) .article-content h3 {
    font-size: 1.12rem !important;
    line-height: 1.35 !important;
    overflow-wrap: break-word !important;
  }

  body.apothecary-site:not(.home-page) .article-figure {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.1rem 0 !important;
    overflow: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-figure img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    cursor: zoom-in;
    touch-action: manipulation;
  }

  body > .image-lightbox,
  .image-lightbox {
    position: fixed !important;
    inset: 0 !important;
    display: grid !important;
    place-items: center !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left)) !important;
    overflow: auto !important;
    overscroll-behavior: contain;
  }

  body > .image-lightbox .image-lightbox__panel,
  .image-lightbox__panel {
    width: 100% !important;
    max-width: 100% !important;
    max-height: calc(100dvh - 1.5rem) !important;
  }

  body > .image-lightbox .image-lightbox__image,
  .image-lightbox__image {
    max-width: 94vw !important;
    max-height: 74dvh !important;
    object-fit: contain !important;
  }
}

/* Final mobile article TOC guard: long detail-page anchors must wrap, not clip. */
@media (max-width: 680px) {
  body.apothecary-site:not(.home-page) .article-toc {
    overflow: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-toc a,
  body.apothecary-site:not(.home-page) .article-toc .toc-h3 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 0.68rem 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-height: 1.35 !important;
    touch-action: manipulation;
  }
}

/* Final mobile article detail width guard: keep every detail-page layer inside the phone viewport. */
@media (max-width: 680px) {
  html,
  body.apothecary-site:not(.home-page) {
    width: 100% !important;
    max-width: 100% !important;
    inline-size: 100% !important;
    max-inline-size: 100% !important;
    overflow-x: hidden !important;
  }

  body.apothecary-site:not(.home-page) main,
  body.apothecary-site:not(.home-page) .site-shell,
  body.apothecary-site:not(.home-page) .article-page,
  body.apothecary-site:not(.home-page) .article-hero,
  body.apothecary-site:not(.home-page) .article-hero > *,
  body.apothecary-site:not(.home-page) .article-layout,
  body.apothecary-site:not(.home-page) .article-toc,
  body.apothecary-site:not(.home-page) .article-content,
  body.apothecary-site:not(.home-page) .article-figure {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    inline-size: 100% !important;
    max-inline-size: 100% !important;
    min-inline-size: 0 !important;
  }

  body.apothecary-site:not(.home-page) .article-page {
    padding-inline: 0.85rem !important;
  }

  body.apothecary-site:not(.home-page) .article-hero,
  body.apothecary-site:not(.home-page) .article-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.apothecary-site:not(.home-page) .article-hero {
    overflow: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1,
  body.apothecary-site:not(.home-page) .article-toc a,
  body.apothecary-site:not(.home-page) .article-content h2,
  body.apothecary-site:not(.home-page) .article-content h3,
  body.apothecary-site:not(.home-page) .article-content p,
  body.apothecary-site:not(.home-page) .article-content li {
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem) !important;
    line-height: 1.08 !important;
  }

  body.apothecary-site:not(.home-page) .article-content {
    overflow: hidden !important;
  }
}

/* Mobile lightbox centering: keep the zoomed image centered, not the image+caption stack. */
@media (max-width: 680px) {
  body > .image-lightbox,
  .image-lightbox {
    align-items: center !important;
    justify-items: center !important;
    overflow: hidden !important;
  }

  body > .image-lightbox .image-lightbox__panel,
  .image-lightbox__panel {
    display: grid !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    place-items: center !important;
    gap: 0 !important;
  }

  body > .image-lightbox .image-lightbox__image,
  .image-lightbox__image {
    max-width: calc(100vw - 1.5rem) !important;
    max-height: min(74dvh, calc(100dvh - 7.5rem)) !important;
    margin: auto !important;
  }

  body > .image-lightbox .image-lightbox__caption,
  .image-lightbox__caption {
    position: fixed !important;
    right: max(0.75rem, env(safe-area-inset-right)) !important;
    bottom: max(0.75rem, env(safe-area-inset-bottom)) !important;
    left: max(0.75rem, env(safe-area-inset-left)) !important;
    z-index: 1 !important;
    max-width: none !important;
    max-height: 4.5rem !important;
    padding: 0.55rem 0.7rem !important;
    overflow: auto !important;
    border-radius: 10px !important;
    background: rgba(14, 9, 6, 0.78) !important;
  }

  body > .image-lightbox .image-lightbox__close,
  .image-lightbox__close {
    position: fixed !important;
  }
}

/* Final homepage card guard: keep article covers semantic and titles readable as the archive grows. */
body.apothecary-site.home-page #topics .topic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  gap: 1rem !important;
  align-items: stretch !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) {
  display: grid !important;
  grid-template-rows: auto auto auto auto 1fr auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(76, 52, 38, 0.16) !important;
  border-radius: 8px !important;
  background: #fffaf3 !important;
  color: #251811 !important;
  box-shadow: 0 16px 36px rgba(72, 44, 29, 0.1) !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n)::before,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n)::after,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb::before,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb::after {
  display: none !important;
  content: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #efe3d2 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-label,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) h3,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) p,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta,
body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .card-link {
  position: relative !important;
  z-index: 1 !important;
  max-width: calc(100% - 2rem) !important;
  color: inherit !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-label {
  margin: 0.9rem 1rem 0 !important;
  color: #7f4b28 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) h3 {
  margin: 0.35rem 1rem 0 !important;
  color: #20140e !important;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem) !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) p {
  margin: 0.45rem 1rem 0 !important;
  color: #5f4a3f !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.42rem !important;
  margin: 0.75rem 1rem 0 !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-meta span {
  max-width: 100% !important;
  padding: 0.3rem 0.5rem !important;
  border: 1px solid rgba(127, 75, 40, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(127, 75, 40, 0.08) !important;
  color: #684027 !important;
  font-size: 0.74rem !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .card-link {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  margin: auto 1rem 1rem !important;
  color: #7a321b !important;
  font-weight: 700 !important;
}

@media (max-width: 680px) {
  body.apothecary-site.home-page #topics .topic-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.apothecary-site.home-page #topics .topic-grid > a.topic-card:nth-child(n) .topic-thumb {
    aspect-ratio: 16 / 9 !important;
  }
}

/* Absolute final repair for the homepage archive cards. */
body.apothecary-site.home-page main #topics.content-section .topic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
  gap: 1.15rem !important;
  align-items: stretch !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card,
body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card:nth-child(n) {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
  min-width: 0 !important;
  min-height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(83, 52, 35, 0.16) !important;
  border-radius: 8px !important;
  background: #fffaf3 !important;
  box-shadow: 0 14px 30px rgba(69, 42, 26, 0.09) !important;
  color: #251811 !important;
  text-decoration: none !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card::before,
body.apothecary-site.home-page main #topics.content-section .topic-card::after,
body.apothecary-site.home-page main #topics.content-section .topic-label::before,
body.apothecary-site.home-page main #topics.content-section .topic-label::after,
body.apothecary-site.home-page main #topics.content-section .topic-thumb::before,
body.apothecary-site.home-page main #topics.content-section .topic-thumb::after {
  display: none !important;
  content: none !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-thumb {
  flex: 0 0 auto !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 10 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #eee1cf !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-label,
body.apothecary-site.home-page main #topics.content-section .topic-card h3,
body.apothecary-site.home-page main #topics.content-section .topic-card p,
body.apothecary-site.home-page main #topics.content-section .topic-card .topic-meta,
body.apothecary-site.home-page main #topics.content-section .topic-card .card-link {
  position: static !important;
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 1rem !important;
  margin-right: 1rem !important;
  text-shadow: none !important;
  transform: none !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-label {
  margin-top: 0.92rem !important;
  margin-bottom: 0 !important;
  color: #85532f !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card h3 {
  margin-top: 0.35rem !important;
  margin-bottom: 0 !important;
  color: #1f140e !important;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card p {
  margin-top: 0.48rem !important;
  margin-bottom: 0 !important;
  color: #5e4b40 !important;
  font-size: 0.93rem !important;
  line-height: 1.52 !important;
  overflow-wrap: anywhere !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.42rem !important;
  margin-top: 0.78rem !important;
  margin-bottom: 0 !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-meta span {
  display: inline-flex !important;
  align-items: center !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0.28rem 0.5rem !important;
  border: 1px solid rgba(128, 80, 45, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(128, 80, 45, 0.08) !important;
  color: #684027 !important;
  font-size: 0.74rem !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .card-link {
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 40px !important;
  margin-top: auto !important;
  margin-bottom: 0.95rem !important;
  padding-top: 0.82rem !important;
  color: #7a321b !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

@media (max-width: 680px) {
  body.apothecary-site.home-page main #topics.content-section .topic-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem !important;
  }

  body.apothecary-site.home-page main #topics.content-section .topic-card .topic-thumb {
    aspect-ratio: 16 / 9 !important;
  }

  body.apothecary-site.home-page main #topics.content-section .topic-card .topic-label,
  body.apothecary-site.home-page main #topics.content-section .topic-card h3,
  body.apothecary-site.home-page main #topics.content-section .topic-card p,
  body.apothecary-site.home-page main #topics.content-section .topic-card .topic-meta,
  body.apothecary-site.home-page main #topics.content-section .topic-card .card-link {
    margin-left: 0.95rem !important;
    margin-right: 0.95rem !important;
  }
}

/* Final readability pass for homepage archive card actions. */
body.apothecary-site.home-page main #topics.content-section .topic-card .topic-meta {
  margin-top: 0.85rem !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card .topic-meta + .card-link,
body.apothecary-site.home-page main #topics.content-section .topic-card .card-link {
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: 42px !important;
  margin-top: 0.9rem !important;
  margin-bottom: 1.05rem !important;
  padding: 0.65rem 0.95rem !important;
  border: 1px solid rgba(91, 49, 24, 0.14) !important;
  border-radius: 999px !important;
  background: #7a3d18 !important;
  box-shadow: 0 8px 16px rgba(72, 40, 20, 0.14) !important;
  color: #fffaf3 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  text-transform: none !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-card:hover .card-link,
body.apothecary-site.home-page main #topics.content-section .topic-card:focus-visible .card-link {
  background: #5f2c12 !important;
  color: #fffaf3 !important;
}

/* Homepage archive card spacing and CTA contrast repair. */
body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card:nth-child(n) .topic-meta {
  row-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
  margin-top: 0.85rem !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card:nth-child(n) .topic-meta span {
  color: #4f3020 !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card:nth-child(n) .card-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  margin: 1rem 1rem 1.15rem !important;
  padding: 0.72rem 1rem !important;
  border: 1px solid rgba(71, 35, 16, 0.18) !important;
  border-radius: 999px !important;
  background: #6f3415 !important;
  box-shadow: 0 10px 18px rgba(72, 40, 20, 0.16) !important;
  color: #fffaf3 !important;
  -webkit-text-fill-color: #fffaf3 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  filter: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
  text-transform: none !important;
}

body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card:nth-child(n):hover .card-link,
body.apothecary-site.home-page main #topics.content-section .topic-grid > a.topic-card:nth-child(n):focus-visible .card-link {
  background: #56270f !important;
  color: #fffaf3 !important;
  -webkit-text-fill-color: #fffaf3 !important;
}
/* Homepage hero rail repair: keep decorative accents out of the title text area. */
body.apothecary-site.home-page .hero-copy {
  border-left: 0 !important;
  padding-left: 0 !important;
}

body.apothecary-site.home-page .hero-copy::before,
body.apothecary-site.home-page .hero-copy::after {
  content: none !important;
  display: none !important;
}

body.apothecary-site.home-page .hero-section .eyebrow,
body.apothecary-site.home-page .hero-section h1,
body.apothecary-site.home-page .hero-copy .intro,
body.apothecary-site.home-page .hero-actions,
body.apothecary-site.home-page .hero-picks {
  margin-left: 0 !important;
}

/* article-author-meta */
body.apothecary-site:not(.home-page) .article-hero .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  align-items: center;
  max-width: 62ch;
  margin: 0.85rem 0 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: 0.88rem;
  line-height: 1.5;
}

body.apothecary-site:not(.home-page) .article-hero .article-meta span,
body.apothecary-site:not(.home-page) .article-hero .article-meta time {
  color: #fff8ea;
  font-weight: 700;
}

@media (max-width: 680px) {
body.apothecary-site:not(.home-page) .article-hero .article-meta {
    width: 100%;
    max-width: 100%;
    font-size: 0.84rem;
  }
}

/* Final viewport QA repair: keep home/detail layouts readable across desktop and phone. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.apothecary-site,
body.apothecary-site * {
  box-sizing: border-box;
}

body.apothecary-site.home-page .reader-board {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr) !important;
  gap: clamp(0.8rem, 1.4vw, 1.15rem) !important;
}

body.apothecary-site.home-page .question-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(0.62rem, 1vw, 0.9rem) !important;
}

body.apothecary-site.home-page .question-card,
body.apothecary-site.home-page .path-card,
body.apothecary-site.home-page .topic-card {
  min-width: 0 !important;
}

@media (max-width: 680px) {
  body.apothecary-site.home-page .hero-section,
  body.apothecary-site.home-page .hero-copy,
  body.apothecary-site.home-page .hero-actions {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  body.apothecary-site.home-page .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
  }

  body.apothecary-site.home-page .hero-actions .primary-link,
  body.apothecary-site.home-page .hero-actions .secondary-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
  }

  body.apothecary-site.home-page .reader-board {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.apothecary-site.home-page .question-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.apothecary-site:not(.home-page) .article-hero {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.apothecary-site:not(.home-page) .article-hero > *,
  body.apothecary-site:not(.home-page) .article-hero h1,
  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-hero .article-meta,
  body.apothecary-site:not(.home-page) .article-toc,
  body.apothecary-site:not(.home-page) .article-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    font-size: clamp(1.72rem, 7.6vw, 2.18rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-hero .article-meta,
  body.apothecary-site:not(.home-page) .article-hero .article-meta * {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .article-meta {
    display: block !important;
  }

  body.apothecary-site:not(.home-page) .article-toc {
    padding: 0.86rem !important;
  }

  body.apothecary-site:not(.home-page) .article-toc a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

/* Mobile detail overflow hard stop: no article heading or meta line may exceed the viewport. */
@media (max-width: 680px) {
  body.apothecary-site:not(.home-page) .site-shell,
  body.apothecary-site:not(.home-page) main,
  body.apothecary-site:not(.home-page) .article-page {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-hero,
  body.apothecary-site:not(.home-page) .article-layout {
    width: min(100% - 1.5rem, 100%) !important;
    max-width: calc(100vw - 1.5rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    width: auto !important;
    max-width: calc(100vw - 3.5rem) !important;
    font-size: clamp(1.58rem, 6.8vw, 1.96rem) !important;
    line-height: 1.14 !important;
    white-space: normal !important;
    text-wrap: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-hero .article-meta {
    width: auto !important;
    max-width: calc(100vw - 3.5rem) !important;
    white-space: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .article-meta span,
  body.apothecary-site:not(.home-page) .article-hero .article-meta time {
    display: inline !important;
    white-space: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-toc {
    width: auto !important;
    max-width: calc(100vw - 1.5rem) !important;
  }

  body.apothecary-site:not(.home-page) .article-toc a,
  body.apothecary-site:not(.home-page) .article-toc .toc-h3 {
    line-height: 1.32 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

/* Final mobile viewport repair: prevent stacked padding/calc rules from clipping home and article pages. */
@media (max-width: 680px) {
  html,
  body,
  body.apothecary-site,
  body.apothecary-site .site-shell,
  body.apothecary-site main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: clip !important;
  }

  body.apothecary-site .hero-section,
  body.apothecary-site .intent-panel,
  body.apothecary-site .content-section,
  body.apothecary-site .feature-band,
  body.apothecary-site .legal-page,
  body.apothecary-site .article-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: clip !important;
  }

  body.apothecary-site.home-page .hero-section,
  body.apothecary-site.home-page .reader-board,
  body.apothecary-site.home-page .question-grid,
  body.apothecary-site.home-page .path-grid,
  body.apothecary-site.home-page .topic-grid,
  body.apothecary-site:not(.home-page) .article-hero,
  body.apothecary-site:not(.home-page) .article-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 1rem !important;
    overflow-x: clip !important;
  }

  body.apothecary-site.home-page .hero-copy,
  body.apothecary-site.home-page .hero-media,
  body.apothecary-site.home-page .reader-intro,
  body.apothecary-site.home-page .question-card,
  body.apothecary-site.home-page .path-card,
  body.apothecary-site.home-page .topic-card,
  body.apothecary-site:not(.home-page) .article-hero > *,
  body.apothecary-site:not(.home-page) .article-hero-media,
  body.apothecary-site:not(.home-page) .article-toc,
  body.apothecary-site:not(.home-page) .article-content,
  body.apothecary-site:not(.home-page) .article-figure {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: clip !important;
  }

  body.apothecary-site.home-page .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 0.65rem !important;
  }

  body.apothecary-site.home-page .hero-actions .primary-link,
  body.apothecary-site.home-page .hero-actions .secondary-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0.78rem 0.95rem !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.2 !important;
  }

  body.apothecary-site.home-page .reader-board {
    align-items: start !important;
  }

  body.apothecary-site.home-page .reader-intro {
    min-height: 0 !important;
    padding: 1rem !important;
  }

  body.apothecary-site h1,
  body.apothecary-site h2,
  body.apothecary-site h3,
  body.apothecary-site p,
  body.apothecary-site li,
  body.apothecary-site a,
  body.apothecary-site span,
  body.apothecary-site time {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(1.74rem, 7.3vw, 2.16rem) !important;
    line-height: 1.12 !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-hero .article-meta {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.apothecary-site:not(.home-page) .article-toc {
    padding: 0.9rem !important;
    border-radius: 8px !important;
  }

  body.apothecary-site:not(.home-page) .article-toc a,
  body.apothecary-site:not(.home-page) .article-toc .toc-h3 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    white-space: normal !important;
    line-height: 1.35 !important;
  }
}

/* 2026-06-29 four-viewport QA repair: final mobile guards for the home and article pages. */
@media (max-width: 680px) {
  html,
  body,
  body.apothecary-site,
  body.apothecary-site .site-shell,
  body.apothecary-site main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 1rem 2rem !important;
    overflow-x: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-hero,
  body.apothecary-site:not(.home-page) .article-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 1rem !important;
    overflow-x: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-hero > *,
  body.apothecary-site:not(.home-page) .article-hero div,
  body.apothecary-site:not(.home-page) .hero-media,
  body.apothecary-site:not(.home-page) .article-toc,
  body.apothecary-site:not(.home-page) .article-content,
  body.apothecary-site:not(.home-page) .article-figure {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }

  body.apothecary-site:not(.home-page) .article-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    text-wrap: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site:not(.home-page) .article-hero .intro,
  body.apothecary-site:not(.home-page) .article-meta,
  body.apothecary-site:not(.home-page) .article-toc a,
  body.apothecary-site:not(.home-page) .article-content p,
  body.apothecary-site:not(.home-page) .article-content li,
  body.apothecary-site:not(.home-page) .article-content h2,
  body.apothecary-site:not(.home-page) .article-content h3 {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.apothecary-site.home-page .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 0.75rem !important;
  }

  body.apothecary-site.home-page .hero-actions a,
  body.apothecary-site.home-page .primary-link,
  body.apothecary-site.home-page .secondary-link {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0.8rem 1rem !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    color: #fffaf3 !important;
    -webkit-text-fill-color: #fffaf3 !important;
    text-shadow: 0 1px 2px rgba(35, 24, 18, 0.42) !important;
  }
}

/* 2026-06-29 scene locator readability repair */
body.apothecary-site.home-page #scene-locator {
  width: min(100% - 2rem, 1180px) !important;
  margin: clamp(1.75rem, 3vw, 2.5rem) auto !important;
  padding: clamp(1.1rem, 2.8vw, 1.6rem) !important;
  border: 1px solid rgba(101, 67, 38, 0.18) !important;
  border-radius: 8px !important;
  background: #fff7e8 !important;
  box-shadow: 0 18px 42px rgba(48, 31, 18, 0.08) !important;
}

body.apothecary-site.home-page #scene-locator .content-narrow {
  width: 100% !important;
  max-width: 1120px !important;
}

body.apothecary-site.home-page #scene-locator .split-layout {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr) !important;
  gap: clamp(1rem, 2.6vw, 1.5rem) !important;
  align-items: stretch !important;
}

body.apothecary-site.home-page #scene-locator .split-layout > div:first-child {
  padding: clamp(1rem, 2.4vw, 1.35rem) !important;
  border: 1px solid rgba(123, 65, 31, 0.16) !important;
  border-radius: 8px !important;
  background: #f7ead3 !important;
}

body.apothecary-site.home-page #scene-locator .eyebrow {
  margin: 0 0 0.45rem !important;
  color: #8f3327 !important;
  -webkit-text-fill-color: #8f3327 !important;
}

body.apothecary-site.home-page #scene-locator h2 {
  margin: 0 0 0.75rem !important;
  color: #211713 !important;
  -webkit-text-fill-color: #211713 !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page #scene-locator p {
  color: #5f493b !important;
  -webkit-text-fill-color: #5f493b !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page #scene-locator .method-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
}

body.apothecary-site.home-page #scene-locator .method-list > div {
  min-height: 136px !important;
  padding: 1rem !important;
  border: 1px solid rgba(101, 67, 38, 0.18) !important;
  border-radius: 8px !important;
  background: #fffcf4 !important;
  box-shadow: 0 10px 24px rgba(48, 31, 18, 0.08) !important;
}

body.apothecary-site.home-page #scene-locator .method-list strong,
body.apothecary-site.home-page #scene-locator .method-list span {
  display: block !important;
  text-shadow: none !important;
}

body.apothecary-site.home-page #scene-locator .method-list strong {
  margin-bottom: 0.45rem !important;
  color: #241812 !important;
  -webkit-text-fill-color: #241812 !important;
  font-weight: 800 !important;
}

body.apothecary-site.home-page #scene-locator .method-list span {
  color: #665044 !important;
  -webkit-text-fill-color: #665044 !important;
  line-height: 1.55 !important;
}

@media (max-width: 760px) {
  body.apothecary-site.home-page #scene-locator .split-layout,
  body.apothecary-site.home-page #scene-locator .method-list {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* 2026-06-29 legal directory page layout repair */
body.apothecary-site .legal-page {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100vh - 180px) !important;
  margin: 0 !important;
  padding: clamp(2.5rem, 6vw, 4.75rem) clamp(1rem, 5vw, 3rem) clamp(3.5rem, 7vw, 5.5rem) !important;
  overflow: hidden !important;
  background: #f8eedf !important;
}

body.apothecary-site .legal-page::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto !important;
  height: clamp(14rem, 30vw, 23rem) !important;
  pointer-events: none !important;
  background:
    linear-gradient(135deg, rgba(255, 239, 190, 0.08) 0 1px, transparent 1px),
    linear-gradient(180deg, #082a24 0%, #123f35 100%) !important;
  background-size: 32px 32px, auto !important;
}

body.apothecary-site .legal-layout {
  position: relative !important;
  z-index: 1 !important;
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr) !important;
  gap: clamp(1.25rem, 3.5vw, 2.5rem) !important;
  align-items: start !important;
}

body.apothecary-site .legal-layout > div:first-child {
  min-width: 0 !important;
  padding: clamp(1.35rem, 3vw, 2.35rem) !important;
  border: 1px solid rgba(255, 242, 205, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(7, 34, 29, 0.9) !important;
  box-shadow: 0 24px 56px rgba(8, 27, 23, 0.24) !important;
}

body.apothecary-site .legal-layout > div:last-child {
  min-width: 0 !important;
}

body.apothecary-site .legal-layout .eyebrow {
  margin: 0 0 0.7rem !important;
  color: #e4b75f !important;
  -webkit-text-fill-color: #e4b75f !important;
  text-shadow: none !important;
}

body.apothecary-site .legal-layout h1 {
  max-width: 10ch !important;
  margin: 0 !important;
  color: #fff4d3 !important;
  -webkit-text-fill-color: #fff4d3 !important;
  font-size: clamp(2.35rem, 5.6vw, 4.6rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
  text-shadow: none !important;
}

body.apothecary-site .legal-layout .intro {
  max-width: 36rem !important;
  margin: 1rem 0 0 !important;
  color: rgba(255, 248, 226, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 248, 226, 0.9) !important;
  font-size: clamp(1rem, 1.35vw, 1.13rem) !important;
  line-height: 1.7 !important;
  text-shadow: none !important;
}

body.apothecary-site .legal-card {
  position: relative !important;
  padding: clamp(1.25rem, 2.7vw, 1.85rem) !important;
  border: 1px solid rgba(84, 55, 34, 0.16) !important;
  border-radius: 8px !important;
  background: #fffaf0 !important;
  background-image: none !important;
  box-shadow: 0 18px 38px rgba(70, 45, 27, 0.1) !important;
}

body.apothecary-site .legal-card::before {
  content: none !important;
}

body.apothecary-site .legal-card + .legal-card {
  margin-top: 1rem !important;
}

body.apothecary-site .legal-card h2 {
  margin: 0 0 0.65rem !important;
  color: #211713 !important;
  -webkit-text-fill-color: #211713 !important;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

body.apothecary-site .legal-card p {
  margin: 0 !important;
  color: #594538 !important;
  -webkit-text-fill-color: #594538 !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
  text-shadow: none !important;
}

body.apothecary-site .legal-card p + p {
  margin-top: 0.85rem !important;
}

@media (max-width: 860px) {
  body.apothecary-site .legal-page {
    padding: 2rem 1rem 3rem !important;
  }

  body.apothecary-site .legal-page::before {
    height: 18rem !important;
  }

  body.apothecary-site .legal-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem !important;
  }

  body.apothecary-site .legal-layout > div:first-child {
    padding: 1.25rem !important;
  }

  body.apothecary-site .legal-layout h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 12vw, 3.45rem) !important;
    line-height: 1.03 !important;
  }

  body.apothecary-site .legal-card {
    padding: 1.1rem !important;
  }
}

