.experts-slider {
    position: relative;
}

.experts-slider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, #0a376d, transparent);
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 1300px) {
    .experts-slider::after {
        width: 60px;
    }
}

@media (max-width: 1250px) {
    .experts-slider::after {
        display: none;
    }
}

.experts-slides {
    overflow: visible;
}

.experts-slides .slick-track {
    display: flex;
    align-items: stretch;
}

.experts-slides .slick-slide {
    height: auto;
    display: flex;
}

.expert-card {
    padding: 60px 80px;
    background: #0052a3;
    border-radius: 4px;
    max-width: 680px;
    width: 680px;
    color: #fff;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expert-content blockquote {
    margin: 0 0 40px 0;
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 136%;
}

.expert-attribution {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 30px 0;
    gap: 20px;
}

.attribution-photo img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.attribution-name {
    margin: 0;
    font-size: 20px;
    line-height: 1;
}

.attribution-role {
    font-weight: 500;
    margin: 0;
}

.expert-content .text-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 6px 0 0;
    text-decoration: none;
    border-radius: 0;
    border-top: 1px solid white;
    color: #fff;
    position: relative;
}
.expert-content .text-link span {
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.expert-content .text-link:hover span {
    transform: translateX(4px);
}

/* Navigation Styles */
.experts-slider-nav {
    position: absolute;
    top: 50%;
    max-width: 680px;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 20;
}

.experts-slider-nav .slick-arrow {
    width: 50px;
    height: 50px;
    padding: 0;
    background-color: white;
    border: none;
    border-radius: 50%;
    background-image: url("award-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.experts-slider-nav .slick-arrow.slick-disabled {
    opacity: 0.5;
}

.experts-slider-nav .prev {
    position: absolute;
    left: -25px;
    transform: rotate(180deg);
}

.experts-slider-nav .next {
    position: absolute;
    right: -25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .experts-slider {
        padding: 40px 0;
        min-height: 400px;
    }

    .expert-card {
        padding: 40px 30px;
        max-width: 100%;
    }

    .expert-content blockquote {
        margin-bottom: 30px;
    }

    .expert-attribution {
        margin-bottom: 25px;
        gap: 15px;
    }

    .attribution-photo {
        width: 50px;
        height: 50px;
    }

    .experts-slider-nav {
        left: 10px;
        right: 10px;
    }

    .experts-slider-nav .slick-arrow {
        width: 40px;
        height: 40px;
        background-size: 16px;
    }
}
