.supporters-section {
    background-color: var(--al-green);
    color: var(--al-white);
    padding: 80px 0;
}

.supporters-section h1 {
    color: var(--al-white);
    margin-bottom: 24px;
}

.supporters-section .subtitle {
    max-width: 500px;
    margin-bottom: 64px;
    opacity: 0.9;
}

.supporters-row {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.supporters-row:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.supporters-label {
    width: 200px;
    flex-shrink: 0;
}

.supporters-label h3 {
    color: var(--al-white);
    margin: 0;
}

/* Carousel Styles */
.logo-carousel {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, #025d5e, transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, #025d5e, transparent);
}

.carousel-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Makes logos white */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
        /* Half of the content plus half the gap */
    }
}

@media (max-width: 991.98px) {

    .supporters-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .supporters-label {
        width: 100%;
    }

}