.teachers {
    width: 100%;
    padding: 48px 0;
}

.teachers__container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.teachers__title {
    margin: 0 0 30px;
    color: #202027;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.teachers__slider {
    width: 100%;
    overflow: hidden;
}

.teachers__wrapper {
    align-items: stretch;
}

.teachers__slide {
    height: auto;
}

.teachers__card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.teachers__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.18 / 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f2f2f2;
}

.teachers__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.teachers__content {
    padding-top: 14px;
}

.teachers__name {
    margin: 0;
    color: #202027;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

.teachers__position {
    margin: 3px 0 0;
    color: #85858d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.teachers__pagination {
    position: static;
    display: none;
    margin-top: 24px;
}

.teachers__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
    background-color: #d4d4d8;
    opacity: 1;
}

.teachers__pagination .swiper-pagination-bullet-active {
    background-color: #202027;
}

@media (max-width: 1199px) {
    .teachers {
        padding: 40px 0;
    }

    .teachers__container {
        max-width: 960px;
    }

    .teachers__title {
        margin-bottom: 24px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .teachers {
        padding: 32px 0;
    }

    .teachers__container {
        padding: 0 16px;
    }

    .teachers__title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .teachers__image-wrapper {
        aspect-ratio: 1.15 / 1;
    }

    .teachers__content {
        padding-top: 12px;
    }

    .teachers__pagination {
        display: block;
    }
}

@media (max-width: 479px) {
    .teachers__container {
        padding: 0 12px;
    }

    .teachers__title {
        font-size: 18px;
    }
}

.teachers__nav {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3.2rem;
}

.teachers__arrow {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity .2s;
}

.teachers__arrow:hover {
    opacity: .8;
}

.teachers__arrow.swiper-button-disabled {
    opacity: .4;
    pointer-events: none;
}

.teachers-main-page {
    padding: 0;
    margin-bottom: 40px;
}