/* ==========================================
   GH Clinic — Sub Page Styles
   ========================================== */

/* ===== 서브 히어로 배너 ===== */
.sub-hero {
    height: 350px !important;
    background: url('../images/01banner.webp') center / cover no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    mask-image: linear-gradient(to right, transparent 70%, black 80%);
    -webkit-mask-image: linear-gradient(to right, transparent 70%, black 80%);
    pointer-events: none;
}

.sub-hero-inner {
    position: relative;
    z-index: 1;
}

.sub-hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
}

.sub-hero h2 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 12px 0;
}

.sub-breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* 오른쪽 정렬 변형 */
.sub-hero.sub-hero-right { justify-content: flex-end; }
.sub-hero-tagline {
    position: absolute;
    right: 30px;
    bottom: 0;
    line-height: 1;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
    opacity: 0.6;
}
@media (max-width: 900px) {
    .sub-hero-tagline { font-size: 22px; right: 20px; }
}
.sub-hero.sub-hero-right .sub-hero-inner {
    text-align: right;
    padding-right: 40px;
    max-width: 600px;
}
.sub-hero-copy {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin: 14px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}
.sub-hero-copy em {
    font-style: normal;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    padding: 0 2px;
}
.sub-hero-copy strong {
    font-weight: 600;
    color: #fff;
}
.sub-hero h2.sub-hero-title-dark {
    color: var(--gh-title-color, var(--gh-grad-from, #2d3d0e));
    font-weight: 400;
    padding-top: 14px;
    padding-right: 28px;
}
.sub-hero h2.sub-hero-title-dark .dot-char {
    position: relative;
    display: inline-block;
}
.sub-hero h2.sub-hero-title-dark .dot-char::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gh-title-color, var(--gh-grad-from, #2d3d0e));
}
.sub-hero-copy.sub-hero-copy-dark {
    color: #111;
    display: inline-block;
    padding: 18px 26px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.sub-hero-copy.sub-hero-copy-dark strong { color: #111; }
.sub-hero-copy.sub-hero-copy-dark u {
    text-decoration-line: underline;
    text-decoration-color: rgba(0,0,0,0.5);
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}
@media (max-width: 900px) {
    .sub-hero.sub-hero-right .sub-hero-inner {
        padding-right: 24px;
        padding-left: 24px;
        max-width: 100%;
        text-align: center;
    }
    .sub-hero.sub-hero-right { justify-content: center; }
    .sub-hero-copy { font-size: 14px; }
}

/* ===== 서브 네비게이션 ===== */
.sub-nav {
    border-bottom: 1px solid #eeeeee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.sub-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-nav-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
}

.sub-nav-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #384b19;
    text-transform: uppercase;
}

.sub-nav-dot {
    width: 4px;
    height: 4px;
    background: #c4b5c7;
    border-radius: 50%;
}

.sub-nav-title {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.sub-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.sub-nav-list li {
    position: relative;
}

.sub-nav-list li a {
    display: inline-block;
    padding: 24px 22px;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
}

.sub-nav-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #384b19;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.sub-nav-list li a:hover {
    color: #1a1a2e;
}

.sub-nav-list li a:hover::after {
    transform: scaleX(0.5);
}

.sub-nav-list li.active a {
    color: #1a1a2e;
    font-weight: 700;
}

.sub-nav-list li.active a::after {
    transform: scaleX(1);
}

/* ===== 서브 컨테이너 ===== */
.sub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

/* ===== 인사말 상단 인용 ===== */
.intro-greeting {
    margin-bottom: 60px;
}

.intro-quote {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.intro-en {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5f2b2b;
    margin-bottom: 12px;
}

.intro-quote h3 {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0;
}

.intro-quote h3 strong {
    font-size: 52px;
    font-weight: 800;
    color: #ff5809;
}

/* ===== 인사말 본문 ===== */
.intro-main {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.intro-photo {
    flex-shrink: 0;
    width: 220px;
}

.intro-photo-img {
    width: 220px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.intro-text h4 {
    font-size: 30px;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.intro-text h4 span {
    color: #ff5809;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 16px 0;
}

.intro-text p strong {
    color: #1a1a2e;
}

.intro-signature {
    margin-top: 32px !important;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    font-size: 25px !important;
    color: #1a1a2e !important;
    font-weight: 500;
}

.intro-signature strong {
    font-size: 30px;
    font-weight: 900;
    color: #000 !important;
}

/* ===== 약력 섹션 ===== */
.intro-history {
    padding-top: 60px;
    border-top: 1px solid #f0f0f0;
}

.intro-history-title {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 30px 0;
    text-align: center;
}

.intro-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.intro-history-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 32px;
}

.intro-history-icon {
    width: 48px;
    height: 48px;
    background: #f7f9f4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #384b19;
    margin-bottom: 20px;
}

.intro-history-card h5 {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.intro-history-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.intro-history-card ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.intro-history-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 5px;
    height: 5px;
    background: #c4b5c7;
    border-radius: 50%;
}

/* ===== 0102 병원소개 ===== */
.about-intro {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.about-intro-title {
    font-size: 30px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 12px 0 16px 0;
    line-height: 1.4;
}

.about-intro-desc {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s;
}

.about-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.about-card-num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #384b19, #5a1a56);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.about-card-promise .about-card-num {
    background: linear-gradient(135deg, #ff5809, #e04800);
}

.about-card-body {
    flex: 1;
}

.about-card-body h4 {
    font-size: 25px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.about-card-body p.about-card-sub {
    font-size: 18px;
    font-weight: 600;
    color: #f44336;
    margin: 0 0 12px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.about-card-body p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

.about-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f7f9f4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c4b5c7;
}

.about-card-promise .about-card-icon {
    background: #fff7ed;
    color: #ff5809;
}

/* ===== 0103 병원안내 슬라이더 ===== */
.interior-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
}

.interior-slider-wrap {
    position: absolute;
    inset: 0;
}

.interior-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.interior-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.interior-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interior-slide-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 60px 40px 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.caption-num {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff5809;
}

.caption-txt {
    font-size: 22px;
    font-weight: 800;
}

/* 화살표 */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: #1a1a2e;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 5;
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* 썸네일 */
.interior-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.interior-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.interior-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    transition: opacity 0.2s;
}

.interior-thumb.active::after,
.interior-thumb:hover::after {
    opacity: 0;
}

.interior-thumb.active {
    border-color: #384b19;
    transform: translateY(-2px);
}

.interior-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== 0104 찾아오시는 길 ===== */
.map-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.1);
    margin-bottom: 40px;
}

.map-wrap iframe {
    display: block;
    border-radius: 20px;
}

.map-wrap .root_daum_roughmap,
.map-wrap .root_daum_roughmap .wrap_map {
    width: 100% !important;
}

.map-wrap .root_daum_roughmap .wrap_map {
    height: 450px !important;
}

.map-overlay-info {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 320px;
}

.map-overlay-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.map-overlay-title i { color: #ff5809; }

.map-overlay-addr {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.map-overlay-tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 800;
    color: #384b19;
    text-decoration: none;
}

/* 정보 카드 */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 28px;
    transition: box-shadow 0.3s;
}

.location-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.location-card-wide {
    grid-column: 1 / -1;
}

.location-icon {
    flex-shrink: 0;
    font-size: 26px;
    color: #384b19;
    line-height: 1;
    padding-top: 4px;
}

.location-body { flex: 1; }

.location-body h5 {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.location-body h5 span {
    font-size: 16px;
    font-weight: 600;
    color: #384b19;
    margin-left: 6px;
}

.location-body p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 6px 0;
}

.location-body p strong {
    color: #ff5809;
    font-weight: 800;
}

.location-tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
}

.location-tel i { color: #384b19; }

/* 버스 리스트 */
.bus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bus-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
}

.bus-type {
    flex-shrink: 0;
    display: inline-block;
    padding: 4px 12px;
    background: #f7f9f4;
    color: #384b19;
    font-size: 14px;
    font-weight: 800;
    border-radius: 20px;
    min-width: 52px;
    text-align: center;
}

.bus-num {
    color: #4b5563;
    line-height: 1.6;
}

/* 자가용 경로 */
.car-route {
    padding: 16px 18px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 12px;
}

.car-route:last-child { margin-bottom: 0; }

.car-route h6 {
    font-size: 16px;
    font-weight: 800;
    color: #384b19;
    margin: 0 0 6px 0;
}

.car-route p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* ===== 0105 진료안내 ===== */
.care-section {
    margin-bottom: 60px;
}

.care-section-title {
    font-size: 26px;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.care-section-title span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5f2b2b;
    margin-top: 6px;
}

/* 진료과목 2열 */
.care-specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.care-specialty {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.2s;
}

.care-specialty:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.care-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #233a63, #3a5874);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.care-specialty h5 {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}

.care-specialty p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* 진료시간 */
.care-hours-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.care-hours {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 36px 40px;
}

.care-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.care-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 18px;
}

.care-hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    color: #1a1a2e;
    font-weight: 600;
}

.hours-day i {
    color: #384b19;
    margin-right: 4px;
}

.hours-time {
    color: #4b5563;
}

.care-hours-list li.closed .hours-time {
    color: #f44336;
    font-weight: 600;
}

.hours-time.tel {
    color: #384b19;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* 예약 버튼 */
.care-reserve-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/detail_eco_leaf.webp') center center / cover no-repeat;
    color: #000;
    border-radius: 20px;
    padding: 36px 28px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    position: relative;
    isolation: isolate;
}

.care-reserve-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(82% - 42px);
    height: calc(59% - 40px);
    background: rgb(255 255 255 / 35%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    z-index: 0;
}

.care-reserve-btn > i,
.care-reserve-btn > span,
.care-reserve-btn > small {
    position: relative;
    z-index: 1;
    color: #000;
}

.care-reserve-btn:hover {
    transform: translateY(-2px);
    color: #000;
}

.care-reserve-btn i {
    font-size: 32px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.care-reserve-btn span {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.care-reserve-btn small {
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.5;
}

/* 야간예약진료 */
.care-night {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1a3e 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.care-night::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/patten.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.care-night-inner {
    position: relative;
    z-index: 1;
}

.care-night-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}

.care-night-label i {
    color: #ffd700;
    margin-right: 4px;
}

.care-night h4 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px 0;
}

.care-night p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin: 0 0 30px 0;
}

.care-night p strong {
    color: #fff;
    font-weight: 700;
}

.care-night-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.care-night-tel:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
    color: #fff;
}

