/* 오시는길 페이지 - 3:7 비율 가로 배치 레이아웃 */
.location {
    padding: 120px 0 80px;
    background: #ffffff;
    position: relative;
}

.location__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 섹션 */
.location__header {
    text-align: center;
    margin-bottom: 60px;
}

.location__header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    letter-spacing: -1px;
}

/* 컨텐츠 섹션 - 3:7 비율 가로 배치 */
.location__content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* 좌측 주소 정보 박스 - 30% */
.location__info-box {
    flex: 0 0 20%;
    background: #f8faff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 로고 영역 - 하단 */
.location__logo {
    text-align: center;
    margin-top: 30px;
}

.location__logo img {
    height: 50px;
    max-width: 250px;
    object-fit: contain;
}

/* 주소 정보 */
.location__info {
    flex: 1;
}

.info__item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333333;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

.info__item .address {
    font-size: 1rem;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.6;
    font-weight: 300;
}

.info__item .phone {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

/* 우측 지도 박스 - 70% */
.location__map-box {
    flex: 0 0 70%;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    position: relative;
    min-height: 400px;
    height: 400px;
}

.location__map {
    width: 100%;
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* 데스크탑 */
@media (min-width: 1024px) {
    .location {
        padding: 140px 0 100px;
    }
    
    .location__header h1 {
        font-size: 3rem;
    }
    
    .location__content {
        gap: 20px;
    }
    
    .location__info-box {
        flex: 0 0 30%;
        padding: 60px;
        min-height: 500px;
    }
    
    .location__logo {
        margin-top: 40px;
    }
    
    .location__logo img {
        height: 50px;
    }
    
    .info__item h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .info__item .address,
    .info__item .phone {
        font-size: 1.1rem;
    }
    
    .info__item .address {
        margin-bottom: 40px;
    }
    
    .location__map-box {
        min-height: 500px;
        height: 500px;
    }
}

/* 태블릿 */
@media (min-width: 768px) and (max-width: 1023px) {
    .location__content {
        gap: 30px;
    }
    
    .location__info-box {
        flex: 0 0 30%;
        padding: 40px;
        min-height: 450px;
    }
    
    .location__map-box {
        min-height: 450px;
        height: 450px;
    }
}

/* 모바일 - 세로 배치로 변경 */
@media (max-width: 767px) {
    .location {
        padding: 100px 0 60px;
    }
    
    .location__container {
        padding: 0 15px;
    }
    
    .location__header {
        margin-bottom: 50px;
    }
    
    .location__header h1 {
        font-size: 2rem;
    }
    
    .location__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .location__info-box {
        flex: none;
        padding: 30px;
        min-height: auto;
    }
    
    .location__logo {
        margin-top: 20px;
    }
    
    .location__logo img {
        height: 35px;

    
    .info__item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .info__item .address {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .info__item .phone {
        font-size: 0.95rem;
    }
    
    .location__map-box {
        min-height: 300px;
        height: 300px;
    }
	.location__map {
		height: 300px;
	}
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .location {
        padding: 80px 0 50px;
    }
    
    .location__header h1 {
        font-size: 1.8rem;
    }
    
    .location__info-box {
        padding: 25px;
    }
    
    .location__map-box {
        min-height: 250px;
        height: 250px;
    }
}

/* GSAP 애니메이션을 위한 초기 상태 */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* 접근성 */
.phone:focus {
    outline: 2px solid #333333;
    outline-offset: 2px;
}