/* ── Sponsors section in the footer ─────────────────────────── */

.footer__sponsors {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.footer__sponsors-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 24px;
    color: var(--white);
}

.footer__sponsors-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.footer__sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    color: var(--footer-link-color);
}

.footer__sponsor:hover {
    opacity: 0.75;
    color: var(--footer-link-color-hover);
}

/* Image: fixed height so logos sit on the same baseline;
   max-width prevents very wide logos from dominating. */
.footer__sponsor-img {
    display: block;
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

@media (min-width: 1000px) {
    .footer__sponsor-img {
        height: 100px;
        max-width: 200px;
    }
}

.footer__sponsor-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
}

@media (min-width: 1000px) {
    .footer__sponsor-name {
        font-size: 15px;
    }
}
