/* Full-bleed hero video */
.btx-hero{
  position:relative; margin:0; width:100vw; max-width:100vw;
  left:50%; transform:translateX(-50%); overflow:hidden;
}
.btx-hero-video{ width:100%; height:auto; display:block; }
.btx-hero-embed{ position:relative; width:100%; height:100vh; overflow:hidden; }
.btx-hero-embed iframe{
  position:absolute; top:50%; left:50%;
  width:100vw; height:56.25vw; min-width:177.78vh; min-height:100vh;
  transform:translate(-50%,-50%); border:0;
}

/* Shop/archive hero variant (legacy 16:9 behavior without inline CSS) */
.btx-hero--shop{
  margin:0 0 16px;
  width:100%;
  max-width:100%;
  left:auto;
  transform:none;
}
.btx-hero--shop .btx-hero-embed{
  height:auto;
  padding-top:56.25%;
}
.btx-hero--shop .btx-hero-embed iframe{
  inset:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
  transform:none;
}
/* Phones: simple 16:9 */
@media (max-width:767.98px){
  .btx-hero-embed{ height:auto; }
  .btx-hero-embed iframe{ position:static; width:100%; height:auto; aspect-ratio:16/9; transform:none; }
  .btx-hero--shop .btx-hero-embed{ padding-top:56.25%; }
  .btx-hero--shop .btx-hero-embed iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    aspect-ratio:auto;
  }
}
