/* ═══════════════════════════════════════════
   Article Templates — Authority & Standard
   Templates: single-authority.php, single-standard.php
   Prefix: wv-art-
   ═══════════════════════════════════════════ */


/* ════════════════════════════════════════════
   1. BREADCRUMB
   ════════════════════════════════════════════ */
.wv-art-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
  margin-bottom: 24px;
}
.wv-art-breadcrumb a {
  color: var(--wv-color-text-secondary);
  text-decoration: none;
  transition: color var(--wv-transition-fast);
}
.wv-art-breadcrumb a:hover {
  color: var(--wv-color-primary);
}
.wv-art-breadcrumb__sep {
  font-size: 10px;
  color: #BDB5AC; /* TODO: add to CSS variables if used across multiple pages */
}


/* ════════════════════════════════════════════
   3. ARTICLE TOPIC (cluster pill + label)
   ════════════════════════════════════════════ */
.wv-art-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.wv-art-topic__pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--wv-font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: var(--wv-radius-pill);
  border: 1px solid;
  white-space: nowrap;
}

/* Cluster pill — neutral style for all clusters */
.wv-art-topic__pill[class*="--"] {
  background: var(--wv-color-background);
  color: var(--wv-color-text-secondary);
  border-color: var(--wv-color-border);
}

.wv-art-topic__label {
  font-family: var(--wv-font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
}


/* ════════════════════════════════════════════
   4. HEADLINE + DECK
   ════════════════════════════════════════════ */
.wv-art-headline {
  font-family: var(--wv-font-serif);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--wv-color-text-primary);
  margin: 0 0 16px;
}
.wv-art-deck {
  font-family: var(--wv-font-primary);
  font-size: 18px;
  font-weight: 400;
  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__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--wv-color-surface);
}
.wv-art-meta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wv-art-meta__author {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
}
.wv-art-meta__detail {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #A09A8E; /* TODO: add to CSS variables if used across multiple pages */
}
.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: auto;
}
.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: 12px;
  background: var(--wv-color-surface);
  margin-bottom: 40px;
}


/* ════════════════════════════════════════════
   7. LAYOUT — Authority Template
   ════════════════════════════════════════════ */
.wv-art-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 32px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 72px;
}
.wv-art-main {
  min-width: 0;
}


/* ════════════════════════════════════════════
   8. LAYOUT — Standard Template
   ════════════════════════════════════════════ */
.wv-art-wrap--standard {
  max-width: 740px;
  display: block;
  padding: 32px 48px 64px;
}
.wv-art-wrap--standard .wv-art-main {
  max-width: 100%;
}


/* ════════════════════════════════════════════
   9. BODY COPY
   ════════════════════════════════════════════ */
.wv-art-body {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  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;
}
.wv-art-body strong,
.wv-art-body b {
  font-weight: 600;
  color: var(--wv-color-text-primary);
}
.wv-art-body a {
  color: var(--wv-color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--wv-transition-fast);
}
.wv-art-body a:hover {
  color: var(--wv-color-primary-hover);
}

/* Headings in body */
.wv-art-body h2 {
  font-family: var(--wv-font-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--wv-color-text-primary);
  margin: 40px 0 16px;
}
.wv-art-body h2:first-child {
  margin-top: 0;
}
.wv-art-body h3 {
  font-family: var(--wv-font-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--wv-color-text-primary);
  margin: 32px 0 12px;
}
.wv-art-body h3:first-child {
  margin-top: 0;
}

/* Lists */
.wv-art-body ul,
.wv-art-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.wv-art-body li {
  margin-bottom: 8px;
  line-height: 1.75;
}
.wv-art-body li:last-child {
  margin-bottom: 0;
}

/* Horizontal rule */
.wv-art-body hr {
  border: none;
  border-top: 1px solid var(--wv-color-border);
  margin: 36px 0;
}


/* ════════════════════════════════════════════
   10. PULL QUOTE
   ════════════════════════════════════════════ */
.wv-art-pullquote {
  border-left: 3px solid var(--wv-color-primary);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
}
.wv-art-pullquote__text {
  font-family: var(--wv-font-serif);
  font-size: 24px;
  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: 12px;
  font-weight: 400;
  color: #A09A8E; /* TODO: add to CSS variables if used across multiple pages */
  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 {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 8px;
}
.wv-art-callout__body {
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 400;
  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: #1E1E1C; /* TODO: add to CSS variables if used across multiple pages */
  border-radius: 12px;
  padding: 28px 30px;
  margin: 36px 0;
}
.wv-art-takeaway__title {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wv-color-text-inverse, #F8F5EC);
  margin: 0 0 16px;
}
.wv-art-takeaway__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wv-art-takeaway__list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(248, 245, 236, 0.85); /* TODO: add to CSS variables if used across multiple pages */
  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-primary);
}


