/* =====================================================================
   HealthyWoman — Site-wide styles
   Paste into: Appearance → Customize → Additional CSS

   Pairs with v2-approved article template visual reference (page 46).
   Brand: Direction A — Editorial Calm.
   Stack: WordPress + Kadence + Kadence Blocks + Yoast SEO + ACF.

   File version: v2.0 (2026-06-09)
   ===================================================================== */


/* ============================================================
   1 · BRAND TOKENS
   Single source of truth for colours. Used by every .hw-* class.
   ============================================================ */
:root {
  --teal:      #005450;
  --teal-700:  #003F3C;
  --teal-soft: #0A6A66;
  --mint:      #DDF7F3;
  --mint-deep: #C9F1EA;
  --coral:     #FF7A6B;
  --coral-soft:#FF9A8F;
  --off:       #FAFAF7;
  --charcoal:  #1F2933;
  --border:    #E5E7EB;
}


/* ============================================================
   2 · GLOBAL TYPOGRAPHY + BODY
   Assumes Hanken Grotesk + Source Serif 4 are loaded via
   Customize → Typography (locally hosted). These rules tighten
   what Kadence's globals don't reach.
   ============================================================ */
body {
  background-color: var(--off);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--charcoal);
}

a {
  color: var(--teal);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--teal-700); }


/* ============================================================
   3 · NAVIGATION
   Coral underline on hover and current page.
   ============================================================ */
.main-navigation a:hover,
.current-menu-item > a,
.current_page_item > a {
  box-shadow: inset 0 -2px 0 var(--coral);
  text-decoration: none;
}


/* ============================================================
   4 · BUTTONS
   Base pill shape applies to all Kadence/Gutenberg buttons.
   Use .kt-btn-coral for primary, .kt-btn-outline-teal for
   secondary on the article callouts.
   ============================================================ */
.wp-block-button__link {
  border-radius: 999px !important;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 600;
  padding: 14px 26px;
}

/* Primary — coral fill */
.kt-btn-coral,
.kt-btn-coral .wp-block-button__link,
.is-style-fill .wp-block-button__link.has-coral-background-color {
  background: var(--coral) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 28px -14px rgba(255,122,107,.85);
}

/* Secondary — teal outline */
.kt-btn-outline-teal,
.kt-btn-outline-teal .wp-block-button__link,
.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1.5px solid var(--teal) !important;
  color: var(--teal) !important;
}
.kt-btn-outline-teal:hover .wp-block-button__link,
.is-style-outline .wp-block-button__link:hover {
  background: var(--teal) !important;
  color: #fff !important;
}


/* ============================================================
   5 · SINGLE POST LAYOUT
   Force the article column wide, hide sidebar widgets, hide the
   default WP entry-header (the article template renders its own
   eyebrow + H1 + standfirst).

   These rules expect Kadence's Posts layout to be set to
   "Fullwidth Unboxed, No Sidebar" globally. The CSS hides
   anything that slips through.
   ============================================================ */
.single-post #secondary,
.single-post .widget-area { display: none !important; }

/* Full-width article: override site-container + all Kadence content wrappers.
   Header/footer are inside their own sub-containers so retain their widths. */
.single-post .site-container,
.single-post #content,
.single-post .content-bg,
.single-post #primary,
.single-post .content-area {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Remove Kadence article wrapper box */
.single-post .hentry,
.single-post article.type-post,
.single-post .article-content-wrap {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
}

.single-post .entry-header,
.single-post .entry-title { display: none !important; }

.single-post .entry-content,
.single-post .post-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove Kadence/Gutenberg block-level width cap so our
   hw-col-narrow / hw-col-wide classes control widths instead. */
.single-post .entry-content .wp-block-html,
.single-post .entry-content > .wp-block {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ============================================================
   6 · CONTENT COLUMNS
   Three reusable container widths. Apply via the block's
   Advanced → Additional CSS Class field.

   .hw-col-narrow  → article reading column (720px)
   .hw-col         → component column slightly wider (760px)
   .hw-col-wide    → hero, DoseMate band, related grid (1180px)
   ============================================================ */
.hw-col-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.hw-col        { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.hw-col-wide   { max-width: 1180px; margin: 0 auto; padding: 0 28px; }


/* ============================================================
   7 · BREADCRUMB (Yoast)
   Applies to [wpseo_breadcrumb] output and the .hw-breadcrumb
   helper class.
   ============================================================ */
.hw-breadcrumb,
#breadcrumbs,
.yoast-breadcrumbs {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(31,41,51,.6);
  padding: 24px 0 0;
  margin: 0;
  letter-spacing: 0.01em;
}
.hw-breadcrumb a,
#breadcrumbs a,
.yoast-breadcrumbs a { color: var(--teal); text-decoration: none; }
.hw-breadcrumb a:hover,
#breadcrumbs a:hover,
.yoast-breadcrumbs a:hover { box-shadow: inset 0 -1px 0 var(--teal); }
.hw-breadcrumb .sep { color: rgba(31,41,51,.3); margin: 0 8px; }


/* ============================================================
   8 · EYEBROW + BADGE
   ============================================================ */
.hw-eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hw-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--coral); border-radius: 2px;
}

.hw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--teal);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 0.02em;
}
.hw-badge::before { content: "\2713"; font-size: 12px; }


