/* .adonis-doctor-slider {
    width: 100%;
    position: relative;
}

.adonis-swiper-instance {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.adonis-swiper-instance .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.adonis-swiper-instance .swiper-button-prev,
.adonis-swiper-instance .swiper-button-next {
    color: #3d7a5f;
}

.adonis-swiper-instance .swiper-pagination-bullet-active {
    background: #3d7a5f;
}


.adonis-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.adonis-gallery__pair {
    display: flex;
    gap: 16px;
    width: 100%;
}

.adonis-gallery__pair--hidden {
    display: none;
}

.adonis-gallery__item {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.adonis-gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.adonis-gallery__more {
    align-self: center;
    margin-top: 8px;
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #3d7a5f;
    color: #3d7a5f;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.adonis-gallery__more:hover {
    background: #3d7a5f;
    color: #fff;
}

@media (max-width: 600px) {
    .adonis-gallery__pair {
        flex-direction: column;
    }

    .adonis-gallery__item img {
        height: 220px;
    }
} */