.single-clinic__license {
    padding: 40px 0;
}

.section-caption {
    text-align: center;
    margin-bottom: 30px;
}

.title-clinic__bottom img {
    max-height: 40px;
    object-fit: contain;
}

.clinic-license-slider-wrapper {
    padding: 20px 0;
    position: relative;
}

.clinic-license-swiper {
    overflow: hidden;
    position: relative;
}

.clinic-license-swiper .swiper-wrapper {
    display: flex;
}

.clinic-license-swiper .swiper-slide {
    height: 420px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Грид внутри слайда — 4 картинки в ряд на десктопе */
.clinic-license-swiper .slide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    height: 100%;
    transition: gap 0.3s ease;
}

.clinic-license-swiper .slide-grid img {
    width: 100%;
    height: 420px;
    object-fit: contain; /* Изменено на contain для читаемости документов */
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.clinic-license-swiper .slide-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Навигация */
.clinic-license-swiper .swiper-button-prev,
.clinic-license-swiper .swiper-button-next {
    color: #d3a381;
    background: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.clinic-license-swiper .swiper-button-prev:hover,
.clinic-license-swiper .swiper-button-next:hover {
    transform: translateY(-50%) scale(1.05);
}

.clinic-license-swiper .swiper-button-prev {
    left: 20px;
}

.clinic-license-swiper .swiper-button-next {
    right: 20px;
}

.clinic-license-swiper .swiper-button-disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.clinic-license-pagination {
    margin-top: 20px;
    text-align: center;
}

.clinic-license-pagination .swiper-pagination-bullet {
    background: #d3a381;
    width: 10px;
    height: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.clinic-license-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Планшетный адаптив */
@media (max-width: 1024px) {
    .single-clinic__license {
        padding: 30px 0;
    }

    .clinic-license-swiper .swiper-slide {
        height: 420px;
    }

    .clinic-license-swiper .slide-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
        gap: 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }
}

/* Мобильный адаптив */
@media (max-width: 768px) {
    .single-clinic__license {
        padding: 25px 0;
    }

    .clinic-license-swiper .swiper-slide {
        height: 420px;
    }

    .clinic-license-swiper .slide-grid {
        grid-template-columns: repeat(2, 1fr); /* Оставляем 2 колонки */
        gap: 15px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 44px;
        height: 44px;
        display: none; /* Скрываем кнопки на мобильных */
    }

    .clinic-license-pagination {
        margin-top: 15px;
    }
}

/* Маленькие планшеты и большие телефоны */
@media (max-width: 640px) {
    .clinic-license-swiper .swiper-slide {
        height: 420px;
    }

    .clinic-license-swiper .slide-grid {
        gap: 12px;
    }

    .section-caption {
        margin-bottom: 20px;
    }
}

/* Мобильные телефоны */
@media (max-width: 480px) {
    .single-clinic__license {
        padding: 20px 0;
    }

    .clinic-license-swiper .swiper-slide {
        height: 400px; /* Увеличиваем высоту для лучшей читаемости */
    }

    .clinic-license-swiper .slide-grid {
        grid-template-columns: 1fr; /* 1 колонка на мобильных */
        gap: 15px;
    }

    .clinic-license-swiper .slide-grid img {
        object-fit: contain;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Очень маленькие мобильные устройства */
@media (max-width: 360px) {
    .clinic-license-swiper .swiper-slide {
        height: 420px;
    }

    .clinic-license-swiper .slide-grid {
        gap: 12px;
    }

    .clinic-license-swiper .slide-grid img {
        height: 100%;
    }
}

/* Адаптив для ландшафтной ориентации на мобильных */
@media (max-width: 896px) and (orientation: landscape) and (max-height: 500px) {
    .single-clinic__license {
        padding: 15px 0;
    }

    .clinic-license-swiper .swiper-slide {
        height: 200px;
    }

    .clinic-license-swiper .slide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .clinic-license-swiper .slide-grid img {
        max-height: 180px;
    }

    .clinic-license-pagination {
        margin-top: 10px;
    }
}

/* Особый случай для очень широких экранов */
@media (min-width: 1440px) {
    .clinic-license-swiper .swiper-slide {
        height: 480px;
    }

    .clinic-license-swiper .slide-grid {
        gap: 40px;
    }
}