/* ==========================================================================
   Smoelenboek
   ========================================================================== */

.smoelenboek {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 50px;
}

.smoelenboek__item {
    display: flex;
    flex-direction: column;
}

.smoelenboek__foto {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 100px 0 100px 0;
    margin-bottom: 16px;
}

.smoelenboek__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.smoelenboek__naam {
    font-size: 1.15rem;
    margin: 0 0 4px;
}

.smoelenboek__functie {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0 0 10px;
}

.smoelenboek__beschrijving {
    font-size: 0.95rem;
    line-height: 1.5;
}

.smoelenboek__beschrijving p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .smoelenboek {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .smoelenboek {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .smoelenboek {
        grid-template-columns: 1fr;
    }
}
