.slider-testimonials {
    position: relative;
    overflow: visible;
    width: 100%;
}

.testimonial-slides .splide__track {
    overflow: hidden;
}

.testimonial-slides .splide__list {
    display: flex;
    align-items: stretch;
}

.testimonial-slides .splide__slide {
    height: auto;
}

/* Card */
.testimonial-card {
    background: #162d36;
    border: 1px solid #2f739c;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
}

/* Body: logo + content, grows to fill card */
.testimonial-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Logo */
.testimonial-logo img {
    max-height: 40px;
    max-width: 180px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Quote + avatar — quote stays top, attribution pushed to bottom */
.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-actions {
    padding-top: 32px;
    flex-shrink: 0;
}

.testimonial-content blockquote {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.testimonial-content blockquote p {
    margin: 0;
}

/* Attribution */
.testimonial-attribution {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
}

.testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.testimonial-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonial-details p {
    margin: 0 !important;
    padding: 0 !important;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2px;
    color: #7af0f5;
}

.testimonial-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

/* CTA link */
.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #7af0f5;
}

.testimonial-link span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.testimonial-link:hover span {
    transform: translateX(3px);
}

/* Splide nav */
.testimonial-slides {
    padding-bottom: 70px;
}

.testimonial-slides .splide__arrows {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    align-items: center;
    z-index: 20;
}

.testimonial-slides .splide__arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: transparent !important;
    background-image: url("slider-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain !important;
    border: none !important;
    border-radius: 50% !important;
    outline: none !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 1 !important;
}

.testimonial-slides .splide__arrow:hover {
    background-color: transparent !important;
    background-image: url("slider-arrow-hover.svg") !important;
    opacity: 1 !important;
}

.testimonial-slides .splide__arrow svg {
    display: none;
}

.testimonial-slides .splide__arrow:disabled {
    opacity: 0.4;
}

.testimonial-slides .splide__arrow--prev {
    transform: scaleX(-1);
}

/* Pagination dots */
.testimonial-slides .splide__pagination {
    display: none;
}

@media (max-width: 1024px) {
    .testimonial-slides .splide__arrow {
        width: 40px;
        height: 40px;
    }
}
