/* Location 전용 - About 디자인 기반 (버튼은 about-booking-btn 사용) */

/* 주소 + 지도 2단을 하나의 박스로 */
.page-container--location .location-two-col {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--space-5);
    align-items: start;
    margin-top: var(--space-5);
    padding: var(--space-5);
    border: var(--border);
    background: white;
}

.page-container--location .location-two-col .about-section {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0;
}

/* 주소 블록 */
.page-container--location .location-address-block {
    min-width: 0;
}

.page-container--location .location-address-block .about-address-list {
    margin-bottom: 0;
}

.page-container--location .location-address-block .about-address-list dd {
    font-size: 1rem;
}

.page-container--location .location-address-block .about-address-list dd:first-of-type {
    font-size: 1.05rem;
    font-weight: 500;
}

/* 지도 블록: 모서리·그림자 */
.page-container--location .location-map-block {
    min-width: 0;
}

.page-container--location .location-map-embed {
    border-radius: var(--btn-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.page-container--location .location-map-embed iframe {
    display: block;
    border: 0;
}

/* 모바일: about처럼 width 꽉 차게, 2단 해제, 히어로 버튼 세로 배치 */
@media (max-width: 768px) {
    .page-container--location {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-container--location .location-two-col {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
    }

}
