/* Font-display: swap — prevents invisible text during font loading */
@font-face {
    font-family: lagom-medium-icons;
    font-display: swap;
}
@font-face {
    font-family: lagom-small-icons;
    font-display: swap;
}

/* Prevent CLS — reserve space for images before they load */
.logo-img {
    aspect-ratio: 1000 / 345;
}
img.lazyload {
    aspect-ratio: auto;
}

