/* Fullscreen container */
.wpd-hero {
  position: relative;
  width: 100vw;
  height: 92vh;
  object-fit: cover;
  /*min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;*/
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}


/* Background media area */
.wpd-hero__media { position: absolute; inset: 0; z-index: 0; }

/* Overlay */
.wpd-hero__overlay { position: absolute; inset: 0; background: var(--wpd-overlay, rgba(0,0,0,.35)); pointer-events: none; }

/* Media cover */
.wpd-hero__video,.wpd-hero__image,.wpd-hero__slide,.wpd-hero__fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Desktop/Mobile video */
.wpd-hero__video--desktop{display:block}.wpd-hero__video--mobile{display:none}
@media (max-width:767px){.wpd-hero__video--desktop{display:none}.wpd-hero__video--mobile{display:block}}

/* Slider fade */
.wpd-hero__slide{opacity:0;transition:opacity .8s ease}.wpd-hero__slide.is-active{opacity:1}

/* Content */
.wpd-hero__inner{
  position:relative;z-index:1;display:flex;width:100%;
  min-height:100vh;min-height:100dvh;min-height:100svh;
  padding:clamp(16px,4vw,48px);box-sizing:border-box
}
.wpd-hero__content{margin-inline:auto;max-width:min(90ch,92vw);text-align:center}
.wpd-align-left{margin-right:auto;margin-left:0;text-align:left}.wpd-align-right{margin-left:auto;margin-right:0;text-align:right}.wpd-align-center{margin-inline:auto;text-align:center}
.wpd-hero__title{font-size:clamp(28px,6vw,60px);line-height:1.05;color:#fff;margin:0 0 .3em;font-weight:800}
.wpd-hero__subtitle{font-size:clamp(16px,2.6vw,24px);color:rgba(255,255,255,.92);margin:0 0 1em}
.wpd-hero__btn{display:inline-block;padding:.9em 1.4em;border-radius:999px;background:#ff3a6e;color:#fff;font-weight:700;text-decoration:none;transition:transform .15s ease,opacity .15s ease}.wpd-hero__btn:hover{transform:translateY(-1px);opacity:.95}

/* Zoom */
.wpd-hero--zoom-in .wpd-hero__image,.wpd-hero--zoom-in .wpd-hero__slide.is-active,.wpd-hero--zoom-in .wpd-hero__video{animation:wpdZoomIn var(--wpd-zoom-dur,8s) ease forwards}
.wpd-hero--zoom-out .wpd-hero__image,.wpd-hero--zoom-out .wpd-hero__slide.is-active,.wpd-hero--zoom-out .wpd-hero__video{animation:wpdZoomOut var(--wpd-zoom-dur,8s) ease forwards}
@keyframes wpdZoomIn{from{transform:scale(1)}to{transform:scale(1.06)}}@keyframes wpdZoomOut{from{transform:scale(1.06)}to{transform:scale(1)}}

/* Full-bleed when inside content column */
.entry-content .wpd-hero,.post-content .wpd-hero,.page-content .wpd-hero{position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;width:100vw;max-width:100vw}

/* Optional safeguard */
html, body { overflow-x: hidden; }

/* Admin preview box */
.is-admin-preview.wpd-hero{border:1px solid #dcdcdc;min-height:60vh}
