/* Sponsor Carousel */
.sc-carousel {
    --sc-bg: #17191c;
    --sc-accent: #f2e500;
    --sc-logo-width: 150px;
    --sc-gap: 62px;

    width: 100%;
    box-sizing: border-box;
    background: var(--sc-bg);
    color: #fff;
    display: flex;
    align-items: center;
    min-height: 112px;
    padding: 28px 4.8%;
    overflow: hidden;
}

.sc-heading {
    flex: 0 0 auto;
    width: 145px;
    margin-right: 32px;
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    opacity: .96;
}

.sc-track-wrap {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sc-viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.sc-track {
    display: flex;
    align-items: center;
    gap: var(--sc-gap);
    transition: transform .45s ease;
    will-change: transform;
}

.sc-slide {
    flex: 0 0 var(--sc-logo-width);
    width: var(--sc-logo-width);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-logo-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
}

.sc-logo {
    display: block;
    width: 100%;
    max-width: var(--sc-logo-width);
    height: 58px;
    object-fit: contain;
    opacity: .25;
    filter: grayscale(100%);
    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}

.sc-logo-link:hover .sc-logo,
.sc-logo-link:focus-visible .sc-logo,
.sc-slide:hover .sc-logo {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.03);
}

.sc-arrow {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.25);
    font-size: 31px;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease, background .2s ease;
}

.sc-arrow:hover {
    color: #fff;
}

.sc-next {
    background: rgba(255,255,255,.04);
}

.sc-next:hover {
    background: rgba(255,255,255,.08);
}

.sc-prev {
    background: var(--sc-accent);
    color: #fff;
}

.sc-prev:hover {
    background: #fff000;
    color: #fff;
}

.sc-arrow:disabled {
    opacity: .35;
    cursor: default;
}

@media (max-width: 1100px) {
    .sc-carousel {
        --sc-logo-width: 125px;
        --sc-gap: 38px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .sc-heading {
        width: 115px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .sc-carousel {
        --sc-logo-width: 120px;
        --sc-gap: 28px;
        min-height: 96px;
        padding: 20px 16px;
    }

    .sc-heading {
        display: none;
    }

    .sc-track-wrap {
        gap: 7px;
    }

    .sc-arrow {
        flex-basis: 28px;
        width: 28px;
        height: 32px;
    }

    .sc-logo {
        height: 48px;
    }
}