/* ════════════════════════════════════════════
   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 {
  font-family: var(--wv-font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--wv-color-text-primary);
}
.wv-art-stat__label {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--wv-color-text-secondary);
}


/* ════════════════════════════════════════════
   14. INLINE PRODUCT CTA
   ════════════════════════════════════════════ */
.wv-art-product-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  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: #fff;
}
.wv-art-product-cta__content {
  flex: 1;
  min-width: 0;
}
.wv-art-product-cta__label {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  margin-bottom: 4px;
}
.wv-art-product-cta__title {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 4px;
}
.wv-art-product-cta__desc {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
  line-height: 1.5;
  margin: 0;
}
.wv-art-product-cta__btn {
  flex-shrink: 0;
  background: var(--wv-color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  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-primary-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 {
  display: inline-flex;
  align-items: center;
  font-family: var(--wv-font-primary);
  font-size: 11px;
  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__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #1E1E1C; /* TODO: add to CSS variables if used across multiple pages */
}
.wv-art-author__content {
  flex: 1;
  min-width: 0;
}
.wv-art-author__name {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 2px;
}
.wv-art-author__title {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #A09A8E; /* TODO: add to CSS variables if used across multiple pages */
  margin: 0 0 8px;
}
.wv-art-author__body {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--wv-color-text-secondary);
  margin: 0 0 10px;
}
.wv-art-author__link {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--wv-color-primary);
  text-decoration: none;
  transition: color var(--wv-transition-fast);
}
.wv-art-author__link:hover {
  color: var(--wv-color-primary-hover);
}


/* ════════════════════════════════════════════
   18. RELATED ARTICLES — Authority (2x2 grid)
   ════════════════════════════════════════════ */
.wv-art-related {
  margin-top: 56px;
}
.wv-art-related__eyebrow {
  font-family: var(--wv-font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  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-primary);
}
.wv-art-related__title {
  font-family: var(--wv-font-serif);
  font-size: 28px;
  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: repeat(2, 1fr);
  gap: 20px;
}

