/* ========================================
   Supporters & Sponsors
   ======================================== */

.supporters-sponsors {
    width: 100%;
    padding: 0rem 0rem 1rem;
    background-color: #ffffff;
}


/* Individual section */

.supporters-sponsors__section {
    max-width: 1200px;
    margin: 0rem auto;
    padding-top: 2rem;
}

.supporters-sponsors__section + .supporters-sponsors__section {
    margin-top: 2rem;
}


/* Section title */

.supporters-sponsors__title {
    margin: 0 0 1rem;

    text-align: center;

    font-size: 1.75rem;
    font-weight: 600;
}


/* Logo grid */

.supporters-sponsors__grid {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 1.5rem;
}

/* Individual logo link */
.supporters-sponsors__logo {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 120px;

    padding: 1.5rem;

    text-decoration: none;
}


/* Logo image */

.supporters-sponsors__logo img {
    display: block;

    width: auto;
    max-width: 100%;
    height: 120px;

    object-fit: contain;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* Hover effect */

.supporters-sponsors__logo:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}


/* Mobile */

@media (max-width: 575.98px) {

    .supporters-sponsors {
        padding: 2rem 0rem;
    }

    .supporters-sponsors__grid {
        gap: 0.5rem;
    }

    .supporters-sponsors__logo {
        width: calc(50% - 0.5rem);
    }

    .supporters-sponsors__logo img {
        height: 100px;
    }

}