/* ═══════════════════════════════════════════
   Article Templates — Authority & Standard (v5)
   Templates: single.php → parts/article-authority.php, parts/article-standard.php
   Prefix: wv-art-
   Mobile-first: base = 375px+, tablet = 768px+, desktop = 1024px+

   CHANGELOG
   ─────────
   v5 — 2026-04-16: Quiz strip removed, extracted to wv-quiz-cta component
   v4 — 2026-04-16: Inline subscribe extracted to wv-email-optin component
   v3 — 2026-04-16: Headline serif→sans 300, breadcrumb simplified to
        Home/Learn with wv-label-nav, avatar removed, meta row condensed
        to date + read time on one line
   v2 — 2026-04-16: Mobile-first conversion, global typography audit,
        color-primary→accent (quiz CTA preserved), hardcoded hex → tokens
   v1 — Initial build
   ═══════════════════════════════════════════ */


/* ════════════════════════════════════════════
   1. BREADCRUMB
   ────────────────────────────────────────────
   Article pages migrated to the shared parts/breadcrumb.php partial
   (rendered as .wv-breadcrumbs, styles in wv-components.css v54)
   on 2026-06-02. The previous bespoke .wv-art-breadcrumb class +
   rules are removed; visuals now match shop / F5 LP / shop benefit.
   ════════════════════════════════════════════ */


/* ════════════════════════════════════════════
   3. ARTICLE TOPIC (cluster pill + label)
   ════════════════════════════════════════════ */
.wv-art-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.wv-art-topic__pill {
  /* typography via .wv-label-reg in markup — flag: was 10px, now 12px */
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: var(--wv-radius-pill);
  border: 1px solid;
  white-space: nowrap;
}

/* Cluster pill — neutral style for all clusters */
/* Cluster pill neutral — exclude F5 pills so their colors win */
.wv-art-topic__pill[class*="--"]:not([class*="wv-lh-f5-pill"]) {
  background: var(--wv-color-background);
  color: var(--wv-color-text-secondary);
  border-color: var(--wv-color-border);
}

.wv-art-topic__label {
  /* typography via .wv-label-small in markup */
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
}


/* ════════════════════════════════════════════
   4. HEADLINE + DECK
   ════════════════════════════════════════════ */
.wv-art-headline {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-h-serif-sm);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--wv-color-text-primary);
  margin: 0 0 16px;
}
.wv-art-deck {
  /* typography via .wv-body-lg in markup */
  line-height: 1.6;
  color: var(--wv-color-text-secondary);
  margin: 0 0 24px;
}


/* ════════════════════════════════════════════
   5. META ROW
   ════════════════════════════════════════════ */
.wv-art-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wv-art-meta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wv-art-meta__author {
  /* typography via .wv-body-sm in markup + local weight override */
  font-weight: 600;
  color: var(--wv-color-text-primary);
}
.wv-art-meta__detail {
  /* typography via .wv-label-legal in markup */
  color: var(--wv-color-text-secondary); /* closest token — visual review needed */
}
.wv-art-meta__detail span + span::before {
  content: '\00b7';
  margin: 0 6px;
}

/* Inline share buttons — Standard template meta row */
.wv-art-meta__share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  width: 100%;
  margin-top: 8px;
}
.wv-art-meta__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--wv-color-border);
  background: var(--wv-color-background);
  color: var(--wv-color-text-secondary);
  cursor: pointer;
  transition: all var(--wv-transition-fast);
}
.wv-art-meta__share-btn:hover {
  border-color: var(--wv-color-text-primary);
  color: var(--wv-color-text-primary);
}
.wv-art-meta__share-btn svg {
  width: 14px;
  height: 14px;
}


/* ════════════════════════════════════════════
   6. HERO IMAGE
   ════════════════════════════════════════════ */
.wv-art-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background: var(--wv-color-surface);
  margin-bottom: 28px;
}


/* ════════════════════════════════════════════
   7. LAYOUT — Authority Template
   ════════════════════════════════════════════ */
