.osmium-hero {
  --osmium-hero-min-height: 36rem;
  background: var(--osmium-gruen);
  color: var(--osmium-sand-hell);
  isolation: isolate;
  min-height: var(--osmium-hero-min-height);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.osmium-hero--height-compact {
  --osmium-hero-min-height: 28rem;
}

.osmium-hero--height-default {
  --osmium-hero-min-height: 36rem;
}

.osmium-hero--height-tall {
  --osmium-hero-min-height: 44rem;
}

.osmium-hero--height-fullscreen {
  --osmium-hero-min-height: 88vh;
}

.osmium-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--osmium-messing) 0 60px,
    transparent 60px 76px
  );
  opacity: 0.85;
  z-index: 3;
}

.osmium-hero__media {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.osmium-hero__image,
.osmium-hero__video {
  display: block;
  height: 100%;
  inset: 0;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.osmium-hero--fit-cover .osmium-hero__image,
.osmium-hero--fit-cover .osmium-hero__video {
  object-fit: cover;
}

.osmium-hero--fit-contain .osmium-hero__image,
.osmium-hero--fit-contain .osmium-hero__video {
  object-fit: contain;
}

.osmium-hero--fit-fill .osmium-hero__image,
.osmium-hero--fit-fill .osmium-hero__video {
  object-fit: fill;
}

.osmium-hero__overlay {
  background: var(--osmium-hero-overlay-color, rgba(13, 44, 29, 0.55));
  inset: 0;
  opacity: calc(var(--osmium-hero-overlay-opacity, 55) / 100);
  position: absolute;
  z-index: 1;
}

.osmium-hero__jubilee {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-54%);
  color: transparent;
  font-family: var(--osmium-font-display);
  font-size: clamp(16rem, 38vw, 34rem);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 2px rgba(239, 230, 214, 0.16);
  z-index: 1;
}

.osmium-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: var(--osmium-hero-min-height);
  padding-top: 5.5rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.osmium-hero__content > .row:first-child {
  flex: 1 0 auto;
}

.osmium-hero__eyebrow {
  color: var(--osmium-messing-hell);
  margin-bottom: 0.85rem;
}

.osmium-hero__title {
  color: var(--osmium-sand-hell);
  font-family: var(--osmium-font-display);
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  line-height: 0.92;
  margin: 1rem 0 0;
  text-transform: uppercase;
}

.osmium-hero__visual-title {
  display: block;
}

.osmium-hero__accent {
  color: var(--osmium-messing-hell);
  display: block;
}

.osmium-hero__intro {
  color: rgba(239, 230, 214, 0.85);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  max-width: 35rem;
}

.osmium-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.osmium-hero__badge-wrap {
  display: flex;
  justify-content: flex-end;
}

.osmium-hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border: 2px solid var(--osmium-messing);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(227, 184, 90, 0.25), transparent 60%);
  color: var(--osmium-sand-hell);
  gap: 0.1rem;
  text-align: center;
}

.osmium-hero__badge-number {
  color: var(--osmium-messing-hell);
  font-family: var(--osmium-font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.osmium-hero__badge-text {
  font-family: var(--osmium-font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.osmium-hero__meta {
  border-top: 1px solid rgba(239, 230, 214, 0.25);
  margin-top: 3rem;
  padding-bottom: 1rem;
}

.osmium-hero__meta-item {
  border-bottom: 1px solid rgba(239, 230, 214, 0.25);
  padding: 1.2rem 0;
}

.osmium-hero__meta-label {
  color: var(--osmium-messing-hell);
  font-family: var(--osmium-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.osmium-hero__meta-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.osmium-hero__meta-value a {
  color: var(--osmium-sand-hell);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .osmium-hero__badge-wrap {
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .osmium-hero {
    --osmium-hero-min-height: auto;
  }

  .osmium-hero__jubilee {
    display: none;
  }

  .osmium-hero__content {
    min-height: auto;
    padding-top: 4.5rem;
  }

  .osmium-hero__intro {
    font-size: 1rem;
  }
}
