/* Big Round Wheel cumulative layout shift safeguards */
img[width][height] {
  height: auto;
}
iframe, video {
  max-width: 100%;
}
/* Third-party video players already sit inside 16:9 ratio wrappers.
   These rules keep the injected player from changing the reserved box. */
[class^="videoplayerapp"],
[class*=" videoplayerapp"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Database-driven blog images do not expose natural dimensions in PHP.
   Reserve their final boxes before the image request completes. */
.blog-card-feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-detail-feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 445;
  object-fit: cover;
}

/* The Showman's Vault image files are populated separately from this archive.
   Reserve stable card space even when those files arrive later. */
.showmans-vault-page .pricing-header img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.showmans-vault-page .page-pricing .col-lg-5 > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