.wv-art-wrap {
  max-width: 100%;
  margin: 0 auto;
  /* padding-top aligned to shop/.wv-shop__inner so the breadcrumb sits
     at the same vertical offset on every page surface (2026-06-02 v2). */
  padding: clamp(16px, 2vw, 24px) 20px 48px;
  display: block;
}
.wv-art-main {
  min-width: 0;
}


/* ════════════════════════════════════════════
   8. LAYOUT — Standard Template
   ════════════════════════════════════════════ */
.wv-art-wrap--standard {
  max-width: 100%;
  display: block;
  /* padding-top aligned to shop/.wv-shop__inner — see .wv-art-wrap above. */
  padding: clamp(16px, 2vw, 24px) 20px 48px;
}
.wv-art-wrap--standard .wv-art-main {
  max-width: 100%;
}


/* ════════════════════════════════════════════
   9. BODY COPY
   ════════════════════════════════════════════ */
.wv-art-body {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-label-nav);
  font-weight: 400;
  line-height: 1.85;
  color: var(--wv-color-text-secondary);
}
.wv-art-body p {
  margin: 0 0 20px;
}
.wv-art-body p:last-child {
  margin-bottom: 0;
}
/* Headings in body — editor content, cannot add PHP classes */
.wv-art-body h2 {
  /* values from wv-h2 global class */
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-h5);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-primary);
  margin: 40px 0 16px;
}
.wv-art-body h2:first-child {
  margin-top: 0;
}
.wv-art-body h3 {
  /* values from wv-h6 global class — flag: was 17px, now 16px */
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-h6);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-primary);
  margin: 32px 0 12px;
}
.wv-art-body h3:first-child {
  margin-top: 0;
}

/* Lists, links, strong, hr — handled by .wv-prose global class */


/* ════════════════════════════════════════════
   10. PULL QUOTE
   ════════════════════════════════════════════ */
.wv-art-pullquote {
  border-left: 3px solid var(--wv-color-accent);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
}
.wv-art-pullquote__text {
  font-family: var(--wv-font-serif);
  font-size: var(--wv-fs-body-lg);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--wv-color-text-primary);
  margin: 0;
}
.wv-art-pullquote__cite {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-body-sm);
  font-weight: 400;
  color: var(--wv-color-text-secondary); /* closest token — visual review needed */
  margin-top: 10px;
  display: block;
}


/* ════════════════════════════════════════════
   11. CALLOUT BOX
   ════════════════════════════════════════════ */
.wv-art-callout {
  background: var(--wv-color-surface);
  border: 1px solid var(--wv-color-border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.wv-art-callout__title {
  /* typography via .wv-body-sm in markup + local weight override */
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 8px;
}
.wv-art-callout__body {
  /* typography via .wv-body in markup */
  line-height: 1.8;
  color: var(--wv-color-text-secondary);
  margin: 0;
}
.wv-art-callout__body p {
  margin: 0 0 10px;
}
.wv-art-callout__body p:last-child {
  margin-bottom: 0;
}


/* ════════════════════════════════════════════
   12. KEY TAKEAWAY BOX
   ════════════════════════════════════════════ */
.wv-art-takeaway {
  background: var(--wv-color-text-primary); /* closest token — visual review needed */
  border-radius: 12px;
  padding: 28px 30px;
  margin: 36px 0;
}
.wv-art-takeaway__title {
  /* typography via .wv-label-legal in markup + local overrides */
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wv-color-text-inverse);
  margin: 0 0 16px;
}
.wv-art-takeaway__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wv-art-takeaway__list li {
  /* typography via .wv-body-sm in markup */
  position: relative;
  padding-left: 18px;
  line-height: 1.75;
  color: rgba(248, 245, 236, 0.85);
  margin-bottom: 10px;
}
.wv-art-takeaway__list li:last-child {
  margin-bottom: 0;
}
.wv-art-takeaway__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wv-color-accent);
}


/* ════════════════════════════════════════════
   13. INLINE STAT
   ════════════════════════════════════════════ */
