/* Стили для галереи отзывов */
.certs-gallery .clickable-thumb {
    box-shadow: 0 6px 18px rgba(11, 59, 102, 0.06);
    transition: transform 0.2s ease;
}
.certs-gallery .clickable-thumb:hover {
    transform: scale(1.02);
}

/* Адаптивность для мобильных */
    .certs-photos {
        order: 0; /* Фотографии вторыми */
    }
    .certs-gallery {
        overflow-x: auto; /* Горизонтальная прокрутка */
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Скрыть скроллбар в Firefox */
    }
    .certs-gallery::-webkit-scrollbar {
        display: none; /* Скрыть скроллбар в Chrome/Safari */
    }
    .certs-gallery .flex-shrink-0 {
        scroll-snap-align: start;
    }

    @media (max-width: 767.98px) {
        .cert-photo {
            height: 400px !important;
        }
    }