/* Hele header-stack (desktop + mobiel) blijft bovenaan tijdens scrollen */
#siteHeaderMount,
.site-header-sticky-root {
  position: sticky;
  top: 0;
  z-index: 100;
}

/*
 * Logo in header: index.html zet laat in de pagina o.a. img { border-radius: 15px !important }.
 * Op het mobiele logo (~22px hoog) eet dat bijna de hele afbeelding op (rondingen groter dan de hoogte).
 */
img.header__heading-logo {
  border-radius: 0 !important;
}

/* Flex-middenkolom zonder min-width:0 krimpt niet mee → logo wordt aan de zijkanten afgesneden op smalle schermen. */
@media screen and (max-width: 1024px) {
  .header-mobile__item--logo {
    min-width: 0;
  }

  .header-mobile--icon .header__heading-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: 100%;
  }

  .header-mobile--icon .header__heading-logo {
    width: auto !important;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}
