/* Minimal CLS Optimization - No Design Changes */

/* Sport images - aspect ratio only */
.sport-image {
  aspect-ratio: 242 / 183;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Minimal banner fix */
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Video iframe aspect ratio */
iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* Carousel images */
.carousel-shell .swiper-slide img {
  aspect-ratio: 366 / 240;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* Gallery thumbnails */
.epyt-gallery-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

/* Prevent font loading CLS */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
}

/* Loader overlay - no layout impact */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
}

/* Ensure images don't cause layout shifts */
.bs3-grid-builder-child-item img {
  width: 100%;
  height: auto;
  display: block;
}