.wv-art-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--wv-color-surface);
  border: 1px solid var(--wv-color-border);
  border-radius: var(--wv-radius-pill);
  padding: 6px 16px;
  margin: 8px 4px;
}
.wv-art-stat__number {
  /* typography via .wv-h2 in markup — flag: was 22px serif italic, now 40px sans */
  color: var(--wv-color-text-primary);
}
.wv-art-stat__label {
  /* typography via .wv-body-sm in markup + local weight override */
  font-weight: 600;
  color: var(--wv-color-text-secondary);
}


/* ════════════════════════════════════════════
   14. INLINE PRODUCT CTA
   ════════════════════════════════════════════ */
.wv-art-product-cta {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  align-items: center;
  background: var(--wv-color-background);
  border: 1px solid var(--wv-color-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px 0;
}
.wv-art-product-cta__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--wv-color-card-bg);
}
.wv-art-product-cta__content {
  flex: 1;
  min-width: 0;
}
.wv-art-product-cta__label {
  /* typography via .wv-label-small in markup */
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  margin-bottom: 4px;
}
.wv-art-product-cta__title {
  /* typography via .wv-body in markup + local weight override */
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 4px;
}
.wv-art-product-cta__desc {
  /* typography via .wv-body-sm in markup */
  line-height: 1.5;
  color: var(--wv-color-text-secondary);
  margin: 0;
}
.wv-art-product-cta__btn {
  flex-shrink: 0;
  width: 100%;
  background: var(--wv-color-accent);
  color: var(--wv-color-card-bg);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-body-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--wv-transition-fast);
}
.wv-art-product-cta__btn:hover {
  background: var(--wv-color-atc-hover);
}


/* ════════════════════════════════════════════
   15. ARTICLE DIVIDER
   ════════════════════════════════════════════ */
.wv-art-divider {
  border: none;
  border-top: 1px solid var(--wv-color-border);
  margin: 40px 0;
}


/* ════════════════════════════════════════════
   16. TAGS
   ════════════════════════════════════════════ */
.wv-art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.wv-art-tag {
  /* typography via .wv-label-legal in markup + local weight override */
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wv-color-text-secondary);
  background: var(--wv-color-background);
  border: 1px solid var(--wv-color-border);
  border-radius: var(--wv-radius-pill);
  padding: 5px 14px;
  text-decoration: none;
  transition: all var(--wv-transition-fast);
}
.wv-art-tag:hover {
  border-color: var(--wv-color-text-primary);
  color: var(--wv-color-text-primary);
}


/* ════════════════════════════════════════════
   17. AUTHOR BIO
   ════════════════════════════════════════════ */
