/* ── BRAND / COLLECTION VIDEO SUPPORT ── */

/* Hero video — desktop only */
.brand-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback image — shown on mobile when hero has video */
.brand-hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  display: none;
}

/* Featured video — desktop: portrait 3:4 */
.brand-featured-video-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.brand-featured-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── MOBILE (max 900px) ── */
@media(max-width: 900px) {

  /* Hero: hide video, show fallback image */
  .brand-hero-video  { display: none; }
  .brand-hero-bg-img { display: block; }

  /* Featured video: Instagram 9:16 vertical format */
  /* Full width, natural vertical ratio, capped so it doesn't dominate */
  .brand-featured-video-wrap {
    aspect-ratio: 9/16;
    width: 100%;
    max-height: 70vh;
    margin: 0 auto 2rem;
  }
}

/* ── SMALL PHONES (max 540px) ── */
@media(max-width: 540px) {
  .brand-featured-video-wrap {
    max-height: 60vh;
  }
}
