.hero-widget.event,
.hero-widget.event .featured-event-link-wrap {
  color: #fff;
}

:root {
  --nav-height: 96px;
  --nav-height-scrolled: 68px;
}

.navabar {
  height: var(--nav-height);
  transition: height 0.35s ease;
}

.navabar.nav-scrolled {
  height: var(--nav-height-scrolled);
}

.navabar .navbar-brand {
  min-width: 120px;
  max-width: 200px;
}

.navabar .navbar-brand .text-block {
  margin-top: 0;
  font-size: 22px;
}

.navabar .menu-link {
  width: 56px;
  height: 56px;
  padding: 12px;
}

.navabar .button.small.nav-button {
  min-width: 120px;
  padding: 8px 24px;
}

.navabar .navbar-scroll-bg {
  background-image: none;
  background-color: rgba(16, 14, 12, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  transition: opacity 0.35s ease;
}

.navabar.nav-scrolled .navbar-scroll-bg {
  opacity: 1;
}

.cms-detail-hero {
  background-color: var(--color--dark-beige);
  padding-top: var(--nav-height);
}

.cms-detail-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  overflow: hidden;
  background-color: var(--color--dark-beige);
}

.cms-detail-hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cms-detail-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(16, 14, 12, 0.45) 55%,
    rgba(16, 14, 12, 0.88) 100%
  );
  pointer-events: none;
}

.cms-detail-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  color: #fff;
}

.cms-detail-hero__frame--no-image {
  aspect-ratio: auto;
  max-height: none;
  min-height: 320px;
}

.cms-detail-hero__frame--no-image .cms-detail-hero__content {
  position: relative;
  inset: auto;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 48px 0;
  background: linear-gradient(
    180deg,
    var(--color--dark-beige) 0%,
    color-mix(in srgb, var(--color--dark-beige) 70%, var(--color--primary)) 100%
  );
}

.locale-switcher {
  display: inline-flex;
  align-items: stretch;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.locale-switcher__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 7px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--fonts--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.locale-switcher__option:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.locale-switcher__option.is-active {
  background: var(--color--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.locale-switcher__option:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.navbar-right .locale-switcher {
  flex-shrink: 0;
}

.button-group.footer .locale-switcher {
  border-color: rgba(236, 236, 240, 0.28);
  background: rgba(0, 0, 0, 0.1);
}

.button-group.footer .locale-switcher__option {
  color: rgba(236, 236, 240, 0.82);
}

.button-group.footer .locale-switcher__option:hover:not(.is-active) {
  background: rgba(236, 236, 240, 0.12);
  color: var(--color--secondary);
}

.button-group.footer .locale-switcher__option.is-active {
  background: var(--color--primary);
  color: #fff;
}

.button-group.footer .locale-switcher__option:focus-visible {
  outline-color: var(--color--secondary);
}

.vertical-links .locale-switcher {
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  :root {
    --nav-height: 72px;
    --nav-height-scrolled: 56px;
  }

  .locale-switcher {
    align-self: center;
  }

  .locale-switcher__option {
    min-width: 52px;
    padding-inline: 18px;
  }

  .navabar .menu-link {
    width: 52px;
    height: 44px;
    padding: 10px;
  }

  .navabar .navbar-brand .text-block {
    font-size: 18px;
  }

  .cms-detail-hero__frame {
    max-height: 420px;
  }

  .cms-detail-hero__content {
    padding-bottom: 32px;
  }
}