.care-night-tel i {
    font-size: 18px;
    color: #ffd700;
}

/* ===== 0107 제증명 수수료 ===== */
.fee-section {
    margin-bottom: 60px;
}

.fee-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

.fee-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #384b19;
    border-radius: 50%;
}

.fee-table-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    background: #fff;
}

.fee-table thead th {
    background: #384b19;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    padding: 18px 16px;
    text-align: center;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255,255,255,0.18);
}

.fee-table thead th:last-child {
    border-right: none;
}

.fee-table tbody th {
    background: #faf7fa;
    color: #1a1a2e;
    font-weight: 400;
    padding: 18px 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #d9d0db;
    width: 18%;
}

.fee-table tbody td {
    padding: 18px 16px;
    text-align: center;
    color: #434343;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #d9d0db;
    line-height: 1.6;
}

.fee-table tbody tr:last-child th,
.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-table tbody td:last-child,
.fee-table tbody th:last-child {
    border-right: none;
}

.fee-table .fee-price {
    color: #434343;
    font-weight: 400;
    white-space: nowrap;
}

.fee-table .fee-note {
    font-size: 14px;
    color: #434343;
    text-align: left;
    line-height: 1.6;
}

/* 비급여 테이블 열 너비 */
.fee-table-wide { table-layout: fixed; }
.fee-table-wide thead th:nth-child(1) { width: 13%; }
.fee-table-wide thead th:nth-child(2) { width: 32%; }
.fee-table-wide thead th:nth-child(3) { width: 12%; }
.fee-table-wide thead th:nth-child(4) { width: 22%; }
.fee-table-wide thead th:nth-child(5) { width: 21%; }

