/* =========================================================
   WannaTel — Targeted fixes (loaded after style.css)
   v1 — Glasvezel image viewport + mobile no-fade
   ========================================================= */

/* Zorg dat de hero-afbeelding altijd binnen het viewport past */
.page-hero-photo-wrap img.hero-photo-full {
  max-height: min(520px, calc(100vh - 200px));
}

/* Mobiel: no-fade afbeeldingen tonen op volledige hoogte (geen bijsnijden) */
@media (max-width: 900px) {
  .page-hero-photo-wrap.no-fade {
    max-height: none !important;
    overflow: visible !important;
  }
  .page-hero-photo-wrap.no-fade img {
    height: auto !important;
    object-fit: contain !important;
    max-height: none !important;
  }
}
