.feature-banner {
  position: relative;
  height: var(--feature-banner-height, 520px);
  overflow: hidden;
  border-block-end: 1px solid rgba(var(--color-entry-line));
}

.feature-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.feature-banner__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(10, 8, 8, calc(var(--feature-banner-overlay, 55%)));
}

.feature-banner--right .feature-banner__scrim {
  background: linear-gradient(
    to left,
    rgba(10, 8, 8, 0.88) 0%,
    rgba(10, 8, 8, 0.6) 40%,
    rgba(10, 8, 8, 0.15) 70%,
    transparent 100%
  );
}

.feature-banner--left .feature-banner__scrim {
  background: linear-gradient(
    to right,
    rgba(10, 8, 8, 0.88) 0%,
    rgba(10, 8, 8, 0.6) 40%,
    rgba(10, 8, 8, 0.15) 70%,
    transparent 100%
  );
}

.feature-banner--center .feature-banner__scrim {
  background: linear-gradient(to bottom, transparent 30%, rgba(10, 8, 8, 0.7) 100%);
}

.feature-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-banner--left .feature-banner__content {
  align-items: flex-start;
  text-align: start;
}

.feature-banner--right .feature-banner__content {
  align-items: flex-end;
  text-align: end;
}

.feature-banner--center .feature-banner__content {
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.feature-banner__eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(var(--color-light-text));
  margin-block-end: 14px;
}

.feature-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 0.95;
  max-width: 480px;
  color: rgba(var(--color-text));
}

.feature-banner__heading em {
  font-style: italic;
  color: rgba(var(--color-light-text));
}

.feature-banner__text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  max-width: 360px;
  margin-block-start: 16px;
  color: rgba(var(--color-text), 0.7);
}

.feature-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  max-width: 100%;
  margin-block-start: 24px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background-color: rgba(var(--color-button-background));
  color: rgba(var(--color-button-text));
  transition: opacity 0.15s ease;
}

.feature-banner__button:hover {
  opacity: 0.82;
}

@media (max-width: 959px) {
  .feature-banner__heading,
  .feature-banner__text {
    max-width: none;
  }
}
