/* ===========================================================================
   진료시간/오시는길 (/about/location) 전용 스타일
   갤러리 캐러셀·헤더·푸터는 공통(main.css). 여기엔 상단 슬로건 띠만 있다.
   지도는 푸터가 담고 있고, 진료시간·주소 텍스트는 .visit 로 본문에도 둔다.
   =========================================================================== */

/* 시안: 1920x200 배경 위에 영문 슬로건 + 국문 문구가 가로로 나란히 */
.slogan-band {
    height: 200px;
    background: url('/static/images/location/banner.png') no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* 시안은 두 문구가 좌표로 놓여 있어 화면 중앙에서 24px 왼쪽으로 치우쳐 있다.
   가운데 정렬로 맞추고 간격(48px)만 시안값을 쓴다. */
.slogan-band__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 30px;
}

.slogan-band__en {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.slogan-band__en b {
    font-weight: 800;
}

.slogan-band__ko {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.9px;
    white-space: nowrap;
}

.slogan-band__ko b {
    font-weight: 700;
    color: var(--c-cream);
}

/* 반응형 — 모바일 시안이 없어 PC 시안을 축소 해석한 값이다 --------------------- */
@media (max-width: 1230px) {
    .slogan-band {
        height: 160px;
    }

    .slogan-band__inner {
        gap: 30px;
    }

    .slogan-band__en {
        font-size: 26px;
    }

    .slogan-band__ko {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* 한 줄로는 안 들어가므로 두 줄로 쌓는다 */
    .slogan-band {
        height: auto;
        padding: 28px 0;
    }

    .slogan-band__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .slogan-band__en {
        font-size: 22px;
    }

    .slogan-band__ko {
        font-size: 15px;
        letter-spacing: -0.5px;
        white-space: normal;
    }
}


/* ---------------------------------------------------------------------------
   진료시간 / 오시는 길 텍스트 블록
   시안에 없는 섹션이다. 푸터에만 있던 정보를 페이지 본문으로 끌어올린 것이라
   기존 타이포 토큰만 쓰고 장식은 넣지 않는다.
   --------------------------------------------------------------------------- */
.visit .inner {
    display: flex;
    gap: 80px;
    padding: 100px 30px;
}

.visit__block {
    flex: 1;
}

.visit__title {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e4e4;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--c-brown-dark);
}

.visit__row {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.6;
}

.visit__row dt {
    flex: 0 0 96px;
    font-weight: 500;
    color: var(--c-title);
}

.visit__row dd {
    color: var(--c-body);
}

.visit__row dd a {
    color: var(--c-brown-mid);
}

.visit__sub {
    font-size: 16px;
    color: #a0a0a0;
}

.visit__map-note {
    margin-top: 20px;
    font-size: 16px;
    color: #a0a0a0;
}

@media (max-width: 900px) {
    .visit .inner {
        flex-direction: column;
        gap: 48px;
        padding: 60px 20px;
    }

    .visit__title {
        font-size: 24px;
    }

    .visit__row {
        font-size: 16px;
    }

    .visit__row dt {
        flex-basis: 76px;
    }
}
