/* ---------- Partners ---------- */

.footer-partners {
    width: 100%;
    margin-top: 40px;
    padding: 35px 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
}

.footer-partners h3 {
    color: var(--club-yellow);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.partner-logos img {
    height: 90px;
    width: auto;
    max-width: 260px;
    object-fit: contain;

    background: white;
    border-radius: 10px;
    padding: 12px;

    transition: transform .3s ease,
                box-shadow .3s ease;
}

.partner-logos img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255,255,255,.2);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {

    .partner-logos {
        gap: 20px;
    }

    .partner-logos img {
        height: 65px;
        max-width: 180px;
    }

}