.section-jumbotron-hero {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 0;
}

.jumbotron-hero__images-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: layout style paint;
}

.jumbotron-hero__images {
  position: relative;
  width: 100%;
  height: 100%;
}

.jumbotron-hero__image-top,
.jumbotron-hero__image-bottom {
  position: absolute;
  z-index: 0;
  aspect-ratio: 1 / 1;
  width: 50%;
}

@media (min-width: 768px) {
  .jumbotron-hero__image-top,
  .jumbotron-hero__image-bottom {
    width: 33.33333333333333%;
  }
}

.jumbotron-hero__image-top {
  top: 0;
  right: 0;
}

.jumbotron-hero__image-bottom {
  bottom: 0;
  left: 0;
}

.jumbotron-hero__image-top img,
.jumbotron-hero__image-bottom img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-jumbotron-hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jumbotron-hero__wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: var(--spacer--lg) var(--spacer--sm);
  background-color: var(--background);
}

@media (min-width: 768px) {
  .jumbotron-hero__wrapper {
    max-width: 840px;
    padding: 7.5rem;
  }
}

.jumbotron-hero__eyebrow {
  margin-bottom: var(--spacer);
}

.jumbotron-hero__headline {
  --h1-font-size--mobile: 1.65rem;

  font-family: var(--large-font);
  font-weight: var(--large-font-weight);
  letter-spacing: var(--large-letter-spacing);
  text-transform: var(--large-text-transform);
}

.jumbotron-hero__buttons {
  margin-top: var(--spacer);
}

.jumbotron-hero__cta-wrapper {
  --cta-wrapper-width: 50%;

  position: relative;
  width: 100%;
  max-width: var(--cta-wrapper-width);
  padding: var(--spacer);
  margin-left: auto;
  background-color: var(--background);
}

@media (min-width: 786px) {
  .jumbotron-hero__cta-wrapper {
    --cta-wrapper-width: 17.5%;

    position: absolute;
    bottom: 0;
    right: calc(var(--cta-wrapper-width) * 0.25);
    z-index: 1;
  }
}

.jumbotron-hero__cta-wrapper ul {
  padding-left: var(--spacer);
}

.jumbotron-hero__cta-wrapper li {
  margin-bottom: 0;
}

.jumbotron-hero__cta-link {
  display: block;
  text-decoration: none;
  color: var(--text);
}

.jumbotron-hero__cta-headline {
  display: flex;
  align-items: center;
  gap: var(--spacer--sm);
}

.jumbotron-hero__cta-headline svg {
  width: 0.65rem;
  height: 0.65rem;
  object-fit: contain;
  fill: currentColor;
  transition: var(--transition);
}

.jumbotron-hero__cta-content :last-child {
  margin-bottom: 0;
}

.jumbotron-hero__cta-link:focus,
.jumbotron-hero__cta-link:hover {
  text-decoration: none;
  color: var(--accent);
}

.jumbotron-hero__cta-link:focus svg,
.jumbotron-hero__cta-link:hover svg {
  transform: rotate(-90deg);
}