.doctors-home {
    background: var(--doctors-bg, rgba(252, 245, 252, 1));
    overflow: hidden;
}

.doctors-home__header {
    margin-bottom: 40px;
}

.doctors-home__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    letter-spacing: -0.01em;
    color: var(--doctors-purple-dark, #5C075E);
    margin: 0 0 16px 0;
}

.doctors-home__description {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--doctors-purple-dark, #5C075E);
    margin: 0;
    max-width: 700px;
}

.doctors-home__filters {
    margin-bottom: 40px;
}

.doctors-home__slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;

    padding-left: calc((100vw - min(1920px, 100vw)) / 2 + 160px);
}

.doctors-home__slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;

    padding-right: 110px;
}

.doctors-home__slider::-webkit-scrollbar { display: none; }

.doctors-home__card-wrap {
    flex: 0 0 381px;
    min-width: 381px;
    height: 746px;
}

.doctors-home__card-wrap.hidden { display: none; }

.doctors-home__scrollbar-outer {
    padding-right: calc((100vw - min(1920px, 100vw)) / 2 + 160px);
}

.doctors-home__scrollbar-track {
    width: 100%;
    height: 4px;
    background: rgba(141, 42, 143, 0.15);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.doctors-home__scrollbar-thumb {
    position: absolute;
    top: 0; left: 0;
    height: 4px;
    background: var(--doctors-purple-mid, #8D2A8F);
    border-radius: 2px;
    min-width: 40px;
    cursor: grab;
    transition: background 0.2s ease;
}

.doctors-home__scrollbar-thumb:active {
    cursor: grabbing;
    background: var(--doctors-purple-dark, #5C075E);
}

/* Мобильные фильтры и пагинация — скрыты на планшете и десктопе */
.doctors-home__mobile-filters { display: none; }
.doctors-home__pagination { display: none; }

@media (max-width: 1024px) {
    .doctors-home__title { font-size: 34px; line-height: 46px; margin-bottom: 15px; }
    .doctors-home__description { font-size: 14px; line-height: 22px; }
    .doctors-home__header { margin-bottom: 35px; }
    .doctors-home__filters { margin-bottom: 35px; }
    .doctors-home__card-wrap { flex: 0 0 310px; min-width: 310px; height: 548px; }
    .doctors-home__slider { gap: 20px; padding-right: 60px; }
    .doctors-home__slider-wrap { padding-left: 40px; }
    .doctors-home__scrollbar-outer { padding-right: 60px; }
}

@media (max-width: 576px) {
    .doctors-home { padding: 40px 0; }
    .home .doctors-home { padding-top: 0; }
    .page-slug-o-klinike .doctors-home { margin-bottom: 30px !important; }

    /* Заголовок */
    .doctors-home__title { font-size: 24px; line-height: 27px; margin-bottom: 15px; }
    .doctors-home__description { font-size: 12px; line-height: 18px; }
    .doctors-home__header { margin-bottom: 15px; }

    /* Скрываем планшетный фильтр */
    .doctors-home__filters { display: none !important; }

    /* Мобильные фильтры */
    .doctors-home__mobile-filters {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 35px;
    }

    .doctors-home__mobile-select-wrap {
        position: relative;
        width: 100%;
    }

    .doctors-home__mobile-select {
        width: 100%;
        height: 40px;
        background: #FEFAFF;
        border: 1px solid #C05FC2;
        border-radius: 8px;
        padding: 0 40px 0 16px;
        appearance: none;
        -webkit-appearance: none;
        font-family: Manrope, sans-serif;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        color: #B171B2;
        cursor: pointer;
        outline: none;
    }

    .doctors-home__mobile-select-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #B171B2;
    }

    /* Слайдер — один слайд по ширине */
    .doctors-home__slider-wrap { padding-left: 20px; }

    .doctors-home__slider {
        gap: 16px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
    }

    .doctors-home__card-wrap {
        flex: 0 0 310px;
        min-width: 310px;
        height: auto;
        scroll-snap-align: start;
    }

    /* Карточка внутри doctors-home — сбросить grid из doctors.css */
    .doctors-home .doctors__card {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-radius: 15px;
    }

    .doctors-home .doctors__card-photo-wrap {
        margin: 0 0 15px 0;
        width: 100%;
        height: auto;
        aspect-ratio: 261 / 283;
        border-radius: 15px;
    }

    .doctors-home .doctors__card-body {
        padding: 0;
        gap: 0;
    }

    .doctors-home .doctors__card-name {
        font-size: 18px;
        line-height: 25px;
        margin: 0 0 10px 0;
    }

    .doctors-home .doctors__card-specs {
        min-height: auto;
        margin-bottom: 45px;
    }

    .doctors-home .doctors__card-meta {
        padding-top: 0;
        margin-bottom: 15px;
    }

    .doctors-home .doctors__card-btn {
        margin-top: 0;
    }

    /* Очистить все фильтры — внутри doctors-home */
    .doctors-home .doctors-home__mobile-filters .doctors__clear-filters {
        order: 0;
        width: auto;
        justify-content: flex-start;
        display: flex;
        position: static;
    }

    /* Скрываем десктопный скроллбар */
    .doctors-home__scrollbar-outer { display: none; }

    /* Точки пагинации */
    .doctors-home__pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 25px;
        padding: 0 20px;
    }

    .doctors-home__pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #CBAACC;
        border: none;
        padding: 0;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s ease;
    }

    .doctors-home__pagination-dot.active {
        background: #8D2A8F;
    }
}