.wv-art-author {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-top: 1px solid var(--wv-color-border);
  border-bottom: 1px solid var(--wv-color-border);
  margin: 40px 0;
}
.wv-art-author__content {
  flex: 1;
  min-width: 0;
}
.wv-art-author__name {
  /* typography via .wv-h6 in markup */
  margin: 0 0 2px;
}
.wv-art-author__title {
  /* typography via .wv-label-legal in markup */
  color: var(--wv-color-text-secondary);
  margin: 0 0 8px;
}
.wv-art-author__body {
  /* typography via .wv-body-sm in markup */
  line-height: 1.7;
  color: var(--wv-color-text-secondary);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wv-art-author__link {
  /* typography via .wv-body-sm in markup + local weight override */
  font-weight: 600;
  color: var(--wv-color-accent);
  text-decoration: none;
  transition: color var(--wv-transition-fast);
}
.wv-art-author__link:hover {
  color: var(--wv-color-atc-hover);
}


/* ════════════════════════════════════════════
   18. RELATED ARTICLES — Authority (2x2 grid)
   ════════════════════════════════════════════ */
.wv-art-related {
  margin-top: 56px;
}
.wv-art-related__eyebrow {
  /* typography via .wv-label-small in markup */
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wv-art-related__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--wv-color-text-secondary);
}
.wv-art-related__title {
  /* confirmed designer serif italic moment — keep all local */
  font-family: var(--wv-font-serif);
  font-size: var(--wv-fs-h5);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--wv-color-text-primary);
  margin: 0 0 24px;
}
.wv-art-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Related card */
.wv-art-related-card {
  background: var(--wv-color-background); /* closest token — visual review needed */
  border: 1px solid var(--wv-color-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color var(--wv-transition-fast), transform var(--wv-transition-fast);
}
.wv-art-related-card:hover {
  border-color: var(--wv-color-text-secondary);
  transform: translateY(-2px);
}
.wv-art-related-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--wv-color-surface);
}
.wv-art-related-card__body {
  padding: 14px 16px 16px;
}
.wv-art-related-card__title {
  /* typography via .wv-body-sm in markup — General Grotesque, not serif */
  color: var(--wv-color-text-primary);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wv-art-related-card__excerpt {
  /* typography via .wv-body-sm in markup */
  line-height: 1.6;
  color: var(--wv-color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Standard template: related grid */
.wv-art-wrap--standard .wv-art-related__grid {
  grid-template-columns: 1fr;
}


/* ════════════════════════════════════════════
   19. SIDEBAR — Authority Template
   ════════════════════════════════════════════ */
.wv-art-sidebar {
  position: static;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Share module */
.wv-art-share {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wv-art-share__label {
  /* typography via .wv-label-small in markup */
  text-transform: uppercase;
  color: var(--wv-color-text-secondary); /* closest token — visual review needed */
}
.wv-art-share__buttons {
  display: flex;
  gap: 8px;
}
.wv-art-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--wv-color-border);
  background: var(--wv-color-background);
  color: var(--wv-color-text-secondary);
  cursor: pointer;
  transition: all var(--wv-transition-fast);
}
.wv-art-share__btn:hover {
  border-color: var(--wv-color-text-primary);
  color: var(--wv-color-text-primary);
}
.wv-art-share__btn svg {
  width: 14px;
  height: 14px;
}

/* Table of Contents */
.wv-art-toc {
  border-top: 1px solid var(--wv-color-border);
  padding-top: 20px;
}
.wv-art-toc__title {
  /* typography via .wv-label-small in markup */
  text-transform: uppercase;
  color: var(--wv-color-text-secondary); /* closest token — visual review needed */
  margin-bottom: 12px;
}
.wv-art-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wv-art-toc__link {
  /* typography via .wv-body-sm in markup */
  display: block;
  line-height: 1.4;
  color: var(--wv-color-text-secondary);
  text-decoration: none;
  padding: 6px 0 6px 14px;
  border-left: 2px solid transparent;
  transition: all var(--wv-transition-fast);
}
.wv-art-toc__link:hover {
  color: var(--wv-color-text-primary);
}
.wv-art-toc__link.active {
  color: var(--wv-color-accent);
  border-left-color: var(--wv-color-accent);
  font-weight: 600;
}

/* Subscribe nudge */
.wv-art-subscribe {
  background: var(--wv-color-text-primary); /* closest token — visual review needed */
  border-radius: 12px;
  padding: 24px 22px;
}
.wv-art-subscribe__title {
  /* typography via .wv-h6 in markup */
  color: var(--wv-color-text-inverse);
  margin: 0 0 6px;
}
.wv-art-subscribe__body {
  /* typography via .wv-body-sm in markup */
  line-height: 1.6;
  color: rgba(248, 245, 236, 0.7);
  margin: 0 0 16px;
}
.wv-art-subscribe__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(248, 245, 236, 0.2);
  border-radius: 8px;
  background: rgba(248, 245, 236, 0.08);
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-body);
  font-weight: 400;
  color: var(--wv-color-text-inverse);
  margin-bottom: 10px;
}
.wv-art-subscribe__input::placeholder {
  color: rgba(248, 245, 236, 0.4);
}
.wv-art-subscribe__btn {
  width: 100%;
  background: var(--wv-color-accent);
  color: var(--wv-color-card-bg);
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-body-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--wv-transition-fast);
}
.wv-art-subscribe__btn:hover {
  background: var(--wv-color-atc-hover);
}

