/* reviews 페이지 모바일 슬라이드 - 호버 효과만 제거 */
@media (max-width: 968px) {
    /* 슬라이드 유지 */
    .testimonials-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.5rem !important;
        padding-bottom: 1rem !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .testimonials-grid .testimonial-card {
        flex: 0 0 90% !important;
        scroll-snap-align: center !important;
    }
    
    /* 호버 효과 제거 (화면 잘림 방지) */
    .testimonials-grid .testimonial-card:hover {
        transform: none !important;
        border-color: #f0f0f0 !important;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .testimonials-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: #099F97;
        border-radius: 10px;
    }
}
