.page-article {
  --article-accent: #8e2438;
  --article-accent-soft: rgba(142, 36, 56, 0.1);
  --article-surface: rgba(255, 255, 255, 0.92);
  --article-border: rgba(23, 21, 19, 0.1);
  background:
    radial-gradient(circle at top left, rgba(142, 36, 56, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 98, 112, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f1e8 0%, #f4efe6 100%);
}

.article-hero {
  padding-top: 34px;
}

.article-hero .feature-banner {
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 32px 64px rgba(23, 21, 19, 0.16);
  isolation: isolate;
}

.article-hero .feature-banner__content {
  max-width: min(760px, 90%);
  display: grid;
  gap: 12px;
}

.article-hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.article-hero__format,
.article-hero__deck {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-hero__format {
  color: #fff;
  background: var(--article-accent);
  box-shadow: 0 10px 22px rgba(23, 21, 19, 0.12);
}

.article-hero__deck {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

.article-body {
  display: grid;
  gap: 22px;
}

.article-summary {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--article-border);
  border-radius: 24px;
  background: var(--article-surface);
  box-shadow: 0 20px 40px rgba(23, 21, 19, 0.07);
  position: relative;
  overflow: hidden;
}

.article-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--article-accent), rgba(15, 98, 112, 0.8));
}

.article-summary__title {
  font-size: 1.18rem;
}

.article-summary__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.article-content {
  display: grid;
  gap: 20px;
}

.article-content > section {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--article-border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 32px rgba(23, 21, 19, 0.05);
}

.article-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-dual__panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 21, 19, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(23, 21, 19, 0.06);
}

.article-dual__panel h3 {
  font-size: 1.08rem;
}

.article-callout--cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--article-border);
  background:
    linear-gradient(135deg, var(--article-accent-soft), rgba(15, 98, 112, 0.05)),
    var(--article-surface);
  box-shadow: 0 20px 40px rgba(23, 21, 19, 0.08);
}

.article-callout--cta .article-callout__copy {
  display: grid;
  gap: 10px;
}

.article-callout--cta .button {
  justify-self: start;
}

.article-content h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-family: var(--font-serif);
}

.article-content h2 + p {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--muted);
  max-width: 72ch;
}

.sidebar-stats {
  display: grid;
  gap: 14px;
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
}

.sidebar-stat:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sidebar-stat span {
  color: var(--muted);
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-item {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
  text-decoration: none;
}

.related-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-body .ad-slot {
  box-shadow: 0 14px 28px rgba(23, 21, 19, 0.06);
}

.article-meta {
  margin-top: 8px;
}

.article-faq {
  display: grid;
  gap: 12px;
}

.article-faq details {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--article-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(23, 21, 19, 0.06);
}

.article-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.article-faq p {
  margin-top: 10px;
}

.article-intro-kicker {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--article-accent);
  letter-spacing: 0.02em;
}

.article-format-comparison {
  --article-accent: #7c2740;
  --article-accent-soft: rgba(124, 39, 64, 0.1);
}

.article-format-comparison .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(22, 18, 17, 0.66), rgba(124, 39, 64, 0.34)),
    linear-gradient(180deg, rgba(22, 18, 17, 0.08), rgba(22, 18, 17, 0.52));
}

.article-format-guide {
  --article-accent: #0f6270;
  --article-accent-soft: rgba(15, 98, 112, 0.1);
}

.article-format-guide .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(17, 44, 51, 0.48), rgba(15, 98, 112, 0.26)),
    linear-gradient(180deg, rgba(17, 44, 51, 0.04), rgba(17, 44, 51, 0.52));
}

.article-format-checklist {
  --article-accent: #885d28;
  --article-accent-soft: rgba(136, 93, 40, 0.1);
}

.article-format-checklist .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(44, 29, 17, 0.58), rgba(136, 93, 40, 0.22)),
    linear-gradient(180deg, rgba(44, 29, 17, 0.05), rgba(44, 29, 17, 0.56));
}

.article-format-roundup {
  --article-accent: #8a6a1f;
  --article-accent-soft: rgba(138, 106, 31, 0.1);
}

.article-format-roundup .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(33, 24, 15, 0.56), rgba(138, 106, 31, 0.24)),
    linear-gradient(180deg, rgba(33, 24, 15, 0.04), rgba(33, 24, 15, 0.52));
}

.article-format-mini-guide {
  --article-accent: #6c4d62;
  --article-accent-soft: rgba(108, 77, 98, 0.1);
}

.article-format-mini-guide .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(36, 25, 32, 0.54), rgba(108, 77, 98, 0.24)),
    linear-gradient(180deg, rgba(36, 25, 32, 0.05), rgba(36, 25, 32, 0.52));
}

.article-format-gift-idea {
  --article-accent: #996840;
  --article-accent-soft: rgba(153, 104, 64, 0.1);
}

.article-format-gift-idea .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(43, 29, 19, 0.54), rgba(153, 104, 64, 0.24)),
    linear-gradient(180deg, rgba(43, 29, 19, 0.04), rgba(43, 29, 19, 0.52));
}

.article-format-seasonal {
  --article-accent: #8e2438;
  --article-accent-soft: rgba(142, 36, 56, 0.12);
}

.article-format-seasonal .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.58), rgba(142, 36, 56, 0.28)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.54));
}

.article-format-pick {
  --article-accent: #0f6270;
  --article-accent-soft: rgba(15, 98, 112, 0.1);
}

.article-format-pick .feature-banner__overlay {
  background:
    linear-gradient(135deg, rgba(20, 29, 34, 0.5), rgba(15, 98, 112, 0.22)),
    linear-gradient(180deg, rgba(20, 29, 34, 0.04), rgba(20, 29, 34, 0.52));
}

@media (max-width: 1040px) {
  .article-hero {
    padding-top: 24px;
  }

  .article-content > section {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .article-hero .feature-banner {
    min-height: 520px;
    border-radius: 24px;
  }

  .article-dual {
    grid-template-columns: 1fr;
  }

  .article-callout--cta {
    grid-template-columns: 1fr;
  }

  .article-hero__meta-row {
    gap: 8px;
  }

  .article-hero__format,
  .article-hero__deck {
    min-height: 30px;
    font-size: 0.72rem;
  }

  .article-content > section {
    padding: 18px;
    border-radius: 20px;
  }
}
