.testimonialLogoCarousel {
    width: 100%;
    padding: 34px 0;
    background-color: var(--tlc-bg, #69b4f6);
}

.testimonialLogoCarousel--top-none {
    margin-top: 0;
}

.testimonialLogoCarousel--top-small {
    margin-top: 15px;
}

.testimonialLogoCarousel--top-medium {
    margin-top: 30px;
}

.testimonialLogoCarousel--top-large {
    margin-top: 45px;
}

.testimonialLogoCarousel--top-xlarge {
    margin-top: 75px;
}

.testimonialLogoCarousel--bottom-none {
    margin-bottom: 0;
}

.testimonialLogoCarousel--bottom-small {
    margin-bottom: 15px;
}

.testimonialLogoCarousel--bottom-medium {
    margin-bottom: 30px;
}

.testimonialLogoCarousel--bottom-large {
    margin-bottom: 45px;
}

.testimonialLogoCarousel--bottom-xlarge {
    margin-bottom: 75px;
}

.testimonialLogoCarousel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
    background-color: var(--tlc-header-bg, transparent);
}

.testimonialLogoCarousel__top--has-bg {
    border-radius: 12px;
    padding: 18px 24px;
}

.testimonialLogoCarousel__top--button-only {
    justify-content: flex-end;
}

.testimonialLogoCarousel__top--heading-only {
    justify-content: flex-start;
}

.testimonialLogoCarousel__heading {
    margin: 0;
    line-height: 1.15;
    font-size: 48px;
    font-weight: 700;
    font-family: "Pastiche Grotesque", "Open Sans", sans-serif;
}

.testimonialLogoCarousel__topButton {
    flex: 0 0 auto;
    min-height: 46px;
    border-radius: 999px;
    border: 1.5px solid var(--tlc-top-btn-border, currentColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--tlc-top-btn-text, inherit);
    background-color: var(--tlc-top-btn-bg, transparent);
    font-family: "Pastiche Grotesque", "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    padding: 8px 26px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.testimonialLogoCarousel__topButton:hover {
    filter: brightness(0.98);
}

.testimonialLogoCarousel__topButton span {
    position: relative;
    display: inline-block;
    transition: transform 0.5s ease;
}

.testimonialLogoCarousel__topButton span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    width: 19px;
    height: 14px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='19' height='14' viewBox='0 0 19 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5391 0.0859375L10.4609 1.16406L15.5469 6.25H0.5V7.75H15.5469L10.4609 12.8359L11.5391 13.9141L17.9141 7.53906L18.4297 7L17.9141 6.46094L11.5391 0.0859375Z' fill='black'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='19' height='14' viewBox='0 0 19 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5391 0.0859375L10.4609 1.16406L15.5469 6.25H0.5V7.75H15.5469L10.4609 12.8359L11.5391 13.9141L17.9141 7.53906L18.4297 7L17.9141 6.46094L11.5391 0.0859375Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media screen and (min-width: 768px) {
    .testimonialLogoCarousel__topButton:hover span {
        transform: translateX(-17px);
    }

    .testimonialLogoCarousel__topButton:hover span::after {
        opacity: 1;
        transform: translateY(-50%) translateX(17px);
    }
}

.testimonialLogoCarousel__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 224px;
    align-items: center;
    min-height: 330px;
}

.testimonialLogoCarousel__content {
    min-width: 0;
}

.testimonialLogoCarousel__inner .swiper-wrapper {
    transition-timing-function: ease-in-out;
}

.testimonialLogoCarousel__quote,
.testimonialLogoCarousel__author {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    line-height: 1.35;
}

.testimonialLogoCarousel__quote {
    margin-bottom: 24px;
}

.testimonialLogoCarousel__author {
    line-height: 1.25;
    font-family: "Pastiche Grotesque", "Open Sans", sans-serif;
}

