/* Base hero styles */
.dtlc-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.dtlc-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.dtlc-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 6vh;
  text-align: center;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}
.dtlc-hero__overlay h1 {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  font-size: clamp(48px, 10vw, 150px);
}

/* Utility: make the hero span the full viewport width even inside a fixed-width builder row */
.dtlc-hero--fullwidth {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}
