/* 어학원 검색/상세 전용 스타일 */

/* 검색 카드 호버 효과 */
.li-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.li-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.1);
}

/* 리스트형 카드 호버 */
.li-list-item {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.li-list-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 51, 102, 0.06);
}

/* 사이드 네비 활성화 */
.ld-snav-link.font-semibold {
    border-left: 3px solid #003366;
}

/* 상세 페이지 테이블 반응형 */
@media (max-width: 640px) {
    .ld-sec-tuition table,
    .ld-sec-intl table {
        font-size: 12px;
    }
    .ld-sec-tuition th,
    .ld-sec-tuition td,
    .ld-sec-intl th,
    .ld-sec-intl td {
        padding: 8px 6px;
    }
}

/* 별점 호버 */
#star_rating_wrap i:hover ~ i {
    color: #d1d5db !important;
}

/* 필터 칩 활성 상태 */
.filter-chip-active {
    font-weight: 700;
    box-shadow: 0 0 0 2px rgba(0, 168, 150, 0.3);
}

/* 구글맵 iframe 반응형 */
#section_map iframe {
    min-height: 300px;
}
@media (max-width: 640px) {
    #section_map iframe {
        min-height: 250px;
    }
}

/* 검색 결과 페이징 */
#search_paging button {
    transition: all 0.15s ease;
}
#search_paging button:hover {
    transform: scale(1.05);
}