/* ============================================================
   9 · ARTICLE HEADER
   ============================================================ */
.hw-article-header { padding: 56px 0 16px; }

.hw-h1,
.single-post .hw-article-header h1 {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--charcoal);
  margin: 0 0 24px;
  max-width: 14ch;
}

.hw-standfirst {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 23px;
  line-height: 1.5;
  color: rgba(31,41,51,.78);
  margin: 0 0 36px;
  max-width: 38ch;
}

.hw-meta-strip {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 16px;
}
.hw-byline-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}
.hw-byline-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hw-byline {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px; line-height: 1.4;
  color: var(--charcoal);
}
.hw-byline strong { display: block; color: var(--charcoal); }
.hw-byline a { color: var(--teal); font-weight: 600; text-decoration: none; }
.hw-byline-small { color: rgba(31,41,51,.6); font-size: 13px; }
.hw-meta-divider { width: 1px; height: 28px; background: var(--border); }
.hw-meta-item {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(31,41,51,.6);
}
.hw-badge-row { padding: 8px 0 0; }


/* ============================================================
   10 · HERO
   Real articles use the Featured Image. The placeholder gradient
   shown on page 46 is reference-only.
   ============================================================ */
.hw-hero-wrap { padding: 40px 0 8px; }
.hw-hero,
.hw-hero img {
  border-radius: 18px;
  width: 100%;
  display: block;
  box-shadow: 0 30px 60px -40px rgba(0,84,80,.35);
}
.hw-hero-caption {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(31,41,51,.55);
  padding: 14px 4px 0;
  font-style: italic;
  letter-spacing: 0.01em;
}


/* ============================================================
   11 · DISCLAIMER
   ============================================================ */
.hw-disclaimer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px 14px 44px;
  position: relative;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(31,41,51,.7);
  line-height: 1.6;
  margin: 40px 0 0;
}
.hw-disclaimer::before {
  content: "i";
  position: absolute; left: 14px; top: 14px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 12px;
  font-style: normal;
}


/* ============================================================
   12 · KEY TAKEAWAYS
   ============================================================ */
.hw-takeaways {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
  border-radius: 16px;
  padding: 32px 34px;
  margin: 48px 0;
  box-shadow: 0 1px 2px rgba(31,41,51,.03);
}
.hw-takeaways h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin: 0 0 18px;
}
.hw-takeaways ul { margin: 0; padding-left: 1.3em; }
.hw-takeaways li {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
  font-family: 'Source Serif 4', Georgia, serif;
}
.hw-takeaways li::marker { color: var(--teal); }
.hw-takeaways li:last-child { margin-bottom: 0; }


/* ============================================================
   13 · TABLE OF CONTENTS
   ============================================================ */
.hw-toc,
.wp-block-kadence-tableofcontents.hw-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 32px 0;
}
.hw-toc h4,
.hw-toc .kb-toc-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin: 0 0 14px;
}
.hw-toc ol,
.hw-toc ul {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  margin: 0;
  padding-left: 1.4em;
}
.hw-toc li { margin-bottom: 8px; }
.hw-toc a { color: var(--teal); text-decoration: none; }
.hw-toc a:hover { box-shadow: inset 0 -1px 0 var(--teal); }


/* ============================================================
   14 · ARTICLE BODY
   Wrap the Post Content block in a Group with class hw-body.
   ============================================================ */
.hw-body h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 64px 0 18px;
  letter-spacing: -0.022em;
}
.hw-body h3 {
  font-size: 23px;
  font-weight: 600;
  margin: 40px 0 12px;
}
.hw-body p {
  font-size: 19px;
  line-height: 1.78;
  margin: 0 0 22px;
  color: var(--charcoal);
}
.hw-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}


/* ============================================================
   15 · PULL QUOTE
   ============================================================ */
