.examples {
    background-color: rgba(121, 121, 121, 0.08);
}

.examples__container {
    width: 100%;
    max-height: calc(100vh - 50px);
    min-height: 1024px;
    max-width: 1260px;
    margin: 0px auto;
    height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.examples__title {
    display: flex;
}

.examples__title-text1 {
    color: #000;
    font-family: "Evolventa", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.examples__title-text2 {
    color: #229DA4;
    font-family: "Evolventa", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Слайдер */
.examples__slider {
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Контейнер для содержимого слайда */
.examples__slide-container {
    flex: 1 1 0;
    min-height: 0;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.08);
    padding: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.examples__slide-title {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #229DA4;
    text-align: center;
    padding: 4px 16px 12px;
}

.examples__slide-content {
    width: 100%;
    min-height: 0;
    flex: 1 1 0;
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Стрелки */
.examples__arrow {
    all: unset;
    align-self: center;
    width: 46px;
    height: 46px;
    cursor: pointer;
    flex-shrink: 0;
}

.examples__arrow svg rect {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.examples__arrow svg path {
    transition: stroke 0.3s ease;
}

.examples__arrow:hover svg rect {
    fill: rgba(34, 157, 164, 0.08);
    stroke: #229DA4;
}

/* Пагинация */
.examples__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.examples__counter {
    font-family: "Evolventa", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    user-select: none;
}

@media (max-width: 767px) {
    .examples {
        background-color: white;
    }

    .examples__container {
        max-height: none;
        min-height: 0px;
        height: fit-content;
        padding: 25px 20px;
    }

    .examples__title-text1,
    .examples__title-text2 {
        font-size: 30px;
    }

    .examples__slider {
        min-height: auto;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 24px;
    }

    .examples__slide-container {
        flex: none;
        width: 100%;
        padding: 6px;
        border-radius: 20px;
    }

    .examples__slide-content {
        flex: none;
        aspect-ratio: 3 / 4;
    }

    .examples__slide-title {
        font-size: 16px;
        padding: 2px 12px 8px;
    }

    .examples__arrow {
        display: none;
    }

    .examples__pagination {
        margin-top: 20px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .examples__arrow_left.examples__arrow_mobile,
    .examples__arrow_right.examples__arrow_mobile {
        display: block;
    }
}