.doctor-certs {
    background: var(--doctors-bg, rgba(252, 245, 252, 1));
}

.doctor-certs__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.doctor-certs__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    letter-spacing: 0;
    color: var(--doctors-purple-dark, rgba(92, 7, 94, 1));
    margin: 0;
}

.doctor-certs__arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.doctor-certs__arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--doctors-purple-mid, #8D2A8F);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    padding-bottom: 2px; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.doctor-certs__arrow:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(141, 42, 143, 0.3);
}

.doctor-certs__arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.doctor-certs__arrow:disabled:hover {
    transform: none;
    box-shadow: none;
}

.doctor-certs__slider {
    overflow: hidden;
}

.doctor-certs__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-certs__item {
    width: 517px !important;
}

.doctor-certs__link {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 1);
    border-radius: 25px;
    padding: 13px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.doctor-certs__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(141, 42, 143, 0.18);
}

.doctor-certs__img-wrap {
    width: 100%;                
    aspect-ratio: 491 / 370;
    border-radius: 16px;        
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
}

.doctor-certs__img {
    width: 100%;
    height: 100%;
    object-fit: contain;        
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.doctor-certs__link:hover .doctor-certs__img {
    transform: scale(1.02);
}

/* Пагинация (скрыта по умолчанию) */
.doctor-certs__pagination {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 25px;
}

.doctor-certs__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #CBAACC;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.2s ease;
}

.doctor-certs__pagination .swiper-pagination-bullet-active {
    background: #8D2A8F;
}

@media (max-width: 1024px) {
    .doctor-certs__title {
        font-size: 34px;
        line-height: 46px;
    }

    .doctor-certs__header {
        margin-bottom: 35px;
    }

    .doctor-certs__arrows {
        gap: 25px;
    }

    .doctor-certs__arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .doctor-certs__item {
        width: 301px !important;
    }

    .doctor-certs__link {
        border-radius: 20px;
        padding: 10px;
    }

    .doctor-certs__img-wrap {
        aspect-ratio: 281 / 207;
        border-radius: 9px;
    }
}

@media (max-width: 576px) {
    .doctor-certs__title {
        font-size: 24px;
        line-height: 27px;
    }

    .doctor-certs__header {
        margin-bottom: 25px;
    }

    /* Скрыть стрелки, показать пагинацию */
    .doctor-certs__arrows {
        display: none;
    }

    .doctor-certs__pagination {
        display: flex;
    }

    .doctor-certs__item {
        width: 301px !important;
    }

    .doctor-certs__link {
        border-radius: 20px;
        padding: 10px;
    }

    .doctor-certs__img-wrap {
        aspect-ratio: 281 / 207;
        border-radius: 9px;
    }
}