.featured-carousel {
    width: 100%;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    
    &.white{
        background-color: #fff;
    }
    
    &.off-white{
        background-color: var(--Colors-Base-off-white);
    }

    /* LOGOS / NAVIGATION */
    .fc-logos {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .fc-logo {
        flex: 1;
        text-align: center;
        cursor: pointer;
        transition: opacity 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;

        &:hover {
            opacity: 0.7;
        }

        &.active {
            img {
                filter: grayscale(0%);
                opacity: 1;
            }

            .fc-logo-progress {
                background: linear-gradient(90deg, var(--Colors-Blue-200, #7ABFFF) -20.91%, var(--Colors-Seafoam-200, #6DF0DE) 100%);
            }
        }

        img {
            display: block;
            max-height: 54px;
            width: auto;
            filter: grayscale(100%);
            opacity: 0.2;
            transition: all 0.3s ease;
        }
    }

    .fc-logo-image {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 40px;
        width: auto;
        max-height: 65px;
    }

    .fc-logo-progress {
        margin-top: 16px;
        width: 100%;
        height: 8px;
        background: var(--colors-gray-light-mode-300, #D5D7DA);
        overflow: hidden;
    }

    .fc-logo-progress-fill {
        width: 0%;
        height: 100%;
        background: var(--Colors-Base-black, #000818);
    }

    /* SLIDES CONTAINER */
    .fc-slides {
        position: relative;
        width: 100%;
        min-height: 400px;
        height: auto;
    }

    /* EACH SLIDE */
    .fc-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .6s ease;
        pointer-events: none;

        &.active {
            opacity: 1;
            pointer-events: auto;
            position: relative;
        }
    }

    .fc-slide-inner {
        display: flex;
        gap: 48px;
        align-items: center;
    }

    .fc-slide-image {
        img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            max-width: 550px;
        }
    }

    .fc-slide-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: self-start;
        width: 100%;
        gap: 40px;

        p {
            font-size: 18px;
            line-height: 1.6;
            margin: 0 0 24px 0;
            color: #333;
        }

        .brxe-button {
            text-align: left;
            display: inline-block;
        }

        h2 {
            font-size: 32px !important;
        }
        
        &.testimonial{
            gap: 24px;
            
            .fc-testimonial-svg{
                svg{
                    margin-bottom: -8px;
                }
            }
            
            .fc-testimonial-quote{
                font-family: "Instrument Sans";
                font-size: 19px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                color: #000818;
            }
            
            .fc-testimonial-author{
                .fc-testimonial-author-name{
                    color: var(--colors-text-main-light-background, #000818);
                    font-family: "Geist Mono";
                    font-size: 15px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%; /* 22.5px */
                    letter-spacing: 1.5px;
                    text-transform: uppercase;
                    color: #000818;
                }
                .fc-testimonial-author-role{
                    color: var(--Colors-Text-Body-Copy, #414651);
                    font-family: "Instrument Sans";
                    font-size: 17px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: var(--Line-height-text-md, 24px); /* 141.176% */
                }
            }
            
            .brxe-button{
                margin-top: 16px;
            }
        }
    }

    .fc-slide-content-logo {
        height: 75px;
		width: auto;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        padding: 0;
        background: transparent !important;
        gap: 12px;

        .fc-slide-inner {
            flex-direction: column-reverse;
            gap: 32px;
        }

        .fc-slide-image {
            flex: 0 0 auto;
            width: 100%;
        }

        .fc-slide-content-logo {
            display: none;
        }

        .fc-slide-content {
            align-items: center;
            gap: 40px;

            h2 {
                text-align: center;
                font-size: 25px !important;
            }
        }

        .fc-logos {
            gap: 12px;
            margin-bottom: 24px;
            position: relative;
            min-height: 60px;
            justify-content: center;
        }

        .fc-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            width: 100%;
            flex: none;

            &.active {
                opacity: 1;
                pointer-events: auto;
            }
        }

        .fc-logo-image {
            min-height: 30px;
        }

        .fc-logo img {
            max-height: 40px;
        }

        .fc-logo-progress {
            width: 100%;
        }
        
        .fc-slide-content.testimonial{
            align-items: flex-start;
        }
    }
}