
/* section-partners */
.section-partners {
    --offset-block: var(--offset-secondary);
    --width-card: 15.5rem;
}
.section-partners__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--offset-block);
}

@media screen and (max-width: 575px) {
    .section-partners {
        --offset-block: var(--offset-extrasmall);
        --width-card: calc((100% - var(--offset-block)) / 2);
    }
}
