.individum-body {
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
    background: #6f86a3;
    color: #fff;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.individum-body > .globalnav {
    width: min(96vw, 1180px);
    color: #fff;
    margin-bottom: 0;
}

.individum-pagina {
    height: calc(100vh - 42px);
    min-height: 420px;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

.individum-pagina h1 {
    margin: 6px 0 0;
    text-align: center;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.1;
    font-weight: 700;
}

.individum-veld {
    position: relative;
    min-height: 0;
    overflow: hidden;
    isolation: isolate;
}

.individum-vriend {
    position: absolute;
    display: block;
    width: clamp(172px, 27vw, 370px);
    max-height: 45vh;
    line-height: 0;
    text-decoration: none;
    will-change: transform, left, top;
    transform-origin: center center;
}

.individum-vriend img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: contain;
    filter: drop-shadow(4px 5px 4px rgba(0, 0, 0, 0.34));
    transition: transform 160ms ease, filter 160ms ease;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
}

.individum-vriend:hover img,
.individum-vriend:focus-visible img {
    transform: scale(1.055);
    filter: drop-shadow(6px 8px 5px rgba(0, 0, 0, 0.42));
}

.individum-vriend:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 8px;
    border-radius: 2px;
}

@media (max-width: 680px) {
    .individum-body > .globalnav {
        width: auto;
        margin: 10px 12px 0;
    }

    .individum-pagina {
        height: calc(100vh - 62px);
        min-height: 360px;
    }

    .individum-pagina h1 {
        margin-top: 4px;
    }

    .individum-vriend {
        width: clamp(128px, 38vw, 225px);
        max-height: 38vh;
    }

    .individum-vriend img {
        max-height: 38vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .individum-vriend img {
        transition: none;
    }
}
