@charset "utf-8";

/* 오시는길 섹션 전체 */
.location-section {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 헤더 섹션 */
.location-header-section {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 120px 0;
    box-sizing: border-box;
}

.location-header-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0;
    box-sizing: border-box;
}

.location-header-content {
    width: 100%;
    height: 303.519px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.location-header-icon {
    width: 91px;
    height: 129px;
    min-width: 91px;
    min-height: 129px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.location-header-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: center;
    line-height: 0;
    font-style: normal;
}

.location-title {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.location-title-highlight {
    color: #003179;
}

.location-subtitle {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    padding: 0;
    width: 817px;
    text-align: center;
    
}

/* 지도 및 연락처 정보 섹션 */
.location-content-section {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    margin-bottom:180px;
}

.location-content-container {
    width: 1421.5px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 200px;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

/* 지도 섹션 */
.location-map-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.location-map-container {
    width: 100%;
    height: 600px;
    min-height: 600px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-sizing: border-box;
}

.location-map {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 600px;
    border-radius: 32px;
    display: block;
}

/* 연락처 정보 섹션 */
.location-contact-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding: 0;
    box-sizing: border-box;
}

.location-contact-item {
    width: 100%;
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-template-rows: max-content;
    gap: 0;
    align-items: start;
    padding: 0;
    box-sizing: border-box;
}

.location-contact-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    width: 120px;
    padding: 0;
    margin-left: 0;
    margin-top: 1px;
}

.location-contact-value {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
    padding: 0;
    margin-left: 239px;
}

.location-contact-email {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.8;
    color: #000000;
    text-decoration: underline;
    text-underline-position: from-font;
    cursor: pointer;
}

.location-contact-email:hover {
    color: #003179;
}

.location-contact-divider {
    width: 100%;
    height: 0;
    border-top: 1px solid #DDDDDD;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .location-section {
        overflow-x: hidden;
    }

    .location-header-section {
        padding: 60px 0;
    }

    .location-header-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .location-header-content {
        height: auto;
        min-height: 200px;
        gap: 16px;
    }

    .location-header-icon {
        width: 60px;
        height: 85px;
        min-width: 60px;
        min-height: 85px;
    }

    .location-title {
        font-size: 30px;
        width: 100%;
    }

    .location-subtitle {
        font-size: 20px;
        width: 100%;
    }

    .location-content-section {
        margin-bottom: 60px;
    }

    .location-content-container {
        width: 100%;
        padding: 0 20px;
        gap: 60px;
        box-sizing: border-box;
    }

    .location-map-container {
        height: 400px;
        min-height: 400px;
        border-radius: 16px;
    }

    .location-map {
        min-height: 400px;
        border-radius: 16px;
    }

    .location-contact-section {
        gap: 24px;
    }

    .location-contact-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .location-contact-label {
        font-size: 20px;
        margin-left: 0;
        margin-top: 0;
    }

    .location-contact-value {
        font-size: 18px;
        margin-left: 0;
    }

    .location-contact-email {
        font-size: 18px;
    }
}

