.sponsor-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
}

.sponsor-card {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem;
    background: #0b1b3a;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.22s ease;
    text-decoration: none;
    border: none;
}

@media (max-width: 480px) {
    .sponsor-row {
        flex-direction: column;
        flex-wrap: nowrap;
        border-radius: 10px;
        max-width: 100%;
    }

    .sponsor-card {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 3rem 1.5rem;
    }

    .logo-wrap {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        opacity: 0.7;
    }

    .sponsor-name {
        font-size: 12px;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.5);
        text-align: left;
    }
}

.sponsor-card:hover {
    /*background: rgba(65, 105, 200, 0.6);*/
    background: var(--c-bg-2);
    box-shadow: none;
}

.sponsor-card:hover .logo-wrap {
    opacity: 1;
    transform: translateY(-2px);
}

.sponsor-card:hover .sponsor-name {
    color: rgba(255, 255, 255, 0.65);
}

.logo-wrap {
    width: 104px;
    height: 104px;
    opacity: 0.7;
    transition: opacity 0.24s ease, transform 0.24s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrap svg,
.logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sponsor-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    transition: color 0.22s ease;
}

.sponsor-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.sponsor-footer-line {
    height: 1px;
    width: 44px;
    background: rgba(255, 255, 255, 0.07);
}

.sponsor-footer-text {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.16);
}

.sponsors-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

@media(width <=576px) {
    .sponsor-name {
        font-size: 11px;
    }

    .logo-wrap {
        width: 52px;
        height: 52px;
    }
}
