/* ==========================================================================
 * introduction-directions.css — 찾아오시는 길 페이지(/directions) 전용 스타일
 *  · introduction.ts 인라인 <style> 에서 분리 (정적 CSS)
 * ========================================================================== */

.map-section {
    background: white;
    border-radius: 15px;
    flex-direction: column;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
    display: flex;
    gap: 0px;
    margin-bottom: 0px;
}

.map-container {
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 30px; /* 가운데 정렬 */
    background: #f0f0f0;
}

/*.map-container {
    flex: 1;
    height:720px;
    position: relative;
    background: #f0f0f0;
}*/

#map {
    width: 100%;
    height: 100%;
}
.info-box {
    flex: 0 0 400px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
    height: fit-content;
}
.info-box h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.info-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 3px;
    width: 25px;
}
.info-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.info-item-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 767px) {
    /*.map-section {
        flex-direction: column;
    }*/
    .map-container {
        width: 100%;
        height: 400px;
        min-height: 400px;
        flex: none;
    }
    #map {
        width: 100%;
        height: 100%;
        min-height: 400px;
    }
    .info-box {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
}