/* Related card — reuse wv-la-card patterns */
.wv-art-related-card {
  background: #FDFAF5; /* TODO: add to CSS variables if used across multiple pages */
  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 {
  font-family: var(--wv-font-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  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 {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  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: 1x2 related grid */
.wv-art-wrap--standard .wv-art-related__grid {
  grid-template-columns: repeat(2, 1fr);
}


/* ════════════════════════════════════════════
   19. SIDEBAR — Authority Template
   ════════════════════════════════════════════ */
.wv-art-sidebar {
  position: sticky;
  top: calc(var(--wv-header-height) + 7px);
  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 {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: #A09A8E; /* TODO: add to CSS variables if used across multiple pages */
}
.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 {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: #A09A8E; /* TODO: add to CSS variables if used across multiple pages */
  margin-bottom: 12px;
}
.wv-art-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wv-art-toc__link {
  display: block;
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  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-primary);
  border-left-color: var(--wv-color-primary);
  font-weight: 600;
}

/* Subscribe nudge */
.wv-art-subscribe {
  background: #1E1E1C; /* TODO: add to CSS variables if used across multiple pages */
  border-radius: 12px;
  padding: 24px 22px;
}
.wv-art-subscribe__title {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--wv-color-text-inverse, #F8F5EC);
  margin: 0 0 6px;
}
.wv-art-subscribe__body {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(248, 245, 236, 0.7); /* TODO: add to CSS variables if used across multiple pages */
  margin: 0 0 16px;
}
.wv-art-subscribe__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(248, 245, 236, 0.2); /* TODO: add to CSS variables if used across multiple pages */
  border-radius: 8px;
  background: rgba(248, 245, 236, 0.08); /* TODO: add to CSS variables if used across multiple pages */
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--wv-color-text-inverse, #F8F5EC);
  margin-bottom: 10px;
}
.wv-art-subscribe__input::placeholder {
  color: rgba(248, 245, 236, 0.4); /* TODO: add to CSS variables if used across multiple pages */
}
.wv-art-subscribe__btn {
  width: 100%;
  background: var(--wv-color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  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-primary-hover);
}

/* Sidebar product card */
.wv-art-sidebar-product {
  background: #FDFAF5; /* TODO: add to CSS variables if used across multiple pages */
  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 {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  margin-bottom: 4px;
}
.wv-art-sidebar-product__title {
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin: 0 0 4px;
}
.wv-art-sidebar-product__price {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  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-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  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-primary-hover);
}


/* ════════════════════════════════════════════
   20. STANDARD TEMPLATE — Inline Subscribe Block
   ════════════════════════════════════════════ */
.wv-art-inline-subscribe {
  background: #1E1E1C; /* TODO: add to CSS variables if used across multiple pages */
  border-radius: 12px;
  padding: 32px 36px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wv-art-inline-subscribe__content {
  flex: 1;
  min-width: 0;
}
.wv-art-inline-subscribe__title {
  font-family: var(--wv-font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--wv-color-text-inverse, #F8F5EC);
  margin: 0 0 6px;
}
.wv-art-inline-subscribe__body {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(248, 245, 236, 0.7); /* TODO: add to CSS variables if used across multiple pages */
  margin: 0;
}
.wv-art-inline-subscribe__form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.wv-art-inline-subscribe__input {
  padding: 10px 16px;
  border: 1px solid rgba(248, 245, 236, 0.2); /* TODO: add to CSS variables if used across multiple pages */
  border-radius: 8px;
  background: rgba(248, 245, 236, 0.08); /* TODO: add to CSS variables if used across multiple pages */
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--wv-color-text-inverse, #F8F5EC);
  width: 220px;
}
.wv-art-inline-subscribe__input::placeholder {
  color: rgba(248, 245, 236, 0.4); /* TODO: add to CSS variables if used across multiple pages */
}
.wv-art-inline-subscribe__btn {
  background: var(--wv-color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--wv-transition-fast);
}
.wv-art-inline-subscribe__btn:hover {
  background: var(--wv-color-primary-hover);
}


/* ════════════════════════════════════════════
   21. STANDARD TEMPLATE — Quiz Strip CTA
   ════════════════════════════════════════════ */
.wv-art-quiz-strip {
  background: #1E1E1C; /* TODO: add to CSS variables if used across multiple pages */
  border-radius: 12px;
  padding: 28px 32px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wv-art-quiz-strip__content {
  flex: 1;
  min-width: 0;
}
.wv-art-quiz-strip__eyebrow {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  margin-bottom: 6px;
}
.wv-art-quiz-strip__title {
  font-family: var(--wv-font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--wv-color-text-inverse, #F8F5EC);
  margin: 0 0 4px;
}
.wv-art-quiz-strip__body {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  color: rgba(248, 245, 236, 0.7); /* TODO: add to CSS variables if used across multiple pages */
  margin: 0;
}
.wv-art-quiz-strip__btn {
  flex-shrink: 0;
  background: var(--wv-color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--wv-transition-fast);
}
.wv-art-quiz-strip__btn:hover {
  background: var(--wv-color-primary-hover);
}


/* ════════════════════════════════════════════
   22. RESPONSIVE — Mobile (max-width: 767px)
   ════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Authority layout: single column, sidebar drops below */
  .wv-art-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 20px 48px;
    max-width: 100%;
  }

  /* Standard layout */
  .wv-art-wrap--standard {
    padding: 20px 20px 48px;
    max-width: 100%;
  }

  /* Sidebar unstick */
  .wv-art-sidebar {
    position: static;
  }

  /* Headline */
  .wv-art-headline {
    font-size: 30px;
  }

  /* Deck */
  .wv-art-deck {
    font-size: 16px;
  }

  /* Body h2 */
  .wv-art-body h2 {
    font-size: 22px;
  }

  /* Pull quote */
  .wv-art-pullquote__text {
    font-size: 20px;
  }

  /* Inline product CTA stack */
  .wv-art-product-cta {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .wv-art-product-cta__btn {
    width: 100%;
  }

  /* Related grid: single column */
  .wv-art-related__grid {
    grid-template-columns: 1fr;
  }
  .wv-art-wrap--standard .wv-art-related__grid {
    grid-template-columns: 1fr;
  }

  /* Related section title */
  .wv-art-related__title {
    font-size: 22px;
  }

  /* Inline subscribe: stack vertically */
  .wv-art-inline-subscribe {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 22px;
  }
  .wv-art-inline-subscribe__form {
    flex-direction: column;
  }
  .wv-art-inline-subscribe__input {
    width: 100%;
  }

  /* Quiz strip: stack */
  .wv-art-quiz-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 22px;
  }
  .wv-art-quiz-strip__btn {
    text-align: center;
  }

  /* Meta share buttons wrap */
  .wv-art-meta__share {
    margin-left: 0;
    width: 100%;
    margin-top: 8px;
  }

  /* Hero image */
  .wv-art-hero {
    border-radius: 8px;
    margin-bottom: 28px;
  }
}


/* ════════════════════════════════════════════
   23. RESPONSIVE — Tablet (768px–1023px)
   ════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Authority: narrow the sidebar or collapse to single column */
  .wv-art-wrap {
    grid-template-columns: 1fr 200px;
    gap: 40px;
    padding: 28px 32px 56px;
  }

  /* Headline */
  .wv-art-headline {
    font-size: 36px;
  }

  /* Related grid stays 2-col */
  .wv-art-related__grid {
    gap: 16px;
  }

  /* Sidebar subscribe input */
  .wv-art-subscribe__input {
    font-size: 12px;
  }
}
