.ks-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #f3f3f3;
}

.ks-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2svh 2vw;
}

.ks-hero__image {
  display: block;
  width: 72vw;
  max-width: 1100px;
  max-height: 88svh;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.ks-hero__nav {
  --hero-left: 3vw;
  --hero-bottom: 2svh;
  --hero-lh: 0.82;
  --hero-font-size: 5rem;

  position: absolute;
  left: var(--hero-left);
  bottom: var(--hero-bottom);
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-size: var(--hero-font-size);
  line-height: var(--hero-lh);
  font-weight: 900;
  text-transform: uppercase;

  max-width: 45vw;
}

.ks-hero__link {
  display: block;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ks-hero__link:hover,
.ks-hero__link:focus-visible,
.ks-hero__link.is-active {
  color: #b51217;
}

@media (max-width: 1024px) {
  .ks-hero__image {
    width: 82vw;
    max-height: 76svh;
  }

  .ks-hero__nav {
    max-width: 58vw;
  }
}

@media (max-width: 767px) {
  .ks-hero__media {
    align-items: flex-start;
    padding-top: 8svh;
  }

  .ks-hero__image {
    width: 92vw;
    max-height: 46svh;
  }

  .ks-hero__nav {
    --hero-left: 4vw;
    --hero-bottom: 3svh;
    max-width: calc(100vw - 8vw);
  }

  .ks-hero__link {
    white-space: normal;
  }
}