/*
 * PC에서도 지도와 최근 실거래 목록을 위아래로 배치한다.
 * 카카오지도는 원래처럼 전체 폭에서 생성되고 목록은 지도 아래에 표시된다.
 */

@media screen and (min-width: 769px) {
    .map-section.apartment-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        height: auto !important;
        overflow: visible !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .map-section.apartment-layout .map-pane {
        position: relative;
        width: 100% !important;
        min-width: 0;
        height: 520px !important;
        min-height: 520px !important;
        flex: none !important;
        overflow: hidden;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .map-section.apartment-layout #korea-map {
        width: 100% !important;
        height: 100% !important;
    }

    .map-section.apartment-layout #apt-info-panel {
        right: 0;
        width: min(400px, 38%) !important;
        max-width: 400px;
    }

    .map-section.apartment-layout .apt-list-panel {
        width: 100% !important;
        height: 420px !important;
        max-height: 420px !important;
        flex: none !important;
        margin-top: 12px;
        border: 1px solid #e7eaee;
        border-left: 1px solid #e7eaee;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    }

    .map-section.apartment-layout .apt-list {
        max-height: 330px;
    }
}