.hw-pullquote {
  position: relative;
  padding: 24px 0 0;
  margin: 48px 0;
  border: 0;
}
.hw-pullquote::before {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--coral); border-radius: 3px;
  margin-bottom: 20px;
}
.hw-pullquote q,
.hw-pullquote p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-style: italic;
  color: var(--teal);
  line-height: 1.45;
  display: block;
  quotes: "\201C" "\201D";
  margin: 0;
}


/* ============================================================
   16 · CONSULTATION CALLOUT (in-article, softer)
   ============================================================ */
.hw-consultation-callout {
  background: linear-gradient(135deg, var(--mint) 0%, #EDFAF7 100%);
  border: 1px solid rgba(0,84,80,.10);
  border-radius: 14px;
  padding: 24px 28px 24px 64px;
  position: relative;
  margin: 36px 0;
}
.hw-consultation-callout::before {
  content: "";
  position: absolute; left: 24px; top: 26px;
  width: 24px; height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005450' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/></svg>") no-repeat center;
  background-size: contain;
}
.hw-consultation-callout p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16.5px;
  color: var(--charcoal);
  margin: 0 0 14px;
  line-height: 1.6;
}

.hw-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--teal);
}
.hw-link-arrow:hover {
  color: var(--teal-700);
  border-bottom-color: var(--teal-700);
}


/* ============================================================
   17 · DOSEMATE BAND
   ============================================================ */
.hw-dosemate-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 14%, rgba(255,122,107,.18), transparent 50%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-soft) 100%);
  border-radius: 32px;
  padding: 64px 56px;
  margin: 64px auto;
  max-width: 1100px;
  color: #fff;
  box-shadow: 0 40px 80px -50px rgba(0,84,80,.55);
}
.hw-dosemate-band::before {
  content: ""; position: absolute;
  left: -100px; bottom: -100px;
  width: 340px; height: 340px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hw-dosemate-band::after {
  content: ""; position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  background: rgba(221,247,243,.08);
  border-radius: 50%;
}
.hw-dosemate-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hw-dosemate-band .hw-eyebrow { color: var(--mint); margin: 0 0 12px; }
.hw-dosemate-band .hw-eyebrow::before { background: var(--coral-soft); }
.hw-dosemate-band h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hw-dosemate-band p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  margin: 0 0 22px;
}
.hw-dosemate-band ul {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  padding: 0; margin: 0;
  list-style: none;
}
.hw-dosemate-band ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  line-height: 1.5;
}
.hw-dosemate-band ul li::before {
  content: ""; position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(-45deg);
}

.hw-dosemate-form-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  padding: 34px;
}
.hw-dosemate-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.hw-dosemate-form-card .form-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  margin: 0 0 22px;
  line-height: 1.55;
}
.hw-dosemate-finefoot {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin: 14px 0 0;
  line-height: 1.5;
}
/* In-band form inputs (Kadence Advanced Form or Fluent Forms) */
.hw-dosemate-band input[type="email"],
.hw-dosemate-band input[type="text"],
.hw-dosemate-band .kadence-blocks-form .kb-field input,
.hw-dosemate-band .frm_form_fields input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
}
.hw-dosemate-band input::placeholder { color: rgba(255,255,255,.5); }


/* ============================================================
   18 · BURY HEALTHCARE CTA
   ============================================================ */
.hw-bury-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 34px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
}
.hw-bury-cta::before {
  content: ""; position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 3px;
  background: var(--mint-deep);
  border-radius: 0 3px 3px 0;
}
.hw-bury-cta .hw-bury-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin: 0 0 8px;
}
.hw-bury-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.hw-bury-cta p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(31,41,51,.82);
  margin: 0;
}


/* ============================================================
   19 · FAQ ACCORDION
   Works with Kadence Accordion block or native <details>.
   ============================================================ */
.hw-faq { padding-top: 24px; }
.hw-faq h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 28px;
  letter-spacing: -0.022em;
}
.hw-faq-item,
.hw-faq .kt-accordion-pane {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
}
.hw-faq-item[open],
.hw-faq .kt-accordion-pane.kt-accordion-pane-active {
  border-color: rgba(0,84,80,.3);
}
.hw-faq-item summary,
.hw-faq .kt-accordion-pane .kt-accordion-header-wrap .kt-blocks-accordion-header {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--charcoal);
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hw-faq-item summary::-webkit-details-marker { display: none; }
.hw-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.hw-faq-item[open] summary::after { content: "\2212"; }
.hw-faq-item .hw-faq-body,
.hw-faq .kt-accordion-panel-inner {
  padding: 0 24px 22px 24px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
}


/* ============================================================
   20 · REFERENCES
   ============================================================ */
