.dbl-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 384px;
  background-color: var(--hero-bg, #BAD2E9);
  overflow: hidden;
}
.dbl-hero__content {
  flex: 0 0 57.7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--dbl-spacing-md);
  padding: var(--dbl-spacing-2xl) 0;
}
.dbl-hero__eyebrow {
  margin: 0 0 40px;
  color: var(--hero-eyebrow, var(--dbl-color-slate-600));
  font-size: var(--dbl-hero-eyebrow-size);
  font-weight: var(--dbl-hero-eyebrow-weight);
  font-family: var(--dbl-font-family-base);
  line-height: var(--dbl-hero-eyebrow-lh);
  text-transform: uppercase;
}
.dbl-hero__heading {
  margin: 0;
  color: var(--hero-body, #374151);
  font-size: var(--dbl-hero-h1-size);
  font-weight: var(--dbl-hero-h1-weight);
  font-family: var(--dbl-font-family-heading);
  line-height: var(--dbl-hero-h1-lh);
}
.dbl-hero__subtext {
  margin: 0;
  color: var(--hero-body, #374151);
  font-size: var(--dbl-hero-lead-size);
  font-weight: var(--dbl-hero-lead-weight);
  font-family: var(--dbl-font-family-base);
  line-height: var(--dbl-hero-lead-lh);
  max-width: 640px;
}
.dbl-hero__wave {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.dbl-hero__wave svg {
  display: block;
  height: 100%;
  width: auto;
}
.dbl-hero__inner {
  position: relative;
  z-index: 1;
}
.dbl-hero__image-panel {
  flex: 1;
  position: relative;
  background-color: var(--dbl-color-slate-300);
}
.dbl-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dbl-hero__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dbl-color-slate-500);
  font-size: 13px;
}
@media (max-width: 768px) {
  .dbl-hero {
    flex-direction: column;
  }
  .dbl-hero__content {
    flex: none;
    padding: 48px 24px;
  }
  .dbl-hero__image-panel {
    min-height: 240px;
  }
}
