.slider-testimony {
    overflow: hidden;
}

.slider-testimony--container {
    display: grid;
    grid-template-columns: 100%;
    gap: 32px;
    max-width: 1312px;
}

@media screen and (min-width: 992px) {
    .slider-testimony--container {
        gap: 56px;
    }
}

@media screen and (min-width: 1280px) {
    .slider-testimony--container {
        grid-template-columns: auto 200px;
    }
}

.slider-testimony--header {
    padding: 0 16px;
    text-align: center;
}

@media screen and (min-width: 1280px) {
    .slider-testimony--header {
        grid-column: 1/2;
        text-align: left;
    }
}

.slider-testimony--header h2 {
    font-weight: 200;
    color: var(--blueDark);
}

.slider-testimony--header p {
    color: var(--blueDark);
}

.slider-testimony--header h2+p {
    margin-top: 24px;
}

.slider-testimony--header h2+ul {
    margin-top: 24px;
}

.slider-testimony--header p+a {
    margin-top: 24px;
}

.slider-testimony--header ul+a {
    margin-top: 24px;
}

.slider-testimony--header p+p {
    margin-top: 16px;
}

.slider-testimony--header p+ul {
    margin-top: 16px;
}

.slider-testimony--header ul+p {
    margin-top: 16px;
}

@media screen and (min-width: 1280px) {
    .slider-testimony--slider {
        grid-column: 1/-1;
    }
}

@media screen and (min-width: 1280px) {
    .slider-testimony--slider .splide__track {
        overflow: unset;
    }
}

.slider-testimony--item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider-testimony--item p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.slider-testimony--item .author {
    position: relative;
}

.slider-testimony--item .author::before {
    content: "";
    mask: url(../../../../../../themes/appo/resources/images/icon/quote.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--greenLight);
    height: 84px;
    width: 118px;
    position: absolute;
    bottom: 0;
    left: -24px;
    z-index: -1;
}

.slider-testimony--item .author .name {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--blueDark);
}

.slider-testimony--item .author .function {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: var(--blueDark);
}

@media screen and (min-width: 1280px) {
    .slider-testimony--nav {
        grid-column: 2/3;
        grid-row: 1/2;
        justify-self: flex-end;
        padding-right: 16px;
    }
}