.hw-references { padding-top: 48px; }
.hw-references h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}
.hw-references ol {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  padding-left: 1.4em;
  margin: 0;
}
.hw-references li { margin-bottom: 10px; }
.hw-references a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ============================================================
   21 · REVIEWER / AUTHOR BOX
   ============================================================ */
.hw-reviewer-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.hw-reviewer-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  box-shadow: 0 8px 24px -12px rgba(0,84,80,.4);
  overflow: hidden;
}
.hw-reviewer-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.hw-reviewer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint);
  color: var(--teal);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 11px;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hw-reviewer-info h4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}
.hw-reviewer-info h4 a { color: var(--charcoal); text-decoration: none; }
.hw-reviewer-info h4 a:hover { color: var(--teal); }
.hw-reviewer-info .creds {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(31,41,51,.7);
  margin: 6px 0 0;
  line-height: 1.55;
}
.hw-reviewer-info .reviewed {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  color: rgba(31,41,51,.5);
  margin: 8px 0 0;
}


/* ============================================================
   22 · RELATED ARTICLES SECTION
   Works with Kadence Posts block or native columns of cards.
   ============================================================ */
.hw-related-section {
  background: #F4F0E9;
  padding: 72px 0 96px;
  margin: 80px 0 0;
  border-top: 1px solid var(--border);
}
.hw-related-section .related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 32px;
}
.hw-related-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.022em;
}
.hw-related-section .see-all {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.hw-related-section .see-all:hover { box-shadow: inset 0 -1px 0 var(--teal); }

.hw-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hw-related-card,
.hw-related-grid .wp-block-kadence-posts .entry {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.hw-related-card:hover,
.hw-related-grid .wp-block-kadence-posts .entry:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(0,84,80,.4);
  border-color: rgba(0,84,80,.2);
}
.hw-related-card .hw-related-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.hw-related-card .hw-related-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hw-related-card .hw-related-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.hw-related-card .meta {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 12px;
}
.hw-related-card .cat-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.hw-related-card .read-time {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11.5px;
  color: rgba(31,41,51,.55);
}
.hw-related-card .read-time::before {
  content: "\b7";
  margin-right: 8px;
  color: rgba(31,41,51,.3);
}
.hw-related-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.32;
  color: var(--charcoal);
  margin: 0 0 10px;
  letter-spacing: -0.018em;
}
.hw-related-card p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(31,41,51,.72);
  margin: 0 0 18px;
  flex: 1;
}
.hw-related-card .read-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
}
.hw-related-card:hover .read-link { color: var(--teal-700); }


/* ============================================================
   23 · MOBILE
   Single breakpoint at 760px keeps things simple.
   ============================================================ */
@media (max-width: 760px) {
  .hw-article-header { padding: 32px 0 8px; }
  .hw-h1,
  .single-post .hw-article-header h1 { font-size: 34px; max-width: none; }
  .hw-standfirst { font-size: 18px; max-width: none; margin-bottom: 28px; }
  .hw-meta-strip { gap: 14px; padding: 18px 0; }
  .hw-meta-divider { display: none; }
  .hw-byline-avatar { width: 38px; height: 38px; font-size: 13px; }

  .hw-hero { border-radius: 14px; }
  .hw-hero-wrap { padding: 24px 0 0; }

  .hw-body h2 { font-size: 24px; margin-top: 44px; }
  .hw-body h3 { font-size: 19px; }
  .hw-body p { font-size: 17px; }
  .hw-pullquote q,
  .hw-pullquote p { font-size: 20px; }

  .hw-takeaways { padding: 24px; margin: 36px 0; }

  .hw-dosemate-band { padding: 40px 26px; border-radius: 22px; margin: 40px 16px; }
  .hw-dosemate-inner { grid-template-columns: 1fr; gap: 28px; }
  .hw-dosemate-band h2 { font-size: 28px; }

  .hw-bury-cta { grid-template-columns: 1fr; padding: 26px 28px; }

  .hw-related-section { padding: 48px 0 64px; margin-top: 56px; }
  .hw-related-section .related-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hw-related-section h2 { font-size: 26px; }
  .hw-related-grid { grid-template-columns: 1fr; gap: 20px; }

  .hw-reviewer-box { flex-direction: column; padding: 24px; }
  .hw-reviewer-avatar { width: 64px; height: 64px; font-size: 20px; }
}


/* ============================================================
   24 · UTILITIES (small helpers)
   ============================================================ */
.hw-hidden { display: none !important; }
.hw-only-mobile { display: none !important; }
.hw-only-desktop { display: block !important; }
@media (max-width: 760px) {
  .hw-only-mobile { display: block !important; }
  .hw-only-desktop { display: none !important; }
}
/* End of file */
