.apex-article {
  --apex-orange: #ff8c00;
  --apex-ink: #272b30;
  --apex-muted: #687078;
  --apex-soft: #f5f6f7;
  color: var(--apex-ink);
  background: #fff;
  font-family: Montserrat, Arial, sans-serif;
}

.apex-article * {
  box-sizing: border-box;
}

.apex-article__hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  background: #dfe3e6 center / cover no-repeat;
  overflow: hidden;
}

.apex-article__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 25, 29, .88) 0%, rgba(20, 25, 29, .62) 43%, rgba(20, 25, 29, .08) 76%);
}

.apex-article__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apex-article__hero-content,
.apex-article__content,
.apex-article__breadcrumbs {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.apex-article__hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 170px 0 72px;
  color: #fff;
}

.apex-article__kicker {
  margin: 0 0 18px;
  color: var(--apex-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.apex-article h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  font-weight: 600;
}

.apex-article__dek {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}

.apex-article__breadcrumbs-wrap {
  background: #fff;
  border-bottom: 1px solid #e7e8ea;
}

.apex-article__breadcrumbs {
  padding: 17px 0;
  font-size: 13px;
  color: var(--apex-muted);
}

.apex-article__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.apex-article__breadcrumbs span {
  margin: 0 8px;
  color: #a9afb4;
}

.apex-article__content {
  max-width: 860px;
  padding: 72px 0 96px;
  font-size: 18px;
  line-height: 1.75;
}

.apex-article__meta {
  margin-bottom: 34px;
  color: var(--apex-muted);
  font-size: 14px;
}

.apex-article__lead {
  margin: 0 0 48px;
  padding: 28px 32px;
  border-left: 4px solid var(--apex-orange);
  background: var(--apex-soft);
  font-size: 21px;
  line-height: 1.6;
}

.apex-article h2 {
  margin: 58px 0 20px;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 600;
}

.apex-article h3 {
  margin: 34px 0 14px;
  font-size: 23px;
  line-height: 1.35;
}

.apex-article p {
  margin: 0 0 22px;
}

.apex-article ul,
.apex-article ol {
  margin: 0 0 26px;
  padding-left: 26px;
}

.apex-article li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.apex-article a {
  color: #d87500;
  text-underline-offset: 3px;
}

.apex-article__note,
.apex-article__sources {
  margin: 42px 0;
  padding: 30px 32px;
  border-radius: 14px;
  background: #fff7eb;
  border: 1px solid #ffd7a5;
}

.apex-article__note strong,
.apex-article__sources h2 {
  color: #9b5100;
}

.apex-article__sources h2 {
  margin: 0 0 18px;
  font-size: 27px;
}

.apex-article__sources ol {
  margin-bottom: 0;
}

.apex-article__cta {
  margin-top: 64px;
  padding: 46px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #2d3136, #171a1d);
  text-align: center;
}

.apex-article__cta h2 {
  margin: 0 0 14px;
  color: #fff;
}

.apex-article__cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.82);
}

.apex-article__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--apex-orange);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.apex-article__button:hover {
  transform: translateY(-2px);
  background: #e77f00;
}

@media (max-width: 760px) {
  .apex-article__hero {
    min-height: 610px;
    align-items: flex-end;
  }

  .apex-article__hero::after {
    background: linear-gradient(0deg, rgba(18,22,26,.94) 0%, rgba(18,22,26,.68) 58%, rgba(18,22,26,.18) 100%);
  }

  .apex-article__hero-image {
    object-position: 68% center;
  }

  .apex-article__hero-content {
    padding: 170px 0 48px;
  }

  .apex-article h1 {
    font-size: 36px;
  }

  .apex-article__dek {
    font-size: 17px;
  }

  .apex-article__content {
    padding: 48px 0 72px;
    font-size: 16px;
    line-height: 1.7;
  }

  .apex-article__lead,
  .apex-article__note,
  .apex-article__sources {
    padding: 22px;
  }

  .apex-article__lead {
    font-size: 18px;
  }

  .apex-article__cta {
    padding: 34px 22px;
  }
}