/* Sidebar product card */
.wv-art-sidebar-product {
  background: var(--wv-color-background); /* closest token — visual review needed */
  border: 1px solid var(--wv-color-border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.wv-art-sidebar-product__img {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.wv-art-sidebar-product__label {
  /* typography via .wv-label-small in markup */
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  margin-bottom: 4px;
}
.wv-art-sidebar-product__title {
  /* typography via .wv-body-sm in markup + local weight override */
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 4px;
}
.wv-art-sidebar-product__price {
  /* typography via .wv-body-sm in markup */
  color: var(--wv-color-text-secondary);
  margin-bottom: 12px;
}
.wv-art-sidebar-product__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--wv-color-accent);
  color: var(--wv-color-card-bg);
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-body-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--wv-transition-fast);
}
.wv-art-sidebar-product__btn:hover {
  background: var(--wv-color-atc-hover);
}


/* 20. INLINE SUBSCRIBE — extracted to wv-email-optin.css / parts/wv-email-optin.php */


/* 21. QUIZ STRIP — removed, extracted to wv-quiz-cta.css / parts/wv-quiz-cta.php */


/* ════════════════════════════════════════════
   RESPONSIVE — Tablet (768px+)
   ════════════════════════════════════════════ */
@media (min-width: 768px) {
  .wv-art-wrap {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    /* Horizontal padding via --wv-page-gutter so the article column
       aligns with every other page surface (header, footer, shop, etc.)
       2026-06-02: was hardcoded 32px. padding-top aligned to shop's
       clamp(16px, 2vw, 24px) so the breadcrumb sits at the identical
       vertical offset as on /shop and /learn-archive. */
    padding: clamp(16px, 2vw, 24px) var(--wv-page-gutter) 56px;
    max-width: var(--wv-page-content-max);
  }

  .wv-art-wrap--standard {
    display: block;
    max-width: 740px;
    /* Same gutter + breadcrumb-aligned padding-top as the authority wrap above. */
    padding: clamp(16px, 2vw, 24px) var(--wv-page-gutter) 64px;
  }

  /* (2026-06-02) .wv-art-breadcrumb removed — article breadcrumbs
     now use the shared parts/breadcrumb.php partial which renders
     .wv-breadcrumbs (styled in wv-components.css v54). The width /
     alignment concerns the old rule handled are now owned by the
     shared component. */

  /* Breadcrumb now lives INSIDE .wv-art-wrap (both templates).
     The authority wrap is a 2-col grid at ≥768px; span the breadcrumb
     across both columns so it sits at the top edge full-width
     (matches the shop breadcrumb-spans-shop__inner alignment).
     The standard wrap is display:block so no special handling is
     needed there — the breadcrumb just flows naturally as the first
     child. */
  .wv-art-wrap > .wv-breadcrumbs {
    grid-column: 1 / -1;
  }

  .wv-art-sidebar {
    position: sticky;
    top: calc(var(--wv-header-height) + 7px);
  }

  .wv-art-headline {
    font-size: var(--wv-fs-h-serif-sm);
  }

  .wv-art-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .wv-art-wrap--standard .wv-art-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wv-art-subscribe__input {
    font-size: var(--wv-fs-body-sm);
  }
}


/* ════════════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   ════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .wv-art-wrap {
    grid-template-columns: 1fr 260px;
    gap: 72px;
    /* Same gutter + breadcrumb-aligned padding-top as 768 block. */
    padding: clamp(16px, 2vw, 24px) var(--wv-page-gutter) 64px;
  }

  .wv-art-headline {
    font-size: var(--wv-fs-h2);
  }

  .wv-art-product-cta {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }

  .wv-art-product-cta__btn {
    width: auto;
  }

  .wv-art-meta__share {
    margin-left: auto;
    width: auto;
    margin-top: 0;
  }

  .wv-art-hero {
    border-radius: 12px;
    margin-bottom: 40px;
  }

  .wv-art-pullquote__text {
    font-size: var(--wv-fs-h5);
  }

  .wv-art-body h2 {
    font-size: var(--wv-fs-h5);
  }
}
