main .section.hero-container {
  max-width: none;
  max-width: initial;
  padding: 0;
}

.hero.block {
  position: relative;
  background-color: var(--color-theme-base);
  height: 100%;
  aspect-ratio: 16/9;
  max-height: 500px;
  width: 100%;
}

.hero.block .hero-title {
  color: var(--color-white-base);
  font: var(--heading-title-xl-text);
  font-style: italic;
  text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.3);
  align-self: center;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.hero.block > div {
  height: 100%;
}

.hero.block .hero-logo {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  justify-content: flex-end;
  transform: translate(-50%, -50%);
  max-width: var(--container-max-width);
  width: 100%;
}

.hero.block .hero-logo > div {
  position: relative;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
}

.hero.block .hero-logo img {
  max-width: 55px;
  height: auto;
}

.hero.block .hero-media img,
.hero.block.hero-auto img {
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-height: 500px;
  max-width: 100%;
}

.hero.block .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: inherit;
}

.hero.block .hero-badge {
  width: 130px;
  height: 130px;
  background-color: var(--color-red-base);
  border: solid 3px var(--color-white-base);
  border-radius: 100%;
  color: var(--color-white-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
}

.hero.block .hero-badge p {
  font: var(--text-regular-sm);
  font-weight: 600;
  color: inherit;
  margin-bottom: 0;
  max-width: 65%;
  line-height: 1.1;
  letter-spacing: -0.14px;
}

.hero.block .hero-badge .large {
  font: var(--heading-title-xl-text);
  line-height: 1;
}

.hero.block .hero-badge .large span {
  font: var(--heading-title-md-text);
}

.hero.block .hero-badge .small {
  font-size: 9px;
  margin-top: 6px;
}

.hero.block .hero-badge .small:has(+ p) {
  margin-bottom: 6px;
}

.hero.block.hero-badge-logo .hero-logo {
  display: none;
}

.hero.block.hero-badge-logo .hero-content,
.hero.block.hero-badge-only .hero-content {
  justify-content: space-between;
  max-width: 920px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero.block .hero-title {
    font: var(--heading-hero-text);
    font-style: italic;
  }

  .hero.block .hero-badge {
    width: 200px;
    height: 200px;
    border-width: 6px;
    right: var(--spacing-2xl);
    top: auto;
    top: initial;
  }

  .hero.block .hero-badge p {
    font: var(--heading-title-sm-text);
    line-height: 1.1;
    max-width: 75%;
  }

  .hero.block .hero-badge .large {
    font: var(--heading-hero-text);
    line-height: 1;
  }

  .hero.block .hero-badge .large span {
    font: var(--heading-title-sm-text);
  }

  .hero.block .hero-logo > div {
    right: var(--spacing-2xl);
    top: var(--spacing-2xl);
  }

  .hero.block .hero-logo img {
    max-width: min(9vw, 90px);
  }

  .hero.block.hero-badge-logo .hero-logo {
    display: flex;
  }

  .hero.block.hero-badge-logo .hero-content,
  .hero.block.hero-badge-only .hero-content {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero.block .hero-logo {
    top: 50%;
  }

  .hero.block .hero-logo img {
    max-width: min(9vw, 150px);
  }
}