.fee-footnote {
    margin-top: 18px;
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

.fee-footnote i {
    margin-right: 4px;
    color: #384b19;
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
    .intro-main {
        flex-direction: column;
        align-items: center;
    }
    .intro-photo { width: 180px; }
    .intro-photo-frame { width: 180px; height: 230px; }
    .intro-text { text-align: left; }
}

@media (max-width: 768px) {
    .sub-hero { height: 180px; }
    .sub-hero h2 { font-size: 26px; }
    .intro-quote h3 { font-size: 22px; }
    .intro-quote h3 strong { font-size: 32px; }
    .intro-text h4 { font-size: 18px; }
    .intro-history-grid { grid-template-columns: 1fr; }
    .sub-container { padding: 40px 16px 60px; }

    .about-intro-title { font-size: 22px; }
    .about-card { flex-direction: column; gap: 16px; padding: 24px; }
    .about-card-icon { display: none; }
    .about-card-body h4 { font-size: 18px; }

    .sub-nav { position: static; }
    .sub-nav-inner { padding: 0 12px; }
    .sub-nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .sub-nav-list::-webkit-scrollbar { display: none; }
    .sub-nav-list li a { padding: 18px 16px; font-size: 13px; white-space: nowrap; }
    .sub-nav-list li a::after { left: 0; right: 0; bottom: -1px; }

    .fee-title { font-size: 18px; }
    .fee-table-wrap { overflow-x: auto; }
    .fee-table { font-size: 14px; min-width: 520px; }
    .fee-table thead th { font-size: 13px; padding: 14px 10px; }
    .fee-table tbody th,
    .fee-table tbody td { padding: 12px 10px; }
    .fee-table .fee-note { font-size: 12px; }

    .care-section-title { font-size: 22px; }
    .care-specialty-grid { grid-template-columns: 1fr; gap: 14px; }
    .care-specialty { padding: 28px 22px; }
    .care-specialty h5 { font-size: 20px; }
    .care-hours-wrap { grid-template-columns: 1fr; gap: 14px; }
    .care-hours { padding: 24px 22px; }
    .care-hours-list li { font-size: 15px; padding: 12px 0; }
    .care-reserve-btn { padding: 28px 22px; }
    .care-reserve-btn span { font-size: 18px; }
    .care-night { padding: 40px 22px; border-radius: 16px; }
    .care-night h4 { font-size: 24px; }
    .care-night p { font-size: 15px; }
    .care-night-tel { font-size: 18px; padding: 14px 28px; }

    .location-grid { grid-template-columns: 1fr; gap: 14px; }
    .location-card { padding: 22px; gap: 14px; }
    .location-icon { font-size: 22px; }
    .map-overlay-info { left: 12px; right: 12px; bottom: 12px; padding: 14px 18px; max-width: none; }
    .map-wrap iframe { height: 320px; }
    .map-wrap .root_daum_roughmap .wrap_map { height: 320px !important; }
    .bus-list li { flex-direction: column; gap: 4px; }

    .interior-slider { aspect-ratio: 4 / 3; border-radius: 14px; }
    .interior-slide-caption { padding: 40px 20px 20px; }
    .caption-txt { font-size: 16px; }
    .slider-arrow { width: 38px; height: 38px; font-size: 13px; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .interior-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 12px; }
    .interior-thumb { border-radius: 6px; border-width: 2px; }
}
