:root {
  --black: #2e3133;
  --black-muted: #484b4c;
  --accent: #dc002f;
  --accent-emphasis: #e4002b;
  --white: #fff;
  --surface: #f0f0f0;
  --border: #ccc;
  --button-red: #ea0437;
  --button-red-hover: #c7002a;
  --button-green: #277a80;
  --button-green-hover: #106c80;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

em {
  font-style: normal;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: var(--black);
  line-height: 1.5;
  font-size: 16px;
}

/* Layout */
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 10.783px + 1.391vw, 24px);
  margin: 0;
}

/* Article */
.article {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 10px 0;
}

@media (max-width: 950px) {
  .article {
    padding: 0;
  }
}

.article-header {
  margin-bottom: 32px;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 34.783px + 1.391vw, 48px);
}

/* Typography */
.eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(20px, 17.391px + 0.696vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow__text::after {
  content: "";
  display: inline-block;
  height: 20px;
  width: 1px;
  background-color: var(--black-muted);
  margin-left: 8px;
  vertical-align: middle;
}

.title {
  color: var(--accent);
  font-size: clamp(32px, 21.565px + 2.783vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.subtitle {
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.heading {
  font-size: clamp(24px, 17.391px + 1.391vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.heading:has(.heading__tag) {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 950px) {
  .heading:has(.heading__tag) {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.heading--accent {
  color: var(--accent);
}

.heading__tag {
  display: inline-block;
  border-radius: 6px;
  background: var(--black-muted);
  color: var(--white);
  padding: 6px 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  flex-shrink: 0;
}

.paragraph {
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

strong {
  color: var(--black-muted);
}

/* Hero & figures */
.hero {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin-bottom: 24px;
}

.hero img {
  max-width: 100%;
  height: auto;
}

.figure {
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width: 650px;
}

@media (max-width: 950px) {
  .figure {
    max-width: 100%;
  }
}

.figure img {
  width: 100%;
}

/* Meta */
.meta {
  margin-bottom: clamp(48px, 37.565px + 2.783vw, 64px);
}

.meta__list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 1px;
}

@media (max-width: 950px) {
  .meta__list {
    grid-template-columns: auto;
  }
}

.meta__list-title {
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  padding: clamp(12px, 9.391px + 0.696vw, 16px) clamp(16px, 5.565px + 2.783vw, 32px);
  background: var(--black-muted);
}

.meta__list-description {
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--black-muted);
  padding: clamp(12px, 9.391px + 0.696vw, 16px) clamp(16px, 5.565px + 2.783vw, 24px);
  background: var(--surface);
}

/* Media object */
.media {
  display: flex;
  gap: 24px;
  margin: 0;
}

@media (max-width: 950px) {
  .media {
    flex-direction: column;
    gap: 16px;
  }
}

.media__body {
  flex: 1;
}

.media__image {
  max-width: 380px;
  flex-shrink: 0;
}

@media (max-width: 950px) {
  .media__image {
    max-width: 100%;
  }
}

.media__image img {
  width: 100%;
}

/* Summary box */
.summary {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 10.783px + 1.391vw, 24px);
  background: var(--surface);
  padding: 32px;
  padding: 24px 20px;
}

@media (max-width: 950px) {
  .summary {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2.783px + 1.391vw, 16px);
  margin: 0;
}

.list li {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 24px;
}

.list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

/* Quote */
.quote {
  padding: 16px 0 16px 20px;
  border-left: 2px solid var(--border);
}

.quote__text {
  margin: 0;
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.faq__item dt {
  display: flex;
  gap: clamp(8px, 5.391px + 0.696vw, 12px);
  font-size: clamp(20px, 17.391px + 0.696vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}

.faq__item dd {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 5.391px + 0.696vw, 12px);
  color: var(--black-muted);
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  line-height: 1.5;
}

.faq dt .faq__prefix,
.faq dd .faq__prefix {
  font-weight: 700;
  font-size: clamp(20px, 17.391px + 0.696vw, 24px);
  flex-shrink: 0;
}

.faq dt .faq__prefix {
  color: var(--black);
}

.faq dd .faq__prefix {
  color: var(--accent-emphasis);
}

/* Buttons */
.button-bar {
  padding: clamp(24px, 18.783px + 1.391vw, 32px) 0;
  background: var(--surface);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 10.783px + 1.391vw, 24px);
  list-style: none;
}

@media (max-width: 950px) {
  .buttons {
    justify-content: center;
  }
}

.buttons--center {
  justify-content: center;
}

.button__link {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  min-width: 280px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button__link--red {
  background: var(--button-red);
}

@media (hover: hover) {
  .button__link--red:hover {
    background: var(--button-red-hover);
  }
}

.button__link--green {
  background: var(--button-green);
}

@media (hover: hover) {
  .button__link--green:hover {
    background: var(--button-green-hover);
  }
}

.button__icon {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* CTA */
.cta {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
}

@media (max-width: 950px) {
  .cta {
    flex-direction: column;
    gap: 16px;
  }
}

.cta__image {
  display: flex;
  max-width: clamp(160px, 107.826px + 13.913vw, 240px);
  flex-shrink: 0;
  align-self: flex-start;
}

@media (max-width: 950px) {
  .cta__image {
    align-self: center;
  }
}

.cta__image img {
  width: 100%;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__heading {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.391px + 0.696vw, 8px);
}

.cta__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.cta__title a {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
}

@media (hover: hover) {
  .cta__title a:hover {
    text-decoration: underline;
  }
}

.cta__title a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg);
  vertical-align: middle;
  margin-left: 8px;
}

.cta__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.cta__description {
  color: var(--black-muted);
  font-size: 18px;
  line-height: 1.5;
}

.anchor {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 10.783px + 1.391vw, 24px);
  padding: 32px;
  background: var(--surface);
}

@media (max-width: 950px) {
  .anchor {
    padding: 24px 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.anchor__title {
  font-size: clamp(24px, 18.783px + 1.391vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.anchorList {
  display: flex;
  flex-direction: column;
  counter-reset: anchor-counter;
}

.anchorList__item {
  display: flex;
  gap: 8px;
  align-items: baseline;
  counter-increment: anchor-counter;
  color: var(--black);
}

.anchorList__item a {
  font-size: clamp(16px, 14.696px + 0.348vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .anchorList__item a:hover {
    text-decoration: underline;
  }
}

.anchorList__item:before {
  content: counter(anchor-counter, decimal-leading-zero) ".";
  display: inline-block;
  font-size: clamp(18px, 16.696px + 0.348vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  flex-shrink: 0;
}