.clinic-gallery-carousel-wrapper {
    width: 100%;
    position: relative;
}

.clinic-gallery-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clinic-gallery-slide {
    height: auto;
}

.clinic-gallery-lightbox-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
}

.clinic-gallery-image {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.25s ease;
}

.clinic-gallery-lightbox-link:hover .clinic-gallery-image {
    transform: scale(1.04);
}

.clinic-gallery-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.clinic-gallery-prev,
.clinic-gallery-next {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-gallery-prev:hover,
.clinic-gallery-next:hover {
    background: #e5e7eb;
}

.clinic-gallery-pagination {
    text-align: center;
    margin-top: 12px;
}

.clinic-gallery-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
}

@media (max-width: 767px) {
    .clinic-gallery-image {
        height: 180px;
    }
}