:root {
  --dv-bambi-blue: #28b7e8;
  --dv-bambi-green: #20c56b;
  --dv-bambi-yellow: #ffca2f;
  --dv-bambi-coral: #ff735d;
  --dv-bambi-ink: #2d2942;
  --dv-bambi-muted: #6c6a7d;
}

.dv-bambi-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  border-radius: 38px;
  max-width: 1280px;
  margin: 34px auto 64px;
  box-shadow: 0 34px 90px rgba(45, 41, 66, .14);
  background: #eaf8ff;
}

.dv-bambi-hero--height-medium { min-height: 520px; }
.dv-bambi-hero--height-large { min-height: 620px; }
.dv-bambi-hero--height-extra { min-height: 720px; }

.dv-bambi-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--dv-bambi-hero-bg);
  background-size: cover;
  background-position: center center;
  transform: scale(1.015);
}

.dv-bambi-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, .86) 22%, rgba(255, 255, 255, .2) 48%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(90deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .63) 34%, rgba(255, 255, 255, .1) 72%);
}

.dv-bambi-hero--tint-soft .dv-bambi-hero__overlay {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, .86) 23%, rgba(255, 255, 255, .16) 55%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(90deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .5) 38%, rgba(255, 255, 255, .04) 80%);
}

.dv-bambi-hero--tint-strong .dv-bambi-hero__overlay {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, .98) 0, rgba(255, 255, 255, .93) 28%, rgba(255, 255, 255, .42) 58%, rgba(255, 255, 255, .08) 78%),
    linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .72) 42%, rgba(255, 255, 255, .18) 82%);
}

.dv-bambi-hero::before,
.dv-bambi-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  opacity: .92;
  pointer-events: none;
}

.dv-bambi-hero::before {
  width: 230px;
  height: 230px;
  background: var(--dv-bambi-yellow);
  right: -82px;
  top: -88px;
}

.dv-bambi-hero::after {
  width: 170px;
  height: 170px;
  background: var(--dv-bambi-green);
  left: -54px;
  bottom: -70px;
}

.dv-bambi-hero__inner {
  position: relative;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: clamp(34px, 6vw, 78px);
}

.dv-bambi-hero--center .dv-bambi-hero__inner { justify-content: center; text-align: center; }
.dv-bambi-hero--right .dv-bambi-hero__inner { justify-content: flex-end; }

.dv-bambi-hero__panel {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(26px, 4.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 26px 74px rgba(45, 41, 66, .14);
  backdrop-filter: blur(10px);
}

.dv-bambi-hero__panel::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--dv-bambi-blue);
  right: -28px;
  bottom: -34px;
  z-index: -1;
}

.dv-bambi-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--dv-bambi-blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dv-bambi-hero__title {
  margin: 0;
  color: var(--dv-bambi-ink);
  font-size: clamp(2.3rem, 4.7vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 950;
}

.dv-bambi-hero__text {
  margin-top: 22px;
  color: var(--dv-bambi-muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.78;
  font-weight: 600;
}

.dv-bambi-hero__text p { margin: 0; }
.dv-bambi-hero__text p + p { margin-top: .8em; }

.dv-bambi-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.dv-bambi-hero--center .dv-bambi-hero__actions { justify-content: center; }

.dv-bambi-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-size: .96rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.dv-bambi-hero__button:hover,
.dv-bambi-hero__button:focus {
  color: #fff;
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.dv-bambi-hero__button--primary {
  background: var(--dv-bambi-green);
  box-shadow: 0 14px 30px rgba(32, 197, 107, .25);
}

.dv-bambi-hero__button--secondary {
  background: var(--dv-bambi-blue);
  box-shadow: 0 14px 30px rgba(40, 183, 232, .25);
}

.dv-bambi-hero__caption {
  position: absolute;
  right: clamp(22px, 4vw, 54px);
  bottom: clamp(22px, 4vw, 44px);
  max-width: 310px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--dv-bambi-ink);
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(45,41,66,.12);
  backdrop-filter: blur(9px);
}

@media (max-width: 1024px) {
  .dv-bambi-hero {
    min-height: 560px;
    margin: 22px 18px 44px;
    border-radius: 30px;
  }

  .dv-bambi-hero__inner {
    align-items: flex-end;
    padding: 28px;
  }

  .dv-bambi-hero__overlay,
  .dv-bambi-hero--tint-soft .dv-bambi-hero__overlay,
  .dv-bambi-hero--tint-strong .dv-bambi-hero__overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.44) 42%, rgba(255,255,255,.92) 100%);
  }

  .dv-bambi-hero__panel {
    width: 100%;
    border-radius: 28px;
  }

  .dv-bambi-hero__caption {
    display: none;
  }
}

@media (max-width: 640px) {
  .dv-bambi-hero {
    min-height: 520px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 24px;
  }

  .dv-bambi-hero__inner {
    padding: 18px;
  }

  .dv-bambi-hero__panel {
    padding: 24px;
    border-radius: 22px;
  }

  .dv-bambi-hero__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .dv-bambi-hero__actions {
    flex-direction: column;
  }

  .dv-bambi-hero__button {
    width: 100%;
  }
}
