/* En Baba Organizasyon - Core Web Vitals destek katmanı
   Amaç: görünür içeriği bozmadan medya ve aşağı ekran bölümlerinde layout/render maliyetini düşürmek. */
img, svg, video, canvas, iframe {
  max-width: 100%;
}
img, video {
  height: auto;
}
iframe {
  border: 0;
}
[hidden], .hidden {
  content-visibility: hidden;
}
@media (min-width: 768px) {
  main > section:nth-of-type(n+3),
  .enb-below-fold,
  .enb-gallery,
  .media-gallery,
  .video-gallery,
  .photo-gallery,
  .faq-section,
  .reviews-section,
  .enb-faq,
  [data-enb-cwv-contain] {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