.testimonialLogoCarousel__logoWrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonialLogoCarousel__logo {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.testimonialLogoCarousel--logo-size-small .testimonialLogoCarousel__logo {
    max-width: 250px;
}

.testimonialLogoCarousel--logo-size-default .testimonialLogoCarousel__logo {
    max-width: 300px;
}

.testimonialLogoCarousel--logo-size-large .testimonialLogoCarousel__logo {
    max-width: 360px;
}

.testimonialLogoCarousel--text-black .testimonialLogoCarousel__top,
.testimonialLogoCarousel--text-black .testimonialLogoCarousel__heading,
.testimonialLogoCarousel--text-black .testimonialLogoCarousel__quote,
.testimonialLogoCarousel--text-black .testimonialLogoCarousel__author {
    color: #000000;
}

.testimonialLogoCarousel--text-white .testimonialLogoCarousel__top,
.testimonialLogoCarousel--text-white .testimonialLogoCarousel__heading,
.testimonialLogoCarousel--text-white .testimonialLogoCarousel__quote,
.testimonialLogoCarousel--text-white .testimonialLogoCarousel__author {
    color: #ffffff;
}

.testimonialLogoCarousel--quote-size-xsmall .testimonialLogoCarousel__quote {
    font-size: 18px;
}

.testimonialLogoCarousel--quote-size-small .testimonialLogoCarousel__quote {
    font-size: 24px;
}

.testimonialLogoCarousel--quote-size-default .testimonialLogoCarousel__quote {
    font-size: 38px;
}

.testimonialLogoCarousel--quote-size-large .testimonialLogoCarousel__quote {
    font-size: 46px;
}

.testimonialLogoCarousel--quote-size-xlarge .testimonialLogoCarousel__quote {
    font-size: 54px;
}

.testimonialLogoCarousel--author-size-small .testimonialLogoCarousel__author {
    font-size: 20px;
}

.testimonialLogoCarousel--author-size-default .testimonialLogoCarousel__author {
    font-size: 34px;
}

.testimonialLogoCarousel--author-size-large .testimonialLogoCarousel__author {
    font-size: 40px;
}

.testimonialLogoCarousel--author-size-xlarge .testimonialLogoCarousel__author {
    font-size: 46px;
}

.testimonialLogoCarousel--quote-weight-light .testimonialLogoCarousel__quote {
    font-weight: 300;
}

.testimonialLogoCarousel--quote-weight-normal .testimonialLogoCarousel__quote {
    font-weight: 400;
}

.testimonialLogoCarousel--quote-weight-medium .testimonialLogoCarousel__quote {
    font-weight: 500;
}

.testimonialLogoCarousel--quote-weight-semibold .testimonialLogoCarousel__quote {
    font-weight: 600;
}

.testimonialLogoCarousel--quote-weight-bold .testimonialLogoCarousel__quote {
    font-weight: 700;
}

.testimonialLogoCarousel--author-weight-normal .testimonialLogoCarousel__author {
    font-weight: 400;
}

.testimonialLogoCarousel--author-weight-medium .testimonialLogoCarousel__author {
    font-weight: 500;
}

.testimonialLogoCarousel--author-weight-semibold .testimonialLogoCarousel__author {
    font-weight: 600;
}

.testimonialLogoCarousel--author-weight-bold .testimonialLogoCarousel__author {
    font-weight: 700;
}

.testimonialLogoCarousel__pagination {
    margin-top: 20px;
}

@media (max-width: 1299px) {
    .testimonialLogoCarousel__heading {
        font-size: 40px;
    }

    .testimonialLogoCarousel__topButton {
        font-size: 18px;
    }

    .testimonialLogoCarousel__panel {
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: 160px;
    }

    .testimonialLogoCarousel--quote-size-xsmall .testimonialLogoCarousel__quote {
        font-size: 16px;
    }

    .testimonialLogoCarousel--quote-size-small .testimonialLogoCarousel__quote {
        font-size: 20px;
    }

    .testimonialLogoCarousel--quote-size-default .testimonialLogoCarousel__quote {
        font-size: 30px;
    }

    .testimonialLogoCarousel--quote-size-large .testimonialLogoCarousel__quote {
        font-size: 36px;
    }

    .testimonialLogoCarousel--quote-size-xlarge .testimonialLogoCarousel__quote {
        font-size: 42px;
    }

    .testimonialLogoCarousel--author-size-small .testimonialLogoCarousel__author {
        font-size: 18px;
    }

    .testimonialLogoCarousel--author-size-default .testimonialLogoCarousel__author {
        font-size: 24px;
    }

    .testimonialLogoCarousel--author-size-large .testimonialLogoCarousel__author {
        font-size: 30px;
    }

    .testimonialLogoCarousel--author-size-xlarge .testimonialLogoCarousel__author {
        font-size: 34px;
    }
}

@media (max-width: 1023px) {
    .testimonialLogoCarousel {
        padding: 28px 0;
    }

    .testimonialLogoCarousel__top {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .testimonialLogoCarousel__top--has-bg {
        padding: 16px 18px;
    }

    .testimonialLogoCarousel__top--button-only,
    .testimonialLogoCarousel__top--heading-only {
        justify-content: flex-start;
    }

    .testimonialLogoCarousel__heading {
        font-size: 32px;
    }

    .testimonialLogoCarousel__topButton {
        min-height: 42px;
        font-size: 17px;
        padding: 8px 22px;
    }

    .testimonialLogoCarousel__panel {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
    }

    .testimonialLogoCarousel__logoWrap {
        justify-content: flex-start;
    }

    .testimonialLogoCarousel--logo-size-small .testimonialLogoCarousel__logo {
        max-width: 220px;
    }

    .testimonialLogoCarousel--logo-size-default .testimonialLogoCarousel__logo {
        max-width: 260px;
    }

    .testimonialLogoCarousel--logo-size-large .testimonialLogoCarousel__logo {
        max-width: 300px;
    }

    .testimonialLogoCarousel__quote {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .testimonialLogoCarousel {
        padding: 24px 0;
    }

    .testimonialLogoCarousel__top--has-bg {
        padding: 14px 15px;
    }

    .testimonialLogoCarousel__heading {
        font-size: 28px;
    }

    .testimonialLogoCarousel__topButton {
        font-size: 16px;
    }

    .testimonialLogoCarousel--top-small {
        margin-top: 10px;
    }

    .testimonialLogoCarousel--top-medium {
        margin-top: 20px;
    }

    .testimonialLogoCarousel--top-large {
        margin-top: 25px;
    }

    .testimonialLogoCarousel--top-xlarge {
        margin-top: 40px;
    }

    .testimonialLogoCarousel--bottom-small {
        margin-bottom: 10px;
    }

    .testimonialLogoCarousel--bottom-medium {
        margin-bottom: 20px;
    }

    .testimonialLogoCarousel--bottom-large {
        margin-bottom: 25px;
    }

    .testimonialLogoCarousel--bottom-xlarge {
        margin-bottom: 40px;
    }

    .testimonialLogoCarousel--quote-size-xsmall .testimonialLogoCarousel__quote {
        font-size: 15px;
    }

    .testimonialLogoCarousel--quote-size-small .testimonialLogoCarousel__quote {
        font-size: 18px;
    }

    .testimonialLogoCarousel--quote-size-default .testimonialLogoCarousel__quote {
        font-size: 22px;
    }

    .testimonialLogoCarousel--quote-size-large .testimonialLogoCarousel__quote {
        font-size: 26px;
    }

    .testimonialLogoCarousel--quote-size-xlarge .testimonialLogoCarousel__quote {
        font-size: 30px;
    }

    .testimonialLogoCarousel--author-size-small .testimonialLogoCarousel__author {
        font-size: 16px;
    }

    .testimonialLogoCarousel--author-size-default .testimonialLogoCarousel__author {
        font-size: 18px;
    }

    .testimonialLogoCarousel--author-size-large .testimonialLogoCarousel__author {
        font-size: 21px;
    }

    .testimonialLogoCarousel--author-size-xlarge .testimonialLogoCarousel__author {
        font-size: 24px;
    }

    .testimonialLogoCarousel__pagination {
        margin-top: 14px;
    }
}
