/*
Theme Name: 비랜딩 테마 - 노원다담한의원 · 다담에스한의원
Theme URI: https://blanding.kr
Author: 비랜딩 blanding.kr
Author URI: https://blanding.kr
Description: 비랜딩에서 제작한 빠른 속도가 강점인 테마입니다
Version: 2.1.0
Text Domain: blanding-base
*/

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* =============================================================================
   ① DESIGN TOKENS (럭셔리 프리미엄 브랜드 리뉴얼)
   ============================================================================= */
:root {
    /* Brand Colors - Luxury Deep Navy & Forest Green & Subtle Gold */
    --clr-navy:          #0f294a; /* Modern Slate Navy */
    --clr-navy-dark:     #08172b;
    --clr-navy-light:    #f5f8fc;
    --clr-green:         #165c35; /* Elegant Forest Emerald */
    --clr-green-dark:    #0f3d23;
    --clr-green-light:   #f0f7f3;
    --clr-gold:          #bfa37a; /* Noble Soft Gold */
    --clr-gold-dark:     #a68c65;
    --clr-gold-light:    #fcfaf7;
    --clr-yellow:        #ffeb3b; /* Kakao Yellow (refined brightness) */
    --clr-yellow-dark:   #fbc02d;
    
    /* Neutrals - High Premium Layout */
    --clr-bg:            #fcfbfa; /* Warm minimalist ivory bg */
    --clr-white:         #ffffff;
    --clr-txt-main:      #2b3036; /* Dark gray for soft reading */
    --clr-txt-sub:       #5a6066;
    --clr-txt-light:     #8c9399;
    --clr-border:        #f5f2ed; /* Very thin warm border */
    --clr-border-dark:   #e8e2d9;
    
    /* Layout & Soft Shadows */
    --radius-lg:         16px;
    --radius-md:         12px;
    --radius-sm:         6px;
    --shadow-sm:         0 2px 12px rgba(15, 41, 74, 0.02);
    --shadow-md:         0 10px 30px rgba(15, 41, 74, 0.03);
    --shadow-lg:         0 20px 40px rgba(15, 41, 74, 0.05);
    --shadow-premium:    0 20px 50px -10px rgba(191, 163, 122, 0.08);
    --transition:        all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans:         'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* =============================================================================
   ② RESET & GLOBAL STYLES
   ============================================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: -0.03em; /* 단단한 위격의 자간 설정 */
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-txt-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================================================
   ③ HEADER & NAVIGATION (슬림 & 미니멀)
   ============================================================================= */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px; /* 슬림 패딩 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.site-logo-link {
    display: block;
}

.site-logo-img {
    height: 46px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 36px;
    }
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--clr-txt-main);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: var(--clr-navy);
    background-color: var(--clr-navy-light);
}

/* Kakao GNB Button */
.menu-kakao-btn a {
    background-color: var(--clr-yellow);
    color: #3c1e1e !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: none;
}

.menu-kakao-btn a:hover {
    background-color: #ffd600 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 235, 59, 0.2);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--clr-txt-main);
    transition: var(--transition);
}

/* =============================================================================
   ④ HERO — Doctor Profiles Banner (압축형 매트 럭셔리)
   ============================================================================= */
.clinic-hero {
    background: linear-gradient(135deg, #e4effb 0%, #fcfcfb 50%, #e8f5ed 100%);
    padding: 30px 20px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.clinic-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

/* Doctor profile block */
.doctor-profile {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 240px;
    position: relative;
    overflow: visible;
    transition: var(--transition);
}

.doctor-profile--left {
    padding-right: 10px;
}

.doctor-profile--right {
    flex-direction: row-reverse;
    padding-left: 10px;
}

/* Text & Specialty List */
.doctor-info-text {
    z-index: 10;
    align-self: center;
}

.doctor-role-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-navy);
    background-color: rgba(15, 41, 74, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.doctor-role-tag--female {
    color: var(--clr-green);
    background-color: rgba(22, 92, 53, 0.08);
}

.doctor-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.doctor-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-txt-sub);
    margin-left: 4px;
}

.specialty-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specialty-list li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-txt-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.bullet.spine {
    background-color: var(--clr-navy);
}

.bullet.skin {
    background-color: var(--clr-green);
}

/* Image wrapper (No circular frame, 누끼 융합형) */
.doctor-image-wrapper {
    width: 190px;
    height: 240px;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    overflow: hidden;
    /* Soft bottom fade-out using mask */
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.doctor-profile:hover .doctor-img {
    transform: scale(1.03);
}

.hero-center-badge-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.doctor-couple-wrapper {
    display: none; /* Hidden on PC by default, visible on Mobile */
}

/* Center badge - Luxury Emblem Style */
.hero-center-badge {
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(191, 163, 122, 0.12);
    border: 2px solid var(--clr-gold);
    z-index: 20;
    position: relative;
}

/* Gold wreath decorations using CSS borders */
.hero-center-badge::before {
    content: '';
    position: absolute;
    top: -6px;
    bottom: -6px;
    left: -6px;
    right: -6px;
    border: 1px dashed var(--clr-gold-dark);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

.badge-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gold-dark);
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.badge-subtitle {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-navy);
    margin: 2px 0;
}

.youtube-box {
    color: #f61c0d;
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 3px 0;
}

.youtube-play-icon {
    width: 16px;
    height: 16px;
}

.youtube-subs {
    font-weight: 800;
    color: #e52d27;
}

.badge-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-txt-sub);
}

.since-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-top: 2px;
}

/* =============================================================================
   ⑤ BUTTONS — Action Grid (Modern brand buttons)
   ============================================================================= */
.action-grid-section {
    padding: 15px 20px;
    background-color: var(--clr-bg);
}

.action-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.action-btn {
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(15, 41, 74, 0.05);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 41, 74, 0.1);
    filter: brightness(1.05);
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-texts {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 10px;
}

.btn-main-txt {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.btn-sub-txt {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 1px;
}

.btn-arrow {
    display: flex;
    align-items: center;
    opacity: 0.7;
}

/* Action button themes (시안 기반 브랜드 컬러링) */
.action-btn--naver {
    background-color: #00C73C;
}

.action-btn--kakao {
    background-color: #FEE500;
    color: #3A1D1D;
    border-color: rgba(0, 0, 0, 0.05);
}
.action-btn--kakao .btn-sub-txt {
    color: rgba(58, 29, 29, 0.8);
}

.action-btn--phone {
    background-color: var(--clr-navy);
}

.action-btn--chat {
    background-color: #0066cc;
}

.action-btn--map {
    background-color: #165c35;
}

/* =============================================================================
   ⑥ SUB-BUTTONS — Secondary Link Row (고급 배지화)
   ============================================================================= */
.sub-buttons-section {
    background-color: var(--clr-white);
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.sub-buttons-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.sub-btn {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border-dark);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-txt-main);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.sub-btn:hover {
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
    border-color: var(--clr-gold);
    transform: translateY(-1px);
}

/* =============================================================================
   ⑦ CLINICS — Medical Column Cards (인테리어 융합형)
   ============================================================================= */
.clinic-cards-section {
    padding: 30px 20px;
    background-color: var(--clr-bg);
}

.clinic-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clinic-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.clinic-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(15, 41, 74, 0.02);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.clinic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 41, 74, 0.06);
}

.card-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.card-header-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-header-icon.skin {
    background-color: rgba(22, 92, 53, 0.1);
    color: var(--clr-green);
}

.card-header-icon.digestive {
    background-color: rgba(0, 102, 204, 0.1);
    color: #0066cc;
}

.card-header-icon.spine {
    background-color: rgba(15, 41, 74, 0.1);
    color: var(--clr-navy);
}

.card-header-icon.news {
    background-color: rgba(191, 163, 122, 0.1);
    color: var(--clr-gold-dark);
}

.card-text-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--clr-navy);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--clr-txt-sub);
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
}

.card-more-btn {
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-navy);
    padding: 2px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--clr-border-dark);
    z-index: 2;
    transition: var(--transition);
}

.card-more-btn:hover {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
}

/* =============================================================================
   ⑧ DETAILS — Hours, Map & Parking (컴팩트 안내 그리드)
   ============================================================================= */
.details-section {
    padding: 30px 20px;
    background-color: var(--clr-white);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    gap: 20px;
}

.detail-box {
    background-color: var(--clr-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.box-title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 6px;
}

.box-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-navy);
}

/* 요일별 진료시간 스타일 */
.detail-hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.detail-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    line-height: 1.4;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.03);
    padding-bottom: 3px;
}

.detail-hours-list .day {
    font-weight: 700;
    color: var(--clr-txt-main);
}

.detail-hours-list .day--night {
    color: #e52d27;
}

.detail-hours-list .day--holiday {
    color: #e52d27;
}

.detail-hours-list .time {
    font-weight: 600;
    color: var(--clr-txt-sub);
    text-align: right;
}

.detail-hours-list .time .note {
    font-size: 0.75rem;
    color: var(--clr-txt-light);
    font-style: normal;
    display: block;
}

.hours-remarks {
    font-size: 0.75rem;
    color: var(--clr-txt-light);
    line-height: 1.45;
    margin-top: 6px;
    background-color: var(--clr-white);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* 네이버 지도 영역 스타일 */
.location-address {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.location-address strong {
    display: block;
    color: var(--clr-navy);
}

.location-address .sub-address {
    font-size: 0.78rem;
    color: var(--clr-txt-light);
    display: block;
}

.map-embed-wrapper {
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-link-overlay {
    display: block;
    width: 100%;
    height: 100%;
}

/* 가상 약도 뷰포트 스타일 (프리미엄 네이버 지도 배너) */
.styled-static-map {
    width: 100%;
    height: 100%;
    background-color: #e4edf3;
    background-image: radial-gradient(circle at 50% 50%, #ffffff 8%, transparent 8%), radial-gradient(circle at 30% 70%, #d8e5ee 25%, transparent 25%);
    background-size: 20px 20px, 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.styled-static-map::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #388e3c;
    top: 40%;
    left: 20%;
    transform: rotate(15deg);
}

.styled-static-map::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #1565c0;
    top: 50%;
    left: 40%;
    transform: rotate(-10deg);
}

.styled-static-map .pin-icon {
    font-size: 1.4rem;
    z-index: 2;
    animation: mapPinBounce 2s infinite ease-in-out;
}

.styled-static-map .map-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1976d2;
    margin-top: 4px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@keyframes mapPinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.map-actions-row {
    display: flex;
    gap: 8px;
}

.map-btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 8px;
    transition: var(--transition);
}

.map-btn--naver {
    background-color: #00C73C;
    color: var(--clr-white);
}

.map-btn--route {
    background-color: var(--clr-white);
    color: var(--clr-txt-main);
    border: 1px solid var(--clr-border-dark);
}

.map-btn:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

/* 주차 및 지하철 세부 사항 */
.parking-info-block h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 2px;
}

.parking-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--clr-txt-sub);
}

.hours-table th, .hours-table td {
    padding: 6px 0;
    font-size: 0.9rem;
    text-align: left;
}

.hours-table th {
    font-weight: 700;
    color: var(--clr-txt-main);
    width: 90px;
}

.hours-table td {
    font-weight: 400;
    color: var(--clr-txt-sub);
}

.closed-day th, .closed-day td {
    color: #d32f2f !important;
}

/* Location Address & Map */
.location-address {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--clr-txt-main);
    margin-bottom: 12px;
}

.sub-address {
    font-size: 0.82rem;
    color: var(--clr-txt-light);
    font-weight: 400;
}

.map-view-btn-wrap {
    margin-bottom: 12px;
}

.detail-action-btn {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.detail-action-btn:hover {
    background-color: var(--clr-navy-dark);
}

.detail-action-btn--white {
    background-color: var(--clr-white);
    color: var(--clr-txt-sub);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-action-btn--white:hover {
    background-color: var(--clr-bg);
}

.map-visual-mockup {
    background-color: #f1f3f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mockup-pin {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

.mockup-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--clr-navy);
    background-color: var(--clr-white);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    box-shadow: var(--shadow-sm);
}

.mockup-sublabel {
    font-size: 0.65rem;
    color: var(--clr-txt-light);
    margin-top: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Parking */
.parking-description {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-txt-sub);
    margin-bottom: 20px;
}

.parking-action-wrap {
    margin-top: auto;
}

/* =============================================================================
   ⑨ SINGLE POST / CLINICAL COLUMN VIEW
   ============================================================================= */
.column-detail-main {
    padding: 50px 20px;
    background-color: var(--clr-bg);
}

.column-detail-container {
    max-width: 820px;
    margin: 0 auto;
}

.column-detail-article {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.column-detail-category {
    margin-bottom: 15px;
}

.category-badge {
    font-size: 0.82rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-white);
}

.category-badge.skin {
    background-color: var(--clr-green);
}

.category-badge.digestive {
    background-color: #0d6efd;
}

.category-badge.spine-pain {
    background-color: var(--clr-navy);
}

.category-badge.news {
    background-color: #f59e0b;
}

.column-detail-header {
    border-bottom: 2px solid var(--clr-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.column-detail-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--clr-txt-main);
    line-height: 1.4;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.column-detail-meta {
    font-size: 0.88rem;
    color: var(--clr-txt-light);
    font-weight: 600;
    display: flex;
    gap: 15px;
}

/* Meta summary card */
.column-summary-card {
    background-color: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-left: 5px solid var(--clr-navy);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.card-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-navy);
    margin-bottom: 15px;
}

.card-content-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    font-size: 0.95rem;
}

.summary-label {
    font-weight: 800;
    color: var(--clr-txt-main);
}

.summary-value {
    color: var(--clr-txt-sub);
    font-weight: 700;
}

/* Questions Card */
.column-questions-card {
    background-color: var(--clr-yellow-light);
    border: 1px solid #ffe066;
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
}

.yellow-title {
    color: #854d0e;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.question-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #713f12;
}

.q-badge {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    font-size: 0.75rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Greeting Card */
.column-greeting-card {
    background-color: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}

.greeting-avatar-wrap {
    font-size: 2.2rem;
}

.greeting-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.greeting-body {
    font-size: 0.95rem;
    color: var(--clr-txt-sub);
    font-weight: 700;
}

.greeting-signature {
    align-self: flex-end;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--clr-navy);
}

/* TOC Card */
.column-toc-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.toc-title {
    color: var(--clr-txt-main);
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-list li {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list li::before {
    content: "•";
    color: var(--clr-txt-light);
}

/* Content Body */
.column-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--clr-txt-main);
    margin-bottom: 40px;
    font-weight: 500;
}

.column-detail-content p {
    margin-bottom: 20px;
}

.column-detail-content h2, .column-detail-content h3 {
    color: var(--clr-navy);
    margin: 35px 0 15px 0;
    font-weight: 800;
}

/* Bottom Booking Card */
.column-bottom-booking-card {
    background-color: var(--clr-navy-light);
    border: 2px solid var(--clr-navy);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.booking-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-navy-dark);
    margin-bottom: 8px;
}

.booking-card-desc {
    font-size: 0.95rem;
    color: var(--clr-txt-sub);
    font-weight: 700;
    margin-bottom: 25px;
}

.booking-button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.booking-btn {
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.booking-btn:hover {
    filter: brightness(0.95);
}

.booking-btn--naver {
    background-color: var(--clr-green);
    color: var(--clr-white);
}

.booking-btn--kakao {
    background-color: var(--clr-yellow);
    color: #1a1a1a;
}

.booking-btn--phone {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.booking-card-info {
    border-top: 1px dashed var(--clr-border-dark);
    padding-top: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item {
    font-size: 0.88rem;
    color: var(--clr-txt-sub);
    font-weight: 600;
}

/* =============================================================================
   ⑩ ARCHIVE / CATEGORY LISTING VIEW
   ============================================================================= */
.archive-main {
    padding: 60px 20px;
    background-color: var(--clr-bg);
}

.archive-container {
    max-width: 1000px;
    margin: 0 auto;
}

.archive-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--clr-border);
    padding-bottom: 20px;
}

.archive-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clr-navy);
    margin-bottom: 10px;
}

.archive-description {
    font-size: 1.05rem;
    color: var(--clr-txt-sub);
    font-weight: 600;
}

/* Posts grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.archive-post-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.archive-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-thumbnail-wrapper {
    height: 200px;
    background-color: var(--clr-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-thumbnail-fallback {
    font-size: 3.5rem;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-date {
    font-size: 0.82rem;
    color: var(--clr-txt-light);
    font-weight: 700;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-txt-main);
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--clr-txt-sub);
    margin-bottom: 20px;
    font-weight: 500;
}

.card-readmore-btn {
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--clr-navy);
}

/* Pagination */
.archive-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.archive-pagination .navigation {
    display: flex;
    gap: 8px;
}

.archive-pagination a, .archive-pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    font-weight: 700;
    background-color: var(--clr-white);
}

.archive-pagination span.current {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
}

.archive-pagination a:hover {
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
}

.no-posts-found {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.no-posts-msg {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-txt-sub);
    margin-bottom: 20px;
}

.back-home-btn {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 800;
    display: inline-block;
}

/* =============================================================================
   ⑪ AI PAGE VIEW (/for-ai)
   ============================================================================= */
.ai-page-wrapper {
    padding: 60px 20px;
    background-color: var(--clr-bg);
}

.ai-page-main {
    max-width: 800px;
    margin: 0 auto;
}

.ai-page-article {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.ai-page-header {
    border-bottom: 2px solid var(--clr-border);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.ai-page-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-txt-main);
}

.ai-page-meta {
    font-size: 0.88rem;
    color: var(--clr-txt-light);
    margin-top: 5px;
    font-weight: 700;
}

.ai-page-content {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--clr-txt-sub);
    font-weight: 500;
}

.ai-page-content p {
    margin-bottom: 15px;
}

.ai-page-divider {
    border: none;
    border-top: 2px dashed var(--clr-border);
    margin: 35px 0;
}

.ai-quick-specs h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-navy);
    margin-bottom: 15px;
}

.ai-specs-table th, .ai-specs-table td {
    padding: 12px 15px;
    border: 1px solid var(--clr-border);
    font-size: 0.95rem;
}

.ai-specs-table th {
    background-color: var(--clr-bg);
    font-weight: 800;
    width: 140px;
    text-align: left;
}

.ai-specs-table td {
    font-weight: 500;
    color: var(--clr-txt-main);
}

.ai-specs-table ul {
    list-style: disc;
    padding-left: 20px;
}

/* =============================================================================
   ⑫ FOOTER
   ============================================================================= */
.site-footer {
    background-color: var(--clr-navy-dark);
    color: #cfd8dc;
    padding: 50px 20px;
    border-top: 4px solid var(--clr-navy);
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-white);
}

.footer-nav-sep {
    color: #455a64;
}

.footer-info {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #b0bec5;
    font-weight: 600;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: #78909c;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #90a4ae;
}

/* =============================================================================
   ⑬ MOBILE RESPONSIVE MEDIA QUERIES
   ============================================================================= */
@media (max-width: 1024px) {
    /* Hero */
    .clinic-hero__inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .doctor-profile {
        height: auto;
        padding-bottom: 0;
    }
    
    .hero-center-badge {
        margin: 15px auto;
        width: 180px;
        height: 180px;
    }
    
    /* Action Buttons */
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Clinics */
    .clinic-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Details */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 10px 20px;
    }
    
    .logo-title {
        font-size: 1.15rem;
    }
    
    .logo-spine-icon {
        width: 36px;
        height: 36px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--clr-white);
        border-bottom: 2px solid var(--clr-navy);
        box-shadow: var(--shadow-lg);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: stretch;
    }
    
    .nav-menu li {
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
    }
    
    /* Hero Doctor Images */
    .doctor-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
        height: auto;
    }
    
    .doctor-info-text {
        align-self: center;
        padding-bottom: 20px;
    }
    
    .specialty-list {
        align-items: center;
    }
    
    .doctor-image-wrapper {
        width: 150px;
    }
    
    /* Actions */
    .action-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-btn {
        padding: 15px 20px;
    }
    
    /* Sub Buttons */
    .sub-buttons-container {
        gap: 10px;
    }
    
    .sub-btn {
        flex: 1 1 45%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.88rem;
    }
    
    /* Clinics */
    .clinic-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Single post */
    .column-detail-article {
        padding: 25px;
    }
    
    .column-detail-title {
        font-size: 1.6rem;
    }
    
    .summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .column-greeting-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .booking-button-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Archive */
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-title {
        font-size: 1.8rem;
    }
}

/* =============================================================================
   ⑥ CLINICAL COLUMN DETAIL STYLES (진료 칼럼 고도화 리뉴얼)
   ============================================================================= */

/* 1. 반응형 표 (Table) 스타일링 */
figure.wp-block-table {
    overflow-x: auto;
    margin: 30px 0;
    max-width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border-dark);
}

figure.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

figure.wp-block-table th {
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
    font-weight: 800;
    padding: 14px 18px;
    border: 1px solid var(--clr-border-dark);
    font-family: var(--font-sans);
}

figure.wp-block-table td {
    padding: 14px 18px;
    border: 1px solid var(--clr-border);
    color: var(--clr-txt-main);
    line-height: 1.6;
}

figure.wp-block-table tr:nth-child(even) td {
    background-color: rgba(197, 168, 128, 0.03);
}

/* 2. 글 상세 메타 정보 영역 */
.column-detail-meta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-top: 20px;
    padding: 18px 24px;
    background-color: var(--clr-gold-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-dark);
    font-size: 0.92rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    color: var(--clr-txt-light);
    font-weight: 600;
}

.meta-value {
    color: var(--clr-txt-main);
}

.meta-value.font-bold {
    font-weight: 800;
    color: var(--clr-navy);
}

.meta-value.highlight-text {
    color: var(--clr-green-dark);
    font-weight: 800;
    background-color: var(--clr-green-light);
    padding: 2px 8px;
    border-radius: 4px;
}

/* 3. 상단 핵심 정보 3단 요약 카드 */
.premium-summary-section {
    margin: 35px 0;
}

.premium-summary-card {
    background-color: #ffffff;
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    border-top: 5px solid var(--clr-gold);
}

.summary-badge {
    display: inline-block;
    background-color: var(--clr-gold);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    letter-spacing: -0.2px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.summary-grid-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--clr-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--clr-border);
}

.grid-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.grid-icon {
    font-size: 1.15rem;
}

.grid-title {
    font-weight: 800;
    color: var(--clr-navy);
    font-size: 1rem;
    font-family: var(--font-sans);
}

.grid-item-body {
    font-size: 0.92rem;
    color: var(--clr-txt-sub);
    line-height: 1.65;
}

/* 4. 클릭 가능한 목차 리스트 보완 */
.column-toc-card {
    margin: 35px 0;
}

.column-toc-card .toc-list li a {
    color: var(--clr-navy);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px dotted var(--clr-border-dark);
    padding: 6px 0;
    display: inline-block;
    transition: var(--transition);
}

.column-toc-card .toc-list li a:hover {
    color: var(--clr-gold-dark);
    border-bottom-color: var(--clr-gold-dark);
    padding-left: 5px;
}

/* 5. 원장님 인사말 프로필 사진화 */
.column-greeting-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: var(--clr-gold-light);
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 35px 0;
}

.greeting-avatar-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--clr-gold);
    box-shadow: var(--shadow-sm);
}

.greeting-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* 6. 자주 묻는 질문 FAQ 아코디언 */
.column-faq-section {
    margin: 45px 0;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.faq-item {
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-md);
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background-color: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
}

.faq-q-icon {
    background-color: var(--clr-gold);
    color: #ffffff;
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-navy);
}

.faq-answer {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--clr-txt-sub);
    line-height: 1.7;
    background-color: #ffffff;
}

/* 7. 참고자료 박스 */
.column-references-section {
    margin: 45px 0;
}

.references-box {
    background-color: var(--clr-bg);
    border: 1px dashed var(--clr-border-dark);
    border-radius: var(--radius-sm);
    padding: 20px 25px;
    margin-top: 15px;
}

.references-box ul {
    list-style-type: square;
    margin-left: 20px;
}

.references-box li {
    font-size: 0.88rem;
    color: var(--clr-txt-sub);
    margin-bottom: 8px;
    line-height: 1.6;
}

.references-box li:last-child {
    margin-bottom: 0;
}

/* 8. 관련 진료 칼럼 */
.column-related-section {
    margin: 50px 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.related-post-card {
    display: flex;
    gap: 15px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 15px;
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-gold-dark);
}

.related-post-image {
    width: 100px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--clr-border);
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-image .fallback-thumb {
    width: 100%;
    height: 100%;
    background-color: var(--clr-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.related-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-post-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--clr-txt-main);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--clr-txt-light);
}

/* 9. 담당 의료진 상세 소개 카드 */
.column-doctor-profile-card {
    margin: 55px 0;
}

.doc-card-inner {
    display: flex;
    gap: 25px;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border-dark);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-top: 20px;
}

.doc-card-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.doc-card-inner .doc-card-avatar {
    border: 4px solid var(--clr-gold);
}

.doc-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.doc-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-card-name {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--clr-navy);
    margin: 0;
}

.doc-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-gold-dark);
    margin-left: 8px;
}

.doc-card-credentials {
    font-size: 0.88rem;
    color: var(--clr-txt-sub);
    font-weight: 700;
    line-height: 1.5;
}

.doc-card-bio {
    font-size: 0.92rem;
    color: var(--clr-txt-main);
    line-height: 1.6;
}

.doc-card-link-btn {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.doc-card-link-btn:hover {
    background-color: var(--clr-navy);
    color: #ffffff;
    transform: translateX(3px);
}

/* 10. 반응형 미디어 쿼리 추가 */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .doc-card-link-btn {
        align-self: center;
    }
    
    .column-detail-meta-box {
        flex-direction: column;
        gap: 10px;
    }
}

/* 11. 카드 본문 요약문 링크 스타일 */
.card-excerpt-text-link {
    color: var(--clr-txt-sub) !important;
    text-decoration: none !important;
    transition: var(--transition);
    display: block;
}

.card-excerpt-text-link:hover {
    color: var(--clr-gold-dark) !important;
}

/* ==========================================================================
   ADDED: Hospital Intro, Doctor Details & Directions Pages Premium Styles
   ========================================================================== */

/* Subpage Hero & Breadcrumbs default styling correction */
.subpage-main {
    background-color: var(--clr-bg);
    padding-bottom: 80px;
}
.breadcrumb-strip {
    background-color: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
    font-size: 0.85rem;
}
.breadcrumb-strip .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-txt-light);
}
.breadcrumb-strip a {
    color: var(--clr-txt-sub);
    text-decoration: none;
}
.breadcrumb-strip a:hover {
    color: var(--clr-navy);
}
.breadcrumb-strip .sep {
    color: var(--clr-border-dark);
}

/* Base Container */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Hero styling */
.about-hero {
    background: #f4f5f7;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.about-hero__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
}
.about-hero__sub {
    font-size: 1.1rem;
    color: var(--clr-txt-sub);
    font-weight: 400;
}

/* Section Common Title */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.4;
}
.section-title-sub {
    font-size: 1.02rem;
    color: var(--clr-txt-light);
    font-weight: 400;
    margin-top: 6px;
    display: block;
}

/* Grid & Layouts */
.intro-card-primary {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: -24px auto 35px auto;
    position: relative;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}
.intro-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--clr-txt-sub);
    margin: 0;
    text-align: center;
}
.intro-description strong {
    color: var(--clr-navy);
}

/* Clinic Divide Grid */
.clinic-divide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}
.clinic-divide-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.clinic-divide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.clinic-badge {
    align-self: flex-start;
    padding: 5px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 18px;
}
.clinic-badge.navy {
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
}
.clinic-badge.green {
    background-color: var(--clr-green-light);
    color: var(--clr-green);
}
.clinic-divide-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 10px;
}
.clinic-divide-doctor {
    font-size: 0.92rem;
    color: var(--clr-txt-sub);
    margin-bottom: 12px;
}
.clinic-divide-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--clr-txt-sub);
    margin-bottom: 25px;
    flex-grow: 1;
}
.clinic-card-links {
    display: flex;
    gap: 10px;
}
.clinic-btn {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    flex: 1;
    transition: var(--transition);
}
.clinic-btn--navy {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}
.clinic-btn--navy:hover {
    background-color: var(--clr-navy-dark);
}
.clinic-btn--green {
    background-color: var(--clr-green);
    color: var(--clr-white);
}
.clinic-btn--green:hover {
    background-color: var(--clr-green-dark);
}
.clinic-btn--outline {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--clr-txt-sub);
}
.clinic-btn--outline:hover {
    background-color: var(--clr-bg);
}

.tel-callout-card {
    background-color: var(--clr-gold-light);
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}
.callout-icon {
    font-size: 1.25rem;
}
.callout-text {
    font-size: 0.98rem;
    color: var(--clr-txt-sub);
    font-weight: 600;
}

/* Promises section */
.bg-soft-gray {
    background-color: var(--clr-bg);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 70px 0;
}
.promises-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.promise-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}
.promise-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 12px;
}
.promise-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 12px;
}
.promise-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--clr-txt-sub);
    margin: 0;
}

/* Reviews banner */
.sub-buttons-section {
    padding: 50px 0;
    background-color: var(--clr-white);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}
.sub-buttons-header-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 20px;
}
.sub-buttons-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.sub-buttons-flex .sub-btn {
    background-color: var(--clr-bg);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 10px 20px;
    color: var(--clr-txt-sub);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.sub-buttons-flex .sub-btn:hover {
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
    transform: translateY(-1px);
    border-color: rgba(15, 41, 74, 0.1);
}

/* ==========================================
   DOCTOR PAGES STYLING (Premium Minimal)
   ========================================== */
.doc-profile-hero {
    color: var(--clr-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.doc-profile-hero--navy {
    background: var(--clr-navy-dark);
}
.doc-profile-hero--green {
    background: var(--clr-green-dark);
}
.doc-hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}
.doc-hero-img-wrap {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.doc-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.doc-hero-text {
    flex-grow: 1;
}
.doc-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 10px;
    background-color: rgba(255,255,255,0.1);
}
.doc-name-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.doc-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 18px 0;
    font-weight: 400;
}
.doc-quote {
    font-size: 0.98rem;
    line-height: 1.65;
    opacity: 0.9;
    margin: 0;
    padding-left: 12px;
    border-left: 2px solid rgba(255,255,255,0.3);
    word-break: keep-all;
    font-weight: 400;
}

/* Doctor Details Main Grid */
.doc-details-content {
    padding: 60px 0;
}
.doc-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 45px;
}
.doc-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.doc-card-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.doc-card-header.navy {
    background-color: var(--clr-navy-light);
}
.doc-card-header.green {
    background-color: var(--clr-green-light);
}
.card-icon {
    font-size: 1.15rem;
}
.doc-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin: 0;
}
.doc-card-body {
    padding: 20px;
}

/* Specialty list in doctor profile */
.specialty-block {
    margin-bottom: 18px;
}
.specialty-block:last-child {
    margin-bottom: 0;
}
.specialty-block-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
    padding-left: 8px;
    border-left: 3.5px solid var(--clr-navy);
}
.doc-card-header.green + .doc-card-body .specialty-block-title {
    color: var(--clr-green);
    border-left-color: var(--clr-green);
}
.specialty-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.specialty-bullet-list li {
    font-size: 0.9rem;
    color: var(--clr-txt-sub);
    padding-left: 12px;
    position: relative;
    margin-bottom: 5px;
}
.specialty-bullet-list li::before {
    content: "•";
    color: var(--clr-txt-light);
    position: absolute;
    left: 2px;
}

/* Lists */
.career-list, .media-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.career-list li, .media-list li {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--clr-txt-sub);
    position: relative;
    padding-left: 12px;
    margin-bottom: 6px;
}
.career-list li::before, .media-list li::before {
    content: "•";
    color: var(--clr-border-dark);
    position: absolute;
    left: 2px;
}

/* Theses and Publications */
.thesis-item {
    margin-bottom: 14px;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    padding-bottom: 14px;
}
.thesis-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.thesis-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.72rem;
    font-weight: 600;
    background-color: var(--clr-bg);
    color: var(--clr-txt-sub);
    border-radius: 4px;
    margin-bottom: 4px;
    border: 1px solid rgba(0,0,0,0.04);
}
.thesis-title {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--clr-txt-main);
    margin: 0;
}
.paper-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.paper-list li {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--clr-txt-sub);
    padding-left: 12px;
    position: relative;
    margin-bottom: 6px;
}
.paper-list li::before {
    content: "▫";
    color: var(--clr-navy);
    position: absolute;
    left: 2px;
}

/* Accordion for Papers */
.papers-accordion {
    margin-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 12px;
}
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-navy);
    cursor: pointer;
    list-style: none;
    outline: none;
    user-select: none;
}
.accordion-trigger::-webkit-details-marker {
    display: none;
}
.trigger-icon {
    transition: transform 0.2s ease;
}
.papers-accordion[open] .trigger-icon {
    transform: rotate(180deg);
}
.accordion-content {
    margin-top: 10px;
    animation: slideDown 0.25s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Doctor profile CTA */
.doc-bottom-cta {
    text-align: center;
    margin-top: 20px;
}
.cta-link-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-white);
    text-decoration: none;
    border-radius: 30px;
    box-shadow: none;
    transition: var(--transition);
}
.cta-link-btn--green {
    background-color: var(--clr-green);
}
.cta-link-btn--green:hover {
    background-color: var(--clr-green-dark);
    transform: translateY(-1px);
}
.cta-link-btn--navy {
    background-color: var(--clr-navy);
}
.cta-link-btn--navy:hover {
    background-color: var(--clr-navy-dark);
    transform: translateY(-1px);
}

/* ==========================================
   DIRECTIONS PAGE STYLING (Slim & Clean)
   ========================================== */
.directions-alert-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin: 30px auto -20px auto;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}
.alert-lightbulb {
    font-size: 1.25rem;
    line-height: 1;
}
.alert-desc-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--clr-txt-sub);
    margin: 0;
}

/* Hours section details */
.directions-hours-section {
    padding: 65px 0 45px 0;
}
.directions-table-wrapper {
    overflow-x: auto;
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-md);
    box-shadow: none;
    margin-bottom: 20px;
}
.directions-hours-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: center;
}
.directions-hours-table th, .directions-hours-table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.directions-hours-table th {
    background-color: var(--clr-bg);
    color: var(--clr-txt-main);
    font-weight: 700;
}
.directions-hours-table td {
    color: var(--clr-txt-sub);
}
.td-clinic-name {
    padding-left: 16px !important;
    text-align: left;
    background-color: var(--clr-bg);
}
.td-clinic-name.navy {
    border-left: 3px solid var(--clr-navy);
}
.td-clinic-name.green {
    border-left: 3px solid var(--clr-green);
}
.sat-hour {
    font-weight: 600;
    color: #e65100 !important;
}
.night-hour {
    font-weight: 600;
    color: var(--clr-navy) !important;
}
.closed-th {
    color: #c62828 !important;
}
.closed-td {
    color: #c62828 !important;
    font-weight: 600;
    background-color: #fff8f8;
}
.doc-sub {
    font-size: 0.72rem;
    color: var(--clr-txt-light);
}
.hours-notes-list {
    margin: 0;
    padding-left: 16px;
}
.hours-notes-list li {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--clr-txt-sub);
    margin-bottom: 3px;
}

/* Booking Cards */
.directions-booking-section {
    padding: 60px 0;
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.booking-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.booking-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-txt-main);
    margin-bottom: 12px;
}
.booking-phone-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
}
.booking-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--clr-txt-sub);
    margin-bottom: 18px;
    flex-grow: 1;
}
.booking-doc-rules {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.booking-doc-rules li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--clr-txt-sub);
    margin-bottom: 6px;
    padding-left: 10px;
    position: relative;
}
.booking-doc-rules li::before {
    content: "▫";
    position: absolute;
    left: 0;
    color: var(--clr-txt-light);
}
.booking-btn {
    display: block;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}
.booking-btn--phone {
    background-color: var(--clr-bg);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--clr-txt-sub);
}
.booking-btn--phone:hover {
    background-color: var(--clr-border);
}
.booking-btn--naver {
    background-color: var(--clr-green);
    color: var(--clr-white);
}
.booking-btn--naver:hover {
    background-color: var(--clr-green-dark);
}
.booking-btn--kakao {
    background-color: var(--clr-yellow);
    color: #3c1e1e;
}
.booking-btn--kakao:hover {
    background-color: #ffd600;
}

/* Untact Telemedicine Section */
.directions-untact-section {
    padding: 60px 0;
}
.untact-info-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}
.untact-lead {
    font-size: 1.1rem;
    text-align: center;
    color: var(--clr-txt-main);
    margin-bottom: 30px;
    word-break: keep-all;
    font-weight: 600;
}
.untact-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}
.untact-step {
    background-color: var(--clr-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}
.untact-step-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
    display: block;
}
.untact-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-txt-main);
    margin-bottom: 8px;
}
.untact-step-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--clr-txt-sub);
    margin: 0;
}
.untact-notice-box {
    background-color: var(--clr-gold-light);
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}
.untact-notice-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 6px;
}
.untact-notice-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--clr-txt-sub);
    margin: 0;
}

/* Map Location Section */
.directions-map-section {
    padding: 60px 0;
}
.map-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: stretch;
}
.map-text-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}
.map-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 12px;
}
.map-addr-text {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--clr-txt-main);
    margin-bottom: 4px;
}
.map-addr-sub {
    font-size: 0.85rem;
    color: var(--clr-txt-light);
    margin-bottom: 20px;
}
.map-btn-row {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.map-go-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    flex: 1;
    transition: var(--transition);
}
.map-go-btn--naver {
    background-color: var(--clr-green-light);
    color: var(--clr-green);
    border: 1px solid rgba(22, 92, 53, 0.1);
}
.map-go-btn--naver:hover {
    background-color: var(--clr-green);
    color: var(--clr-white);
}
.map-go-btn--google {
    background-color: var(--clr-navy-light);
    color: var(--clr-navy);
    border: 1px solid rgba(15, 41, 74, 0.1);
}
.map-go-btn--google:hover {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}
.map-desc-blocks {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.map-desc-block {
    padding-left: 20px;
    position: relative;
}
.map-desc-icon {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.95rem;
}
.map-desc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-txt-main);
    margin-bottom: 3px;
}
.map-desc-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--clr-txt-sub);
    margin: 0;
}
.map-iframe-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    min-height: 350px;
    background-color: #eee;
}
.map-iframe-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* Checklist Section */
.directions-checklist-section {
    padding: 60px 0;
}
.checklist-card {
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}
.checklist-lead {
    font-size: 1.05rem;
    text-align: center;
    color: var(--clr-txt-main);
    margin-bottom: 25px;
    font-weight: 600;
}
.checklist-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checklist-ul li {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--clr-txt-sub);
    padding-left: 25px;
    position: relative;
}
.checklist-ul li::before {
    content: "✓";
    color: var(--clr-green);
    font-weight: bold;
    position: absolute;
    left: 5px;
    font-size: 1.05rem;
}

/* =============================================================================
   ④ ADDITIONAL STYLES FOR PREMIUM FEATURES (TOC, FAQ, MOBILE CTA)
   ============================================================================= */

/* Screen Reader Only standard utility (P1-4) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Bottom Sticky CTA Bar (P1-7) */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--clr-txt-main);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    height: 100%;
    gap: 4px;
    transition: var(--transition);
}

.mobile-cta-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-cta-btn--phone {
    color: var(--clr-navy);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-cta-btn--kakao {
    background-color: #3C1E1E;
    color: #FEE500;
}

.mobile-cta-btn--booking {
    background-color: var(--clr-primary, #1B4C30);
    color: var(--clr-white);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: grid;
    }
    body {
        padding-bottom: 60px; /* Prevent bottom content cutoff */
    }
}

/* Details & Summary Premium Accordion Styles (P1-6) */
details.papers-accordion,
details.faq-accordion-item {
    border: 1px solid var(--clr-border-dark);
    background-color: var(--clr-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

details.papers-accordion[open],
details.faq-accordion-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--clr-gold);
}

/* Hide default disclosure triangle */
details.papers-accordion summary::-webkit-details-marker,
details.faq-accordion-item summary::-webkit-details-marker {
    display: none;
}
details.papers-accordion summary,
details.faq-accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
    outline: none;
    transition: var(--transition);
}

details.papers-accordion summary:hover,
details.faq-accordion-item summary:hover {
    background-color: var(--clr-gold-light);
}

.faq-q-icon {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--clr-gold);
    margin-right: 8px;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    color: var(--clr-navy);
    margin: 0;
    text-align: left;
}

.faq-arrow-icon,
.trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--clr-txt-light);
}

details[open] .faq-arrow-icon,
details[open] .trigger-icon {
    transform: rotate(90deg);
    color: var(--clr-gold);
}

.faq-accordion-content,
.accordion-content {
    padding: 16px 20px;
    background-color: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--clr-txt-sub);
    word-break: keep-all;
}

/* TOC (Table of Contents) Premium Styling (P1-6) */
.column-toc-card {
    background-color: var(--clr-gold-light);
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.column-toc-card .toc-title {
    font-size: 1.1rem;
    color: var(--clr-navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.column-toc-card .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.column-toc-card .toc-list li a {
    font-size: 0.96rem;
    color: var(--clr-txt-main);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 4px 0;
}

.column-toc-card .toc-list li a:hover {
    color: var(--clr-gold-dark);
    padding-left: 4px;
}

/* Keep-all styling for all main reading columns (P1-4) */
.column-detail-content,
.about-description,
.location-address {
    word-break: keep-all;
}

/* =============================================================================
   2026-07 HOME VISUAL — supplied reference artwork adaptation
   ============================================================================= */
:root {
    --home-max-width: 1520px;
    --clr-navy: #06478f;
    --clr-navy-dark: #06366f;
    --clr-green: #16863b;
}

.header-container,
.clinic-hero__inner,
.action-grid-container,
.sub-buttons-container,
.clinic-cards-container,
.details-container {
    max-width: var(--home-max-width);
}

.site-header {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(6, 71, 143, 0.08);
}

.header-container {
    min-height: 82px;
    padding: 12px 34px;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-navy);
}

.site-logo-mark {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
}

.site-logo-mark svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.site-logo-mark circle:first-child {
    fill: rgba(6, 71, 143, 0.03);
    stroke: currentColor;
    stroke-width: 1.5;
}

.site-logo-mark path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.site-logo-mark circle:not(:first-child) {
    fill: currentColor;
}

.site-logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-logo-copy strong {
    font-size: clamp(1.2rem, 1.75vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.site-logo-copy i {
    padding: 0 0.12em;
    font-style: normal;
    color: #315d90;
}

.site-logo-copy small {
    margin-top: 7px;
    padding-left: 2px;
    color: #4d5660;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.nav-menu {
    gap: 4px;
}

.nav-menu a {
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 700;
}

.menu-kakao-btn a {
    margin-left: 8px;
    padding: 11px 18px;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.clinic-hero {
    min-height: 310px;
    padding: 0 30px;
    background:
        radial-gradient(circle at 12% 45%, rgba(168, 211, 250, 0.46), transparent 30%),
        radial-gradient(circle at 90% 55%, rgba(191, 231, 173, 0.54), transparent 31%),
        linear-gradient(90deg, #eff7ff 0%, #ffffff 43%, #ffffff 57%, #f3faef 100%);
}

.clinic-hero::before,
.clinic-hero::after {
    content: '';
    position: absolute;
    bottom: -160px;
    width: 420px;
    height: 250px;
    border-radius: 50%;
    opacity: 0.6;
}

.clinic-hero::before {
    left: -80px;
    background: #74aee2;
    transform: rotate(12deg);
}

.clinic-hero::after {
    right: -80px;
    background: #8bc76e;
    transform: rotate(-12deg);
}

.clinic-hero__inner {
    min-height: 310px;
    grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr);
    gap: 10px;
}

.doctor-profile {
    height: 310px;
}

.doctor-profile--left,
.doctor-profile--right {
    padding: 0;
}

.doctor-info-text {
    min-width: 190px;
}

.doctor-role-tag {
    padding: 0;
    margin-bottom: 4px;
    background: transparent;
    font-size: 0.82rem;
}

.doctor-name {
    margin-bottom: 14px;
    font-size: 1.7rem;
}

.doctor-profile--right .doctor-name {
    color: var(--clr-green);
}

.specialty-list {
    gap: 10px;
}

.specialty-list li {
    font-size: 0.93rem;
    letter-spacing: -0.02em;
}

.bullet {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border: 1px solid currentColor;
    background-color: currentColor !important;
    box-shadow: inset 0 0 0 7px currentColor;
    opacity: 0.94;
}

.bullet.spine { color: var(--clr-navy); }
.bullet.skin { color: var(--clr-green); }

.doctor-image-wrapper {
    width: 225px;
    height: 310px;
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px 22px 8px 8px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(10, 39, 70, 0.14);
    -webkit-mask-image: none;
    mask-image: none;
}

.doctor-img {
    opacity: 1;
    border-radius: 17px 17px 4px 4px;
    object-fit: cover;
}

.doctor-image-wrapper--male .doctor-img {
    object-position: 62% center;
}

.doctor-image-wrapper--female .doctor-img {
    object-position: 56% center;
}

.hero-center-badge {
    width: 250px;
    height: auto;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-center-badge::before {
    content: '';
    position: static;
    width: 100%;
    height: 1px;
    margin-bottom: 7px;
    border: 0;
    border-radius: 0;
    opacity: 1;
    background: linear-gradient(90deg, transparent 0 12%, #d6a13f 12% 36%, transparent 36% 64%, #d6a13f 64% 88%, transparent 88%);
}

.badge-title {
    width: 100%;
    margin: 0 0 2px;
    color: #151515;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.badge-subtitle {
    margin: 0 0 20px;
    color: #111;
    font-size: 1.45rem;
}

.youtube-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    font-size: 0.9rem;
    font-weight: 800;
}

.youtube-play-icon {
    width: 23px;
    height: 23px;
}

.youtube-subs {
    margin-top: 4px;
    color: #0d0d0d;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.badge-tag {
    margin-top: 2px;
    color: #282828;
    font-size: 1rem;
}

.since-tag {
    width: 100%;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(206, 143, 36, 0.65);
    color: #bd7413;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

.action-grid-section {
    padding: 22px 30px 9px;
    background: #fff;
}

.action-grid {
    gap: 24px;
}

.action-btn {
    min-height: 84px;
    padding: 14px 22px;
    border-radius: 11px;
}

.btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 9px;
}

.btn-icon svg {
    width: 30px;
    height: 30px;
}

.btn-main-txt { font-size: 1.08rem; }
.btn-sub-txt { font-size: 0.82rem; }

.sub-buttons-section {
    padding: 8px 30px 14px;
}

.sub-buttons-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.sub-btn {
    justify-content: center;
    min-height: 48px;
    padding: 9px 14px;
    font-size: 0.93rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.clinic-cards-section,
.details-section {
    padding-left: 30px;
    padding-right: 30px;
}

.clinic-cards-grid {
    gap: 18px;
}

.clinic-card {
    min-height: 150px;
}

@media (max-width: 1240px) {
    .site-logo-copy strong { font-size: 1.35rem; }
    .site-logo-copy small { font-size: 0.72rem; }
    .nav-menu a { padding: 9px 10px; font-size: 0.9rem; }
    .clinic-hero__inner { grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr); }
    .doctor-image-wrapper { width: 190px; }
    .doctor-info-text { min-width: 170px; }
    .specialty-list li { font-size: 0.82rem; }
    .hero-center-badge { width: 210px; }
    .action-grid, .sub-buttons-container { gap: 12px; }
    .action-btn { padding: 12px 14px; }
    .btn-icon { width: 42px; height: 42px; }
}

@media (max-width: 1024px) {
    .clinic-hero { padding-top: 24px; padding-bottom: 24px; }
    .clinic-hero__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: 'center center' 'left right';
        gap: 18px;
    }
    .doctor-profile--left { grid-area: left; }
    .hero-center-badge-wrap { grid-area: center; }
    .doctor-profile--right { grid-area: right; }
    .doctor-profile {
        min-height: 270px;
        height: 270px;
        padding: 0 18px;
        border: 1px solid rgba(6, 71, 143, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.7);
        overflow: hidden;
    }
    .hero-center-badge { margin: 0 auto; }
    .action-grid { grid-template-columns: repeat(3, 1fr); }
    .action-btn--map, .action-btn--chat { grid-column: span 1; }
    .sub-buttons-container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .header-container { min-height: 66px; padding: 8px 16px; }
    .site-logo-link { gap: 8px; }
    .site-logo-mark { width: 39px; height: 39px; flex-basis: 39px; }
    .site-logo-copy strong { font-size: clamp(0.9rem, 4vw, 1.1rem); }
    .site-logo-copy small { margin-top: 4px; font-size: 0.6rem; }
    .clinic-hero { padding: 20px 14px; }
    .clinic-hero__inner {
        grid-template-columns: 1fr;
        grid-template-areas: 'center' 'left' 'right';
    }
    .doctor-profile {
        flex-direction: row;
        min-height: 220px;
        height: 220px;
        padding: 0 12px 0 18px;
        text-align: left;
    }
    .doctor-profile--right { flex-direction: row-reverse; }
    .doctor-info-text { min-width: 0; padding-bottom: 0; text-align: left; }
    .specialty-list { align-items: flex-start; gap: 7px; }
    .specialty-list li { font-size: 0.78rem; }
    .bullet { width: 19px; height: 19px; flex-basis: 19px; }
    .doctor-image-wrapper {
        width: 142px;
        height: 220px;
    }
    .hero-center-badge { width: min(260px, 85vw); }
    .badge-subtitle { margin-bottom: 12px; }
    .action-grid-section, .sub-buttons-section, .clinic-cards-section, .details-section { padding-left: 14px; padding-right: 14px; }
    .action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .action-btn { min-height: 76px; padding: 10px 12px; }
    .action-btn--phone { grid-column: 1 / -1; }
    .btn-icon { width: 38px; height: 38px; }
    .btn-main-txt { font-size: 0.9rem; }
    .btn-sub-txt { font-size: 0.7rem; }
    .sub-buttons-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sub-btn { min-height: 44px; padding: 8px; font-size: 0.78rem; }
}

@media (max-width: 430px) {
    .site-logo-copy strong { white-space: normal; line-height: 1.05; max-width: 245px; }
    .site-logo-copy small { display: none; }
    .doctor-profile { min-height: 205px; height: 205px; }
    .doctor-image-wrapper { width: 126px; height: 205px; }
    .doctor-name { font-size: 1.3rem; }
    .doctor-role-tag { font-size: 0.7rem; }
    .specialty-list li { font-size: 0.7rem; }
    .action-grid { gap: 8px; }
    .btn-texts { margin-left: 7px; }
    .btn-arrow { display: none; }
}

/* =============================================================================
   2026-07 COMPACT ONE-PAGE V3
   ============================================================================= */
.home {
    line-height: 1.42;
}

.home .header-container {
    min-height: 68px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.home .site-logo-mark {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
}

.home .site-logo-copy strong {
    font-size: clamp(1.12rem, 1.55vw, 1.68rem);
}

.home .site-logo-copy small {
    margin-top: 4px;
    font-size: 0.7rem;
}

.home .nav-menu a {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.home .menu-kakao-btn a {
    padding: 9px 14px;
}

.home .clinic-hero {
    min-height: 258px;
    padding: 0 24px;
}

.home .clinic-hero::before,
.home .clinic-hero::after {
    bottom: -185px;
}

.home .clinic-hero__inner {
    min-height: 258px;
    grid-template-columns: minmax(0, 1fr) 238px minmax(0, 1fr);
    gap: 8px;
}

.home .doctor-profile {
    height: 258px;
}

.home .doctor-info-text {
    min-width: 176px;
}

.home .doctor-role-tag {
    margin-bottom: 2px;
    font-size: 0.73rem;
}

.home .doctor-name {
    margin-bottom: 8px;
    font-size: 1.42rem;
}

.home .doctor-title {
    font-size: 0.8rem;
}

.home .specialty-list {
    gap: 4px;
}

.home .specialty-list li {
    gap: 5px;
    font-size: clamp(0.71rem, 0.78vw, 0.82rem);
    line-height: 1.22;
    white-space: nowrap;
}

.home .bullet {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    box-shadow: inset 0 0 0 6px currentColor;
}

.home .doctor-image-wrapper {
    width: 190px;
    height: 250px;
    border-width: 4px;
    border-radius: 18px 18px 6px 6px;
    box-shadow: 0 10px 28px rgba(10, 39, 70, 0.13);
}

.home .doctor-img {
    border-radius: 14px 14px 3px 3px;
}

.home .hero-center-badge {
    width: 228px;
    height: 248px;
    padding: 38px 20px 24px;
    border: 1px solid rgba(191, 143, 53, 0.25);
    border-radius: 22px;
    background-color: #fffdf9;
    background-image: linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)), url('images/hero-emblem-v2.webp');
    background-position: center;
    background-size: cover;
    box-shadow: 0 13px 32px rgba(134, 93, 28, 0.16);
    overflow: hidden;
}

.home .hero-center-badge::before {
    display: none;
}

.home .hero-center-badge > * {
    position: relative;
    z-index: 2;
}

.home .badge-title {
    margin-bottom: 1px;
    color: #142438;
    font-size: 1.4rem;
    text-shadow: 0 1px 0 rgba(255,255,255,.95);
}

.home .badge-subtitle {
    margin: 0 0 10px;
    font-size: 1.12rem;
    color: #102b4c;
}

.home .youtube-brand {
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    font-size: 0.72rem;
}

.home .youtube-play-icon {
    width: 18px;
    height: 18px;
}

.home .youtube-subs {
    margin-top: 2px;
    font-size: 1.36rem;
}

.home .badge-tag {
    font-size: 0.78rem;
}

.home .since-tag {
    margin-top: 7px;
    padding-top: 6px;
    font-size: 0.7rem;
    background: rgba(255,255,255,.62);
}

.home .action-grid-section {
    padding: 10px 24px 5px;
}

.home .action-grid {
    gap: 14px;
}

.home .action-btn {
    min-height: 68px;
    padding: 9px 15px;
    border-radius: 10px;
}

.home .action-btn--youtube {
    color: #fff;
    background: linear-gradient(135deg, #ff1744, #d9002f);
}

.home .btn-icon {
    width: 43px;
    height: 43px;
    border-radius: 9px;
    overflow: hidden;
}

.home .btn-icon--naver,
.home .btn-icon--kakao,
.home .btn-icon--youtube {
    background: transparent;
}

.home .brand-logo {
    width: 100%;
    height: 100%;
}

.home .btn-main-txt {
    font-size: 0.93rem;
}

.home .btn-sub-txt {
    font-size: 0.7rem;
}

.home .sub-buttons-section {
    padding: 4px 24px 7px;
}

.home .sub-buttons-container {
    gap: 14px;
}

.home .sub-btn {
    min-height: 40px;
    padding: 6px 10px;
    border-width: 1px 1px 3px;
    border-radius: 9px;
    background: linear-gradient(180deg, #fff, #fbfcfe);
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(15, 41, 74, 0.07);
}

.home .sub-btn .ico {
    width: 20px;
    height: 20px;
}

.home .sub-btn--about { border-bottom-color: var(--clr-navy); }
.home .sub-btn--naver { border-bottom-color: #03c75a; }
.home .sub-btn--review { border-bottom-color: #e2a521; }
.home .sub-btn--youtube { border-bottom-color: #ff0033; }
.home .sub-btn--blog { border-bottom-color: #03c75a; }

.home .naver-blog-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 20px;
    padding: 0 4px;
    border-radius: 4px;
    color: #fff;
    background: #03c75a;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.home .clinic-cards-section {
    padding: 8px 24px;
}

.home .clinic-cards-grid {
    gap: 14px;
}

.home .clinic-card {
    min-height: 124px;
    padding: 13px 14px;
    border-radius: 13px;
    background-position: center right;
}

.home .clinic-card .card-content-wrap {
    gap: 6px;
    max-width: 67%;
}

.home .card-header-icon {
    width: 30px;
    height: 30px;
}

.home .card-title {
    font-size: 0.88rem;
}

.home .card-desc {
    font-size: 0.7rem;
    line-height: 1.28;
}

.home .card-more-btn {
    padding: 2px 7px;
    font-size: 0.68rem;
}

.home .details-section {
    padding: 8px 24px 10px;
}

.home .details-grid {
    grid-template-columns: 1.08fr 1.16fr 1fr;
    gap: 12px;
}

.home .detail-box {
    min-height: 224px;
    padding: 11px 13px;
    border-radius: 13px;
}

.home .box-title-wrap {
    gap: 4px;
    margin-bottom: 6px;
    padding-bottom: 4px;
}

.home .box-title {
    font-size: 0.91rem;
}

.home .detail-hours-list {
    gap: 1px;
    margin-bottom: 5px;
}

.home .detail-hours-list li {
    padding-bottom: 1px;
    font-size: 0.72rem;
    line-height: 1.26;
}

.home .detail-hours-list .time .note {
    font-size: 0.62rem;
}

.home .hours-remarks {
    margin-top: 4px;
    padding: 4px 7px;
    font-size: 0.61rem;
    line-height: 1.3;
}

.home .location-address {
    margin-bottom: 5px;
    font-size: 0.75rem;
    line-height: 1.28;
}

.home .location-address .sub-address {
    font-size: 0.66rem;
}

.home .map-embed-wrapper {
    position: relative;
    height: 112px;
    margin-bottom: 6px;
    border-radius: 9px;
    border-color: rgba(6, 71, 143, 0.14);
    background: #e9eef2;
}

.home .map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.home .naver-map-corner {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    padding: 4px 7px;
    border-radius: 5px;
    color: #fff;
    background: #03c75a;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    font-size: 0.62rem;
    font-weight: 800;
}

.home .map-actions-row {
    gap: 6px;
}

.home .map-btn {
    min-height: 38px;
    padding: 8px 5px;
    font-size: 0.75rem;
}

.home .parking-info-block + .parking-info-block {
    margin-top: 7px;
}

.home .parking-info-block h5 {
    margin-bottom: 1px;
    font-size: 0.77rem;
}

.home .parking-desc {
    font-size: 0.69rem;
    line-height: 1.34;
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .clinic-hero__inner {
        grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
    }
    .home .hero-center-badge { width: 202px; }
    .home .doctor-image-wrapper { width: 164px; }
    .home .doctor-info-text { min-width: 155px; }
    .home .specialty-list li { font-size: 0.66rem; }
    .home .action-grid,
    .home .sub-buttons-container,
    .home .clinic-cards-grid { gap: 9px; }
}

@media (max-width: 768px) {
    .home .header-container {
        min-height: 62px;
        padding: 7px 13px;
    }
    .home .site-logo-mark {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }
    .home .clinic-hero {
        padding: 10px 8px;
    }
    .home .clinic-hero__inner {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: 'center center' 'left right';
        gap: 8px;
    }
    .home .hero-center-badge {
        width: min(338px, 92vw);
        height: 150px;
        padding: 18px 72px 12px;
        background-position: center 58%;
    }
    .home .badge-title { font-size: 1.05rem; }
    .home .badge-subtitle { margin-bottom: 4px; font-size: 0.9rem; }
    .home .youtube-brand { padding: 1px 6px; }
    .home .youtube-subs { font-size: 1rem; }
    .home .badge-tag { font-size: 0.64rem; }
    .home .since-tag { margin-top: 3px; padding-top: 2px; font-size: 0.58rem; }
    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 244px;
        height: 244px;
        padding: 7px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        border-radius: 13px;
    }
    .home .doctor-image-wrapper {
        order: -1;
        width: 100%;
        height: 88px;
        margin-bottom: 4px;
        border-width: 3px;
        border-radius: 10px;
    }
    .home .doctor-img {
        border-radius: 7px;
        object-position: 58% 38%;
    }
    .home .doctor-image-wrapper--female .doctor-img {
        object-position: 56% 32%;
    }
    .home .doctor-info-text {
        width: 100%;
        padding: 0;
        text-align: left;
    }
    .home .doctor-role-tag { font-size: 0.61rem; }
    .home .doctor-name { margin-bottom: 4px; font-size: 1rem; }
    .home .doctor-title { font-size: 0.65rem; }
    .home .specialty-list { gap: 2px; }
    .home .specialty-list li {
        gap: 3px;
        font-size: clamp(0.54rem, 2.45vw, 0.64rem);
        white-space: normal;
    }
    .home .bullet {
        width: 13px;
        height: 13px;
        flex-basis: 13px;
        box-shadow: inset 0 0 0 4px currentColor;
    }
    .home .action-grid-section { padding: 7px 8px 3px; }
    .home .action-grid { gap: 7px; }
    .home .action-btn {
        min-height: 58px;
        padding: 7px 9px;
    }
    .home .action-btn--phone { grid-column: auto; }
    .home .action-btn--map { grid-column: 1 / -1; }
    .home .btn-icon { width: 34px; height: 34px; }
    .home .btn-main-txt { font-size: 0.74rem; }
    .home .btn-sub-txt { font-size: 0.58rem; }
    .home .sub-buttons-section { padding: 3px 8px 5px; }
    .home .sub-buttons-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }
    .home .sub-btn {
        min-height: 36px;
        padding: 5px 7px;
        font-size: 0.66rem;
    }
    .home .clinic-cards-section { padding: 6px 8px; }
    .home .clinic-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
    .home .clinic-card {
        min-height: 112px;
        padding: 9px;
    }
    .home .clinic-card .card-content-wrap { max-width: 78%; }
    .home .card-header-icon { width: 25px; height: 25px; }
    .home .card-title { font-size: 0.72rem; }
    .home .card-desc { font-size: 0.57rem; }
    .home .card-more-btn { font-size: 0.58rem; }
    .home .details-section { padding: 6px 8px 8px; }
    .home .details-grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .home .detail-box {
        min-height: auto;
        padding: 10px;
    }
    .home .detail-hours-list li { font-size: 0.71rem; }
    .home .hours-remarks { font-size: 0.62rem; }
    .home .map-embed-wrapper { height: 170px; }
    .home .map-btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
    }
    .home .parking-info-block h5 { font-size: 0.79rem; }
    .home .parking-desc { font-size: 0.71rem; }
}

@media (max-width: 390px) {
    .home .site-logo-copy strong { font-size: 0.86rem; }
    .home .hero-center-badge { padding-left: 58px; padding-right: 58px; }
    .home .doctor-profile,
    .home .doctor-profile--right { min-height: 252px; height: 252px; }
    .home .specialty-list li { font-size: 0.54rem; }
    .home .btn-arrow { display: none; }
}

/* =============================================================================
   2026-07 LAYERED HERO + ABOUT DOCTOR PHOTOS V13
   Background, doctor cutouts and HTML content remain independently positioned.
   ============================================================================= */
.home .clinic-hero {
    position: relative;
    overflow: hidden;
    background-image:
        url('images/hero-clinic-background-v5.webp'),
        radial-gradient(circle at 9% 58%, rgba(150, 204, 247, 0.14), transparent 31%),
        radial-gradient(circle at 91% 58%, rgba(179, 223, 157, 0.16), transparent 31%),
        linear-gradient(90deg, #eaf5ff 0%, #fff 43%, #fff 57%, #eff9e9 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center, center, center, center;
    background-size: cover, cover, cover, cover;
}

.home .clinic-hero__inner {
    position: relative;
}

.home .hero-doctor-cutout {
    position: absolute;
    z-index: 2;
    display: block;
    width: auto;
    max-width: none;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 12px 15px rgba(32, 61, 74, 0.08));
}

.home .hero-doctor-cutout--male {
    height: 680px;
    bottom: -285px;
    left: calc(50% - 435px);
}

.home .hero-doctor-cutout--female {
    height: 665px;
    bottom: -270px;
    right: calc(50% - 435px);
}

.home .doctor-profile {
    position: relative;
    z-index: 4;
}

.home .hero-center-badge-wrap {
    position: relative;
    z-index: 5;
}

.page-about .clinic-divide-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-about .clinic-divide-card::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(232,243,255,0.72));
}

.page-about .clinic-divide-card--dadams::after {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(234,248,232,0.8));
}

.page-about .clinic-divide-photo {
    position: absolute;
    z-index: 0;
    top: 22px;
    right: 18px;
    width: auto;
    height: 235px;
    max-width: 37%;
    object-fit: contain;
    object-position: center top;
    pointer-events: none;
    filter: drop-shadow(0 8px 13px rgba(31, 56, 72, 0.08));
}

.page-about .clinic-badge,
.page-about .clinic-divide-title,
.page-about .clinic-divide-doctor,
.page-about .clinic-divide-desc,
.page-about .clinic-card-links {
    position: relative;
    z-index: 1;
}

.page-about .clinic-badge,
.page-about .clinic-divide-title,
.page-about .clinic-divide-doctor,
.page-about .clinic-divide-desc {
    max-width: 66%;
}

.page-about .clinic-card-links {
    margin-top: 6px;
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .hero-doctor-cutout--male {
        height: 600px;
        bottom: -230px;
        left: calc(50% - 360px);
    }

    .home .hero-doctor-cutout--female {
        height: 590px;
        bottom: -220px;
        right: calc(50% - 360px);
    }
}

@media (max-width: 768px) {
    .home .clinic-hero {
        background-image:
            url('images/hero-clinic-background-v5.webp'),
            linear-gradient(90deg, #edf6ff 0%, #fff 45%, #fff 55%, #f1f9ec 100%);
        background-position: center top, center;
        background-size: auto 235px, cover;
    }

    .home .hero-doctor-cutout--male {
        height: 400px;
        top: 0;
        bottom: auto;
        left: calc(50% - 185px);
    }

    .home .hero-doctor-cutout--female {
        height: 390px;
        top: 2px;
        right: calc(50% - 185px);
        bottom: auto;
    }

    .home .doctor-profile {
        z-index: 6;
    }

    .page-about .clinic-divide-photo {
        top: 26px;
        right: 10px;
        height: 170px;
        max-width: 34%;
    }

    .page-about .clinic-badge,
    .page-about .clinic-divide-title,
    .page-about .clinic-divide-doctor,
    .page-about .clinic-divide-desc {
        max-width: 68%;
    }
}

/* =============================================================================
   2026-07 HOME VISUAL V4 — reference proportion and hierarchy rebalance
   ============================================================================= */
:root {
    --home-max-width: 1360px;
}

.home .header-container {
    min-height: 84px;
    padding: 10px 24px;
}

.home .site-logo-link {
    display: inline-flex;
    align-items: center;
}

.home .site-logo-img {
    width: auto;
    height: 54px;
    max-width: 300px;
    object-fit: contain;
}

.home .nav-menu a {
    padding: 9px 13px;
    font-size: 0.95rem;
    font-weight: 700;
}

.home .menu-kakao-btn a {
    padding: 10px 15px;
}

.home .clinic-hero {
    min-height: 320px;
    padding: 0 24px;
}

.home .clinic-hero::before,
.home .clinic-hero::after {
    bottom: -160px;
}

.home .clinic-hero__inner {
    min-height: 320px;
    grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr);
    gap: 14px;
}

.home .doctor-profile {
    height: 320px;
}

.home .doctor-info-text {
    min-width: 190px;
}

.home .doctor-role-tag {
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.home .doctor-name {
    margin-bottom: 12px;
    font-size: 1.65rem;
    font-weight: 850;
}

.home .doctor-title {
    font-size: 0.86rem;
    font-weight: 700;
}

.home .specialty-list {
    gap: 8px;
}

.home .specialty-list li {
    gap: 7px;
    font-size: clamp(0.78rem, 0.82vw, 0.91rem);
    font-weight: 650;
    line-height: 1.24;
}

.home .bullet {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    box-shadow: inset 0 0 0 7px currentColor;
}

.home .doctor-image-wrapper {
    width: 220px;
    height: 310px;
    border-width: 4px;
    border-radius: 20px 20px 7px 7px;
    box-shadow: 0 13px 34px rgba(10, 39, 70, 0.15);
}

.home .doctor-img {
    border-radius: 16px 16px 4px 4px;
}

.home .hero-center-badge {
    width: 270px;
    height: 300px;
    padding: 13px 0 8px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.home .hero-center-badge::before {
    display: none;
}

.home .badge-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 2px;
    color: #171717;
    font-size: 1.8rem;
    font-weight: 850;
    text-shadow: none;
}

.home .badge-title::before,
.home .badge-title::after {
    content: '';
    width: 50px;
    height: 1px;
    flex: 1 1 auto;
    background: #d5a04a;
}

.home .badge-title span {
    flex: 0 0 auto;
}

.home .badge-subtitle {
    margin: 0 0 12px;
    color: #111;
    font-size: 1.42rem;
    font-weight: 800;
}

.home .hero-award {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    min-height: 118px;
}

.home .hero-laurel {
    width: 50px;
    height: 112px;
    flex: 0 0 50px;
    overflow: visible;
    fill: #ce8b25;
    stroke: none;
}

.home .hero-laurel path {
    fill: none;
    stroke: #ce8b25;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.home .hero-laurel--right {
    transform: scaleX(-1);
}

.home .hero-award-copy {
    width: 156px;
    flex: 0 0 156px;
    text-align: center;
}

.home .youtube-brand {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.9rem;
    font-weight: 800;
}

.home .youtube-play-icon {
    width: 23px;
    height: 23px;
}

.home .youtube-subs {
    margin-top: 5px;
    color: #050505;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.home .badge-tag {
    margin-top: 2px;
    color: #191919;
    font-size: 0.98rem;
    font-weight: 650;
    white-space: nowrap;
}

.home .since-tag {
    width: 218px;
    margin: 7px auto 0;
    padding-top: 7px;
    border-top: 1px solid #d5a04a;
    color: #bf7318;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 700;
}

.home .action-grid-section {
    padding: 17px 24px 7px;
}

.home .action-grid {
    gap: 17px;
}

.home .action-btn {
    min-height: 82px;
    padding: 12px 17px;
    border-radius: 11px;
    box-shadow: 0 6px 15px rgba(15, 57, 99, 0.12);
}

.home .action-btn--chat {
    color: #fff;
    background: linear-gradient(135deg, #1875be, #07549d);
}

.home .btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.home .btn-icon--phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.13);
}

.home .btn-icon--phone svg {
    width: 27px;
    height: 27px;
}

.home .action-btn--map .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
}

.home .action-btn--map .btn-icon svg {
    width: 27px;
    height: 27px;
}

.home .btn-icon--chat {
    background: transparent;
}

.home .btn-icon--chat svg {
    width: 100%;
    height: 100%;
}

.home .btn-main-txt {
    font-size: 1.04rem;
    font-weight: 850;
}

.home .btn-sub-txt {
    font-size: 0.76rem;
    font-weight: 550;
}

.home .sub-buttons-section {
    padding: 6px 24px 9px;
}

.home .sub-buttons-container {
    gap: 17px;
}

.home .sub-btn {
    min-height: 48px;
    padding: 7px 12px;
    font-size: 0.88rem;
    font-weight: 750;
}

.home .sub-btn .ico {
    width: 23px;
    height: 23px;
}

.home .clinic-cards-section {
    padding: 9px 24px;
}

.home .clinic-cards-grid {
    gap: 16px;
}

.home .clinic-card {
    min-height: 146px;
    padding: 15px 16px;
}

.home .clinic-card .card-content-wrap {
    gap: 7px;
    max-width: 69%;
}

.home .card-header-icon {
    width: 34px;
    height: 34px;
}

.home .card-title {
    font-size: 0.99rem;
    font-weight: 850;
}

.home .card-desc {
    font-size: 0.76rem;
    font-weight: 550;
    line-height: 1.32;
}

.home .card-more-btn {
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 750;
}

.home .details-section {
    padding: 9px 24px 14px;
}

.home .details-grid {
    grid-template-columns: 0.98fr 1.42fr 1fr;
    gap: 14px;
}

.home .detail-box {
    min-height: 232px;
    padding: 13px 15px;
}

.home .box-title-wrap {
    gap: 6px;
    margin-bottom: 7px;
    padding-bottom: 5px;
}

.home .box-title {
    font-size: 0.98rem;
}

.home .detail-hours-list li {
    font-size: 0.76rem;
    line-height: 1.28;
}

.home .detail-hours-list .time .note,
.home .hours-remarks {
    font-size: 0.64rem;
}

.home .location-address {
    font-size: 0.78rem;
}

.home .map-embed-wrapper {
    height: 122px;
}

.home .map-btn {
    min-height: 40px;
    font-size: 0.77rem;
    font-weight: 750;
}

.home .parking-info-block h5 {
    font-size: 0.81rem;
}

.home .parking-desc {
    font-size: 0.72rem;
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .header-container,
    .home .clinic-hero__inner,
    .home .action-grid-container,
    .home .sub-buttons-container,
    .home .clinic-cards-container,
    .home .details-container {
        max-width: 1180px;
    }

    .home .clinic-hero__inner {
        grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr);
        gap: 8px;
    }

    .home .hero-center-badge { width: 225px; }
    .home .doctor-image-wrapper { width: 184px; }
    .home .doctor-info-text { min-width: 160px; }
    .home .specialty-list li { font-size: 0.69rem; }
    .home .hero-laurel { width: 41px; flex-basis: 41px; }
    .home .hero-award-copy { width: 140px; flex-basis: 140px; }
    .home .youtube-subs { font-size: 1.5rem; }
    .home .nav-menu { gap: 5px; }
    .home .nav-menu a { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 768px) {
    .home .header-container {
        min-height: 66px;
        padding: 8px 12px;
    }

    .home .site-logo-img {
        height: 42px;
        max-width: 232px;
    }

    .home .clinic-hero {
        min-height: auto;
        padding: 10px 8px 12px;
    }

    .home .clinic-hero__inner {
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 165px 270px;
        gap: 7px;
    }

    .home .hero-center-badge-wrap {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .home .hero-center-badge {
        width: min(286px, 88vw);
        height: 165px;
        padding: 2px 0 0;
    }

    .home .badge-title {
        gap: 8px;
        font-size: 1.13rem;
    }

    .home .badge-subtitle {
        margin-bottom: 1px;
        font-size: 0.94rem;
    }

    .home .hero-award {
        min-height: 82px;
    }

    .home .hero-laurel {
        width: 35px;
        height: 80px;
        flex-basis: 35px;
    }

    .home .hero-award-copy {
        width: 132px;
        flex-basis: 132px;
    }

    .home .youtube-brand { font-size: 0.69rem; }
    .home .youtube-play-icon { width: 17px; height: 17px; }
    .home .youtube-subs { margin-top: 1px; font-size: 1.2rem; }
    .home .badge-tag { font-size: 0.7rem; }
    .home .since-tag { width: 172px; margin-top: 0; padding-top: 3px; font-size: 0.66rem; }

    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 270px;
        height: 270px;
    }

    .home .doctor-image-wrapper {
        width: 100px;
        height: 262px;
    }

    .home .doctor-info-text { min-width: 0; }
    .home .doctor-role-tag { font-size: 0.58rem; }
    .home .doctor-name { margin-bottom: 7px; font-size: 0.94rem; }
    .home .doctor-title { font-size: 0.65rem; }
    .home .specialty-list { gap: 4px; }
    .home .specialty-list li { gap: 4px; font-size: clamp(0.57rem, 2.55vw, 0.68rem); }
    .home .bullet { width: 15px; height: 15px; flex-basis: 15px; box-shadow: inset 0 0 0 5px currentColor; }

    .home .action-grid-section { padding: 9px 8px 4px; }
    .home .action-grid { gap: 7px; }
    .home .action-btn { min-height: 64px; padding: 8px 10px; }
    .home .action-btn--map { grid-column: 1 / -1; }
    .home .btn-icon { width: 38px; height: 38px; }
    .home .btn-main-txt { font-size: 0.78rem; }
    .home .btn-sub-txt { font-size: 0.61rem; }

    .home .sub-buttons-section { padding: 4px 8px 6px; }
    .home .sub-btn { min-height: 40px; font-size: 0.7rem; }

    .home .clinic-cards-section { padding: 7px 8px; }
    .home .clinic-card { min-height: 122px; padding: 10px; }
    .home .card-title { font-size: 0.76rem; }
    .home .card-desc { font-size: 0.6rem; }

    .home .details-section { padding: 7px 8px 10px; }
    .home .details-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .home .detail-box { padding: 11px; }
    .home .map-embed-wrapper { height: 180px; }
    .home .map-actions-row { width: 100%; }
    .home .map-btn {
        min-width: 0;
        min-height: 48px;
        flex: 1 1 0;
        font-size: 0.82rem;
    }
}

@media (max-width: 390px) {
    .home .hero-center-badge { padding-left: 0; padding-right: 0; }
    .home .doctor-profile,
    .home .doctor-profile--right { min-height: 270px; height: 270px; }
    .home .specialty-list li { font-size: 0.57rem; }
}

/* =============================================================================
   2026-07 TONE & SUBPAGE STABILITY V5
   ============================================================================= */

/* Home: reduce decorative weight for a calmer clinical tone. */
.home .clinic-hero::before,
.home .clinic-hero::after {
    opacity: 0.38;
}

.home .hero-laurel {
    fill: #b58a4d;
    opacity: 0.78;
}

.home .hero-laurel path {
    stroke: #b58a4d;
}

.home .badge-title::before,
.home .badge-title::after,
.home .since-tag {
    border-color: #b99562;
    background-color: #b99562;
}

.home .since-tag {
    background: transparent;
}

.home .action-btn {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(20, 47, 75, 0.1);
}

.home .sub-btn {
    border: 1px solid #dfe5ea;
    border-radius: 7px;
    box-shadow: none;
}

.home .sub-btn--about,
.home .sub-btn--naver,
.home .sub-btn--review,
.home .sub-btn--youtube,
.home .sub-btn--blog {
    border-bottom-color: #dfe5ea;
}

.home .clinic-card,
.home .detail-box {
    border-color: #e1e6eb;
    border-radius: 9px;
    box-shadow: none;
}

.home .clinic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(20, 47, 75, 0.07);
}

.home .card-header-icon {
    border-radius: 7px;
}

/* Shared subpage surfaces. */
.subpage-main {
    background: #fff;
}

.subpage-main .about-hero {
    background: #f6f8fa;
}

.subpage-main .about-hero__title,
.archive-title {
    letter-spacing: -0.045em;
}

.subpage-main .intro-card-primary,
.subpage-main .clinic-divide-card,
.subpage-main .promise-card,
.subpage-main .doc-card,
.subpage-main .booking-card,
.subpage-main .untact-info-card,
.subpage-main .map-details-card,
.subpage-main .map-iframe-card,
.subpage-main .checklist-card,
.subpage-main .directions-alert-card {
    border-color: #e3e8ec;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(25, 50, 74, 0.05);
}

.subpage-main .bg-soft-gray {
    background: #f7f8fa;
}

/* The about page has a heading plus a nested flex row, so it must not inherit
   the home page's five-column quick-link grid. */
.page-about .sub-buttons-container {
    display: block;
    max-width: 1000px;
    padding: 0 20px;
}

.page-about .sub-buttons-flex {
    display: flex;
    width: 100%;
}

/* Directions template component names differ from the legacy CSS names. */
.untact-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.untact-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    background: var(--clr-navy);
    font-size: 0.88rem;
    font-weight: 700;
}

.untact-btn--kakao {
    color: #331d1d;
    background: #fee500;
}

.untact-step .step-num {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 50%;
    color: #fff;
    background: var(--clr-navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.untact-step .step-title {
    margin-bottom: 7px;
    color: var(--clr-txt-main);
    font-size: 1rem;
}

.untact-step .step-desc {
    margin: 0;
    color: var(--clr-txt-sub);
    font-size: 0.88rem;
    line-height: 1.55;
}

.map-details-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    background: #fff;
}

.map-detail-item + .map-detail-item {
    padding-top: 16px;
    border-top: 1px solid #edf0f2;
}

.map-detail-title {
    margin-bottom: 6px;
    color: var(--clr-navy);
    font-size: 0.96rem;
    font-weight: 800;
}

.map-detail-text {
    margin: 0;
    color: var(--clr-txt-sub);
    font-size: 0.88rem;
    line-height: 1.55;
}

.map-nav-links {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.map-nav-btn {
    display: inline-flex;
    min-height: 42px;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border: 1px solid #dce4e9;
    border-radius: 6px;
    background: #fff;
    color: var(--clr-txt-main);
    font-size: 0.82rem;
    font-weight: 750;
    text-align: center;
}

.map-nav-btn--naver {
    border-color: rgba(3, 199, 90, 0.35);
    color: #087a3b;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.checklist-grid .checklist-card {
    padding: 25px;
}

.checklist-card-title {
    margin-bottom: 10px;
    color: var(--clr-navy);
    font-size: 1rem;
    font-weight: 800;
}

.checklist-card-text {
    margin: 0;
    color: var(--clr-txt-sub);
    font-size: 0.88rem;
    line-height: 1.62;
}

@media (max-width: 768px) {
    .subpage-main {
        padding-bottom: 36px;
    }

    .breadcrumb-strip {
        padding: 9px 0;
        font-size: 0.78rem;
    }

    .breadcrumb-strip .container,
    .about-container {
        width: 100%;
        max-width: none;
        padding-right: 18px;
        padding-left: 18px;
    }

    .subpage-main .about-hero {
        padding: 34px 0;
    }

    .subpage-main .about-hero__title {
        font-size: 1.55rem;
        line-height: 1.34;
        word-break: keep-all;
    }

    .subpage-main .about-hero__sub {
        font-size: 0.98rem !important;
        line-height: 1.5;
    }

    .section-title {
        margin-bottom: 22px;
        font-size: 1.34rem;
    }

    /* About */
    .page-about .about-clinics-intro {
        padding-bottom: 10px;
    }

    .page-about .intro-card-primary {
        margin-bottom: 28px;
        padding: 20px;
    }

    .page-about .intro-description {
        font-size: 0.92rem;
        line-height: 1.65;
        text-align: left;
    }

    .page-about .clinic-divide-grid,
    .page-about .promises-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-about .clinic-divide-card,
    .page-about .promise-card {
        width: 100%;
        padding: 21px;
    }

    .page-about .clinic-card-links {
        flex-direction: column;
        gap: 7px;
    }

    .page-about .clinic-btn {
        width: 100%;
    }

    .page-about .tel-callout-card {
        align-items: flex-start;
        margin-bottom: 32px;
        padding: 14px 16px;
    }

    .page-about .about-promises-section {
        padding: 46px 0;
    }

    .page-about .promise-num {
        font-size: 1.55rem;
    }

    .page-about .sub-buttons-section {
        padding: 38px 0;
    }

    .page-about .sub-buttons-container {
        display: block;
        width: 100%;
        padding: 0 18px;
    }

    .page-about .sub-buttons-header-title {
        font-size: 1.1rem;
    }

    .page-about .sub-buttons-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .page-about .sub-buttons-flex .sub-btn {
        width: 100%;
        min-height: 46px;
        padding: 9px 8px;
        border-radius: 6px;
        font-size: 0.76rem;
    }

    /* Doctor profiles */
    .page-doctor .doc-profile-hero {
        padding: 38px 0;
    }

    .page-doctor .doc-hero-flex {
        flex-direction: column;
        gap: 22px;
        text-align: center;
    }

    .page-doctor .doc-hero-img-wrap {
        width: 176px;
        height: 176px;
    }

    .page-doctor .doc-hero-text {
        width: 100%;
    }

    .page-doctor .doc-name-title {
        font-size: 1.65rem;
    }

    .page-doctor .doc-subtitle {
        font-size: 0.98rem;
    }

    .page-doctor .doc-quote {
        padding: 0;
        border-left: 0;
        font-size: 0.9rem;
    }

    .page-doctor .doc-details-content {
        padding: 38px 0;
    }

    .page-doctor .doc-content-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .page-doctor .doc-card {
        width: 100%;
    }

    .page-doctor .doc-card-body {
        padding: 18px;
    }

    /* Directions */
    .page-directions .directions-alert-card {
        margin-top: 22px;
        margin-bottom: -12px;
        padding: 16px;
    }

    .page-directions .directions-hours-section,
    .page-directions .directions-booking-section,
    .page-directions .directions-untact-section,
    .page-directions .directions-map-section,
    .page-directions .directions-checklist-section {
        padding: 44px 0;
    }

    .page-directions .directions-table-wrapper {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .page-directions .directions-hours-table {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .page-directions .directions-hours-table thead {
        display: none;
    }

    .page-directions .directions-hours-table tbody {
        display: grid;
        gap: 12px;
    }

    .page-directions .directions-hours-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: hidden;
        border: 1px solid #dfe5e9;
        border-radius: 8px;
        background: #fff;
    }

    .page-directions .directions-hours-table td {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 11px 12px;
        border: 0;
        border-top: 1px solid #edf0f2;
        color: var(--clr-txt-main);
        font-size: 0.76rem;
        text-align: right;
    }

    .page-directions .directions-hours-table td:nth-child(even) {
        border-right: 1px solid #edf0f2;
    }

    .page-directions .directions-hours-table td::before {
        color: #74808b;
        font-size: 0.7rem;
        font-weight: 700;
        text-align: left;
    }

    .page-directions .directions-hours-table td:nth-child(2)::before { content: '월'; }
    .page-directions .directions-hours-table td:nth-child(3)::before { content: '화'; }
    .page-directions .directions-hours-table td:nth-child(4)::before { content: '수'; }
    .page-directions .directions-hours-table td:nth-child(5)::before { content: '목'; }
    .page-directions .directions-hours-table td:nth-child(6)::before { content: '금'; }
    .page-directions .directions-hours-table td:nth-child(7)::before { content: '토'; }
    .page-directions .directions-hours-table td:nth-child(8)::before { content: '일·공휴일'; }

    .page-directions .directions-hours-table .td-clinic-name {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding: 14px 15px !important;
        border-top: 0;
        text-align: left;
    }

    .page-directions .directions-hours-table .td-clinic-name::before {
        content: none;
    }

    .page-directions .booking-grid,
    .page-directions .untact-steps-grid,
    .page-directions .map-layout-grid,
    .page-directions .checklist-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-directions .booking-card,
    .page-directions .untact-info-card,
    .page-directions .map-details-card,
    .page-directions .checklist-card {
        width: 100%;
        padding: 20px;
    }

    .page-directions .untact-actions,
    .page-directions .map-nav-links {
        flex-direction: column;
        gap: 8px;
    }

    .page-directions .untact-btn,
    .page-directions .map-nav-btn {
        width: 100%;
        min-height: 48px;
    }

    .page-directions .map-iframe-card {
        min-height: 280px;
    }

    .page-directions .hours-notes-list {
        padding-left: 18px;
    }
}

/* =============================================================================
   2026-07 HOURS CONTENT V6 — full Korean schedule on every surface
   ============================================================================= */
.expanded-hours-card {
    overflow: hidden;
    border: 1px solid #dfe5e9;
    border-radius: 8px;
    background: #fff;
}

.expanded-hours-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    min-height: 57px;
    padding: 10px 22px;
    border-bottom: 1px solid #edf0f2;
}

.expanded-hours-row:last-child {
    border-bottom: 0;
}

.expanded-hours-day {
    color: #263746;
    font-size: 0.92rem;
    font-weight: 800;
}

.expanded-hours-time {
    color: #364b5d;
    font-size: 0.94rem;
    font-weight: 700;
}

.expanded-hours-time em {
    display: inline-block;
    margin-left: 10px;
    color: #6e7b86;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
}

.expanded-hours-row--night {
    background: #f3f7fb;
}

.expanded-hours-row--night .expanded-hours-day,
.expanded-hours-row--night .expanded-hours-time {
    color: var(--clr-navy);
}

.expanded-hours-row--closed {
    background: #fcf7f7;
}

.expanded-hours-row--closed .expanded-hours-day,
.expanded-hours-row--closed .expanded-hours-time {
    color: #a24343;
}

.expanded-hours-notices {
    margin-top: 14px;
    padding: 13px 16px;
    border-left: 3px solid var(--clr-navy);
    border-radius: 4px;
    background: #f6f8fa;
    color: #4f5f6d;
    font-size: 0.84rem;
    line-height: 1.55;
}

.expanded-hours-notices p {
    margin: 0;
}

.expanded-hours-notices p + p {
    margin-top: 3px;
}

.home .hour-box {
    min-height: 246px;
}

.home .hour-box .detail-hours-list {
    gap: 4px;
    margin-bottom: 8px;
}

.home .hour-box .detail-hours-list li {
    align-items: flex-start;
    padding-bottom: 4px;
    font-size: 0.76rem;
    line-height: 1.32;
}

.home .hour-box .detail-hours-list .day {
    flex: 0 0 62px;
}

.home .hour-box .detail-hours-list .time {
    flex: 1 1 auto;
}

.home .hour-box .hours-remarks {
    margin-top: 7px;
    padding: 7px 8px;
    border-color: #e1e6ea;
    background: #fff;
    color: #667582;
    font-size: 0.64rem;
    line-height: 1.42;
}

.home .hour-box .hours-remarks p {
    margin: 0;
}

.home .hour-box .hours-remarks p + p {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .expanded-hours-row {
        grid-template-columns: 82px minmax(0, 1fr);
        min-height: 62px;
        padding: 11px 13px;
    }

    .expanded-hours-day {
        font-size: 0.8rem;
    }

    .expanded-hours-time {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .expanded-hours-time em {
        display: block;
        margin: 2px 0 0;
        font-size: 0.7rem;
    }

    .expanded-hours-notices {
        margin-top: 11px;
        padding: 11px 12px;
        font-size: 0.76rem;
    }

    .home .hour-box {
        min-height: auto;
    }

    .home .hour-box .detail-hours-list li {
        font-size: 0.78rem;
    }

    .home .hour-box .detail-hours-list .day {
        flex-basis: 68px;
    }

    .home .hour-box .detail-hours-list .time .note,
    .home .hour-box .hours-remarks {
        font-size: 0.69rem;
    }
}

/* =============================================================================
   2026-07 READABILITY & ICON COMPLETION V7
   ============================================================================= */
.nav-menu a {
    font-size: 1rem;
}

.menu-kakao-btn a,
.home .menu-kakao-btn a {
    gap: 7px;
    border: 1px solid rgba(51, 29, 29, 0.08);
    color: #331d1d !important;
    background: #fee500 !important;
    box-shadow: 0 3px 10px rgba(64, 48, 0, 0.12);
}

.menu-kakao-btn a:hover,
.home .menu-kakao-btn a:hover {
    color: #331d1d !important;
    background: #f7dc00 !important;
}

.menu-kakao-btn .icon-kakao {
    width: 20px !important;
    height: 20px !important;
    margin-right: 0 !important;
    color: #331d1d;
}

.mobile-cta-btn--kakao {
    color: #331d1d;
    background: #fee500;
}

.mobile-cta-btn svg {
    width: 19px !important;
    height: 19px !important;
}

.mobile-cta-btn {
    font-size: 0.78rem;
}

.directions-alert-card > .ico,
.tel-callout-card > .ico {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px;
}

.home .specialty-list li {
    font-size: clamp(0.84rem, 0.88vw, 0.96rem);
    line-height: 1.3;
}

.home .bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.home .bullet::before {
    content: '+';
    color: #fff;
    font-size: 0.78em;
    font-weight: 900;
    line-height: 1;
}

.home .btn-main-txt {
    font-size: 1.08rem;
}

.home .btn-sub-txt {
    font-size: 0.81rem;
}

.home .sub-btn {
    font-size: 0.93rem;
}

.home .card-title {
    font-size: 1.04rem;
}

.home .card-desc {
    font-size: 0.82rem;
    line-height: 1.42;
}

.home .card-more-btn {
    font-size: 0.77rem;
}

.home .box-title {
    font-size: 1.04rem;
}

.home .hour-box .detail-hours-list li,
.home .location-address,
.home .parking-desc {
    font-size: 0.82rem;
}

.home .hour-box .detail-hours-list .time .note,
.home .hour-box .hours-remarks,
.home .location-address .sub-address {
    font-size: 0.72rem;
}

.home .parking-info-block h5 {
    font-size: 0.88rem;
}

.home .map-btn {
    font-size: 0.82rem;
}

.footer-info {
    font-size: 0.9rem;
}

/* Subpage body copy */
.subpage-main .intro-description,
.subpage-main .clinic-divide-desc,
.subpage-main .promise-desc,
.subpage-main .doc-quote,
.subpage-main .career-list li,
.subpage-main .media-list li,
.subpage-main .paper-list li,
.subpage-main .alert-desc-text,
.subpage-main .booking-desc,
.subpage-main .untact-step .step-desc,
.subpage-main .map-detail-text,
.subpage-main .checklist-card-text {
    font-size: 0.96rem;
}

.subpage-main .clinic-divide-doctor,
.subpage-main .specialty-bullet-list li,
.subpage-main .thesis-title,
.subpage-main .booking-doc-rules li,
.subpage-main .hours-notes-list li {
    font-size: 0.92rem;
}

.expanded-hours-day,
.expanded-hours-time {
    font-size: 1rem;
}

.expanded-hours-time em,
.expanded-hours-notices {
    font-size: 0.86rem;
}

@media (max-width: 768px) {
    .nav-menu a {
        font-size: 1rem;
    }

    .home .clinic-hero__inner {
        grid-template-rows: 165px 300px;
    }

    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 300px;
        height: 300px;
    }

    .home .doctor-image-wrapper {
        width: 96px;
        height: 292px;
    }

    .home .doctor-role-tag {
        font-size: 0.64rem;
    }

    .home .doctor-name {
        font-size: 1.03rem;
    }

    .home .doctor-title {
        font-size: 0.7rem;
    }

    .home .specialty-list {
        gap: 5px;
    }

    .home .specialty-list li {
        font-size: clamp(0.64rem, 2.8vw, 0.71rem);
        line-height: 1.32;
    }

    .home .bullet {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }

    .home .btn-main-txt {
        font-size: 0.84rem;
    }

    .home .btn-sub-txt {
        font-size: 0.67rem;
    }

    .home .sub-btn {
        font-size: 0.76rem;
    }

    .home .card-title {
        font-size: 0.83rem;
    }

    .home .card-desc {
        font-size: 0.66rem;
    }

    .home .card-more-btn {
        font-size: 0.64rem;
    }

    .home .box-title {
        font-size: 1rem;
    }

    .home .hour-box .detail-hours-list li,
    .home .location-address,
    .home .parking-desc {
        font-size: 0.84rem;
    }

    .home .hour-box .detail-hours-list .time .note,
    .home .hour-box .hours-remarks,
    .home .location-address .sub-address {
        font-size: 0.73rem;
    }

    .subpage-main .intro-description,
    .subpage-main .clinic-divide-desc,
    .subpage-main .promise-desc,
    .subpage-main .doc-quote,
    .subpage-main .career-list li,
    .subpage-main .media-list li,
    .subpage-main .paper-list li,
    .subpage-main .alert-desc-text,
    .subpage-main .booking-desc,
    .subpage-main .untact-step .step-desc,
    .subpage-main .map-detail-text,
    .subpage-main .checklist-card-text {
        font-size: 0.9rem;
    }

    .subpage-main .clinic-divide-doctor,
    .subpage-main .specialty-bullet-list li,
    .subpage-main .thesis-title,
    .subpage-main .booking-doc-rules li {
        font-size: 0.86rem;
    }

    .expanded-hours-day,
    .expanded-hours-time {
        font-size: 0.88rem;
    }

    .expanded-hours-time em,
    .expanded-hours-notices {
        font-size: 0.78rem;
    }
}

@media (max-width: 390px) {
    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 300px;
        height: 300px;
    }

    .home .specialty-list li {
        font-size: 0.64rem;
    }
}

/* Mobile doctor cards: keep the enlarged copy visible below each portrait. */
@media (max-width: 768px) {
    .home .clinic-hero__inner {
        grid-template-rows: 165px 420px;
    }

    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 420px;
        height: 420px;
        padding: 7px 6px 10px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        text-align: left;
        overflow: hidden;
    }

    .home .doctor-image-wrapper,
    .home .doctor-profile--right .doctor-image-wrapper {
        order: 1;
        width: 100%;
        height: 190px;
        flex: 0 0 190px;
        border-width: 3px;
        border-radius: 11px;
    }

    .home .doctor-img {
        border-radius: 8px;
    }

    .home .doctor-info-text,
    .home .doctor-profile--right .doctor-info-text {
        order: 2;
        width: 100%;
        min-width: 0;
        align-self: stretch;
        padding: 9px 2px 0;
        text-align: left;
    }

    .home .doctor-role-tag {
        margin-bottom: 2px;
    }

    .home .doctor-name {
        margin-bottom: 6px;
    }

    .home .specialty-list {
        align-items: stretch;
        gap: 4px;
    }

    .home .specialty-list li {
        width: 100%;
        gap: 4px;
        font-size: 0.69rem;
        white-space: normal;
    }

    .home .btn-sub-txt {
        font-size: 0.7rem;
    }

    .home .card-desc {
        font-size: 0.7rem;
    }
}

@media (max-width: 390px) {
    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 420px;
        height: 420px;
    }

    .home .specialty-list li {
        font-size: 0.69rem;
    }
}

/* =============================================================================
   2026-07 COLUMN ARCHIVE & ARTICLE WIDTH V8
   ============================================================================= */
.archive-main {
    padding: 52px 20px 64px;
}

.archive-container {
    width: 100%;
    max-width: 1320px;
}

.archive-header {
    margin-bottom: 32px;
}

.posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.archive-post-card {
    min-width: 0;
    border-radius: 9px;
    box-shadow: 0 4px 16px rgba(28, 49, 68, 0.07);
}

.archive-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(28, 49, 68, 0.11);
}

.archive-post-card .card-thumbnail-wrapper {
    height: 190px;
}

.archive-post-card .card-thumbnail-fallback {
    width: 100%;
    min-height: 0 !important;
}

.archive-post-card .card-body {
    padding: 20px;
}

.archive-post-card .card-title {
    font-size: 1.08rem !important;
}

.archive-post-card .card-excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.archive-pagination {
    width: 100%;
    margin-top: 42px;
}

.archive-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.column-detail-container {
    width: 100%;
    max-width: 1100px;
}

.column-detail-article {
    padding: 48px 56px;
}

.column-detail-content {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .archive-container {
        max-width: 960px;
    }

    .posts-grid {
        gap: 18px;
    }

    .archive-post-card .card-thumbnail-wrapper {
        height: 170px;
    }

    .archive-post-card .card-body {
        padding: 17px;
    }

    .column-detail-container {
        max-width: 940px;
    }
}

@media (max-width: 768px) {
    .archive-main {
        padding: 32px 10px 46px;
    }

    .archive-header {
        margin-bottom: 22px;
        padding: 0 8px 17px;
    }

    .archive-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .archive-description {
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .archive-post-card .card-thumbnail-wrapper {
        height: 118px;
    }

    .archive-post-card .card-body {
        padding: 11px;
    }

    .archive-post-card .card-meta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 3px !important;
        margin-bottom: 5px !important;
        font-size: 0.74rem !important;
        line-height: 1.35;
    }

    .archive-post-card .category-badge {
        font-size: 0.7rem !important;
    }

    .archive-post-card .card-author {
        font-size: 0.72rem;
    }

    .archive-post-card .card-date {
        margin-bottom: 5px !important;
        font-size: 0.72rem !important;
    }

    .archive-post-card .card-title {
        margin-bottom: 6px !important;
        font-size: 0.96rem !important;
        line-height: 1.42 !important;
    }

    .archive-post-card .card-excerpt {
        margin-bottom: 9px !important;
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        -webkit-line-clamp: 3;
    }

    .archive-post-card .card-readmore-btn {
        font-size: 0.8rem !important;
    }

    .archive-pagination {
        margin-top: 28px;
    }

    .archive-pagination a,
    .archive-pagination span {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .column-detail-main {
        padding: 24px 10px 40px;
    }

    .column-detail-article {
        padding: 24px 18px;
        border-radius: 9px;
    }

    .column-detail-content {
        max-width: none;
    }
}

/* =============================================================================
   2026-07 SUBPAGE POLISH & GENERIC PAGE SYSTEM V9
   ============================================================================= */
.about-container {
    width: 100%;
    max-width: 1100px;
}

.breadcrumb-strip {
    border-bottom-color: #e6eaed;
}

.breadcrumb-strip .container {
    max-width: 1100px;
}

.subpage-hero {
    padding: 54px 20px;
    border-bottom: 1px solid #e5e9ec;
    background: linear-gradient(135deg, #f5f8fa 0%, #fff 65%, #f3f8f4 100%);
}

.subpage-hero__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.subpage-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: #667785;
    font-size: 0.86rem;
    font-weight: 700;
}

.subpage-hero__title {
    color: var(--clr-navy);
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.3;
}

.page-content-wrap {
    padding: 48px 20px 72px;
    background: #f7f8fa;
}

.page-content-wrap .about-container {
    padding: 0;
}

.theme-content {
    padding: 42px 48px;
    border: 1px solid #e1e6ea;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(28, 49, 68, 0.06);
    color: #344655;
    font-size: 1rem;
    line-height: 1.78;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.theme-content > :first-child {
    margin-top: 0;
}

.theme-content > :last-child {
    margin-bottom: 0;
}

.theme-content h2,
.theme-content h3,
.theme-content h4 {
    color: var(--clr-navy);
    font-weight: 850;
    line-height: 1.4;
    scroll-margin-top: 100px;
}

.theme-content h2 {
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e9ed;
    font-size: 1.45rem;
}

.theme-content h3 {
    margin: 28px 0 12px;
    font-size: 1.18rem;
}

.theme-content p,
.theme-content ul,
.theme-content ol,
.theme-content table {
    margin-bottom: 18px;
}

.theme-content ul,
.theme-content ol {
    padding-left: 22px;
}

.theme-content a,
.ai-page-content a {
    color: var(--clr-navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.theme-content table {
    width: 100%;
    border-collapse: collapse;
}

.theme-content th,
.theme-content td {
    padding: 12px 14px;
    border: 1px solid #dfe5e9;
    text-align: left;
}

.theme-content th {
    background: #f4f7f9;
}

.ai-page-wrapper {
    padding: 48px 20px 72px;
}

.ai-page-main {
    width: 100%;
    max-width: 1000px;
}

.ai-page-article {
    padding: 46px 50px;
    border-color: #e1e6ea;
    border-radius: 9px;
    box-shadow: 0 4px 16px rgba(28, 49, 68, 0.06);
}

.ai-page-title {
    color: var(--clr-navy);
    letter-spacing: -0.04em;
}

.ai-page-content {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.ai-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.ai-specs-table th {
    width: 165px;
}

.subpage-main :is(a, button, summary):focus-visible,
.archive-main :is(a, button, summary):focus-visible,
.column-detail-main :is(a, button, summary):focus-visible,
.ai-page-wrapper :is(a, button, summary):focus-visible,
.error-page-main :is(a, button):focus-visible {
    outline: 3px solid rgba(6, 71, 143, 0.35);
    outline-offset: 3px;
}

.error-page-main {
    min-height: 560px;
    padding: 80px 20px;
    background: #f6f8fa;
}

.error-page-card {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: 54px 46px;
    border: 1px solid #e1e6ea;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(28, 49, 68, 0.07);
    text-align: center;
}

.error-page-code {
    display: block;
    margin-bottom: 8px;
    color: #8da0af;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.error-page-title {
    margin-bottom: 13px;
    color: var(--clr-navy);
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.error-page-desc {
    max-width: 520px;
    margin: 0 auto 26px;
    color: #61717e;
    font-size: 1rem;
    line-height: 1.7;
}

.error-page-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.error-page-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border: 1px solid #d9e1e6;
    border-radius: 7px;
    color: #304656;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.error-page-btn--primary {
    border-color: var(--clr-navy);
    color: #fff;
    background: var(--clr-navy);
}

@media (max-width: 768px) {
    .breadcrumb-strip .container,
    .about-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .subpage-hero {
        padding: 34px 18px;
    }

    .subpage-hero__eyebrow {
        font-size: 0.76rem;
    }

    .subpage-hero__title {
        font-size: 1.58rem;
    }

    .page-content-wrap {
        padding: 24px 10px 44px;
    }

    .page-content-wrap .about-container {
        padding: 0;
    }

    .theme-content {
        padding: 25px 19px;
        font-size: 1rem;
        line-height: 1.75;
    }

    .theme-content h2 {
        margin-top: 30px;
        font-size: 1.25rem;
    }

    .theme-content h3 {
        font-size: 1.08rem;
    }

    .ai-page-wrapper {
        padding: 24px 10px 44px;
    }

    .ai-page-article {
        width: 100%;
        padding: 26px 18px;
    }

    .ai-page-title {
        font-size: 1.6rem;
        line-height: 1.35;
    }

    .ai-page-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .ai-specs-table,
    .ai-specs-table tbody,
    .ai-specs-table tr,
    .ai-specs-table th,
    .ai-specs-table td {
        display: block;
        width: 100%;
    }

    .ai-specs-table tr {
        overflow: hidden;
        margin-bottom: 10px;
        border: 1px solid #dfe5e9;
        border-radius: 7px;
    }

    .ai-specs-table th,
    .ai-specs-table td {
        border: 0;
        font-size: 0.96rem;
    }

    .ai-specs-table th {
        padding: 10px 12px;
        background: #f2f6f8;
    }

    .ai-specs-table td {
        padding: 12px;
        border-top: 1px solid #e4e9ed;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    .error-page-main {
        min-height: 500px;
        padding: 44px 10px;
    }

    .error-page-card {
        padding: 38px 20px;
    }

    .error-page-title {
        font-size: 1.55rem;
    }

    .error-page-desc {
        font-size: 1rem;
    }

    .error-page-actions {
        flex-direction: column;
    }

    .error-page-btn {
        width: 100%;
        min-height: 48px;
        font-size: 0.96rem;
    }
}

/* =============================================================================
   2026-07 MEDIA LIBRARY CLINIC SPACE V10
   ============================================================================= */
.clinic-card--interior {
    background-position: center 52%;
    background-size: cover;
}

.about-space-section {
    padding: 40px 20px 54px;
    background: #f6f8f9;
}

.about-space-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    overflow: hidden;
    border: 1px solid #dfe5e9;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(28, 49, 68, 0.07);
}

.about-space-media,
.arrival-photo-media {
    margin: 0;
    overflow: hidden;
    background: #e9edef;
}

.about-space-media {
    min-width: 0;
}

.about-space-image,
.arrival-photo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-space-image {
    min-height: 0;
    object-position: center 53%;
}

.clinic-gallery {
    position: relative;
    min-height: 340px;
    isolation: isolate;
}

.clinic-gallery__viewport,
.clinic-gallery__track,
.clinic-gallery__slide {
    width: 100%;
    height: 100%;
}

.clinic-gallery__viewport {
    overflow: hidden;
}

.clinic-gallery__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.clinic-gallery__slide {
    position: relative;
    flex: 0 0 100%;
    margin: 0;
    overflow: hidden;
}

.clinic-gallery__slide::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    background: linear-gradient(to top, rgba(10, 25, 37, 0.72), rgba(10, 25, 37, 0));
    content: '';
    pointer-events: none;
}

.clinic-gallery__slide:nth-child(2) .about-space-image,
.clinic-gallery__slide:nth-child(3) .about-space-image {
    object-position: center center;
}

.clinic-gallery__slide:nth-child(4) .about-space-image,
.clinic-gallery__slide:nth-child(5) .about-space-image {
    object-position: center 56%;
}

.clinic-gallery__caption {
    position: absolute;
    z-index: 2;
    bottom: 17px;
    left: 18px;
    max-width: calc(100% - 200px);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.45;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.clinic-gallery__caption span {
    margin-right: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.clinic-gallery__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    color: var(--clr-navy);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 12px rgba(10, 25, 37, 0.17);
    font-size: 1.65rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.clinic-gallery__arrow--prev {
    left: 14px;
}

.clinic-gallery__arrow--next {
    right: 14px;
}

.clinic-gallery__arrow:hover {
    color: #fff;
    background: var(--clr-navy);
}

.clinic-gallery__arrow:focus-visible,
.clinic-gallery__dot:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.clinic-gallery__counter {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    background: rgba(11, 31, 47, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    backdrop-filter: blur(5px);
}

.clinic-gallery__dots {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clinic-gallery__dot {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.clinic-gallery__dot::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    content: '';
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, background-color 0.25s ease;
}

.clinic-gallery__dot[aria-current="true"]::before {
    width: 20px;
    background: #fff;
}

.about-space-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 40px;
}

.about-space-eyebrow,
.arrival-photo-label {
    display: inline-flex;
    align-self: flex-start;
    color: var(--clr-green);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.11em;
}

.about-space-title {
    margin: 9px 0 13px;
    color: var(--clr-navy);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.35;
}

.about-space-desc {
    margin: 0;
    color: #536673;
    font-size: 1rem;
    line-height: 1.75;
    word-break: keep-all;
}

.about-space-points {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.about-space-points span {
    padding: 6px 9px;
    border: 1px solid #dce4e8;
    border-radius: 5px;
    color: #405563;
    background: #f7f9fa;
    font-size: 0.82rem;
    font-weight: 750;
}

.about-space-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: 22px;
    color: var(--clr-navy);
    font-size: 0.92rem;
    font-weight: 850;
    text-decoration: none;
}

.about-space-link:hover {
    color: var(--clr-green);
}

.arrival-photo-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid #dfe5e9;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(28, 49, 68, 0.05);
}

.arrival-photo-image {
    min-height: 205px;
    object-position: 62% 53%;
}

.arrival-photo-content {
    align-self: center;
    padding: 25px 30px;
}

.arrival-photo-content h3 {
    margin: 7px 0 8px;
    color: var(--clr-navy);
    font-size: 1.22rem;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.arrival-photo-content p {
    margin: 0;
    color: #586a76;
    font-size: 0.96rem;
    line-height: 1.68;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .about-space-section {
        padding: 26px 10px 38px;
    }

    .about-space-section .about-container {
        padding-right: 0;
        padding-left: 0;
    }

    .about-space-card,
    .arrival-photo-card {
        grid-template-columns: 1fr;
    }

    .clinic-gallery {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .clinic-gallery__arrow {
        width: 44px;
        height: 44px;
    }

    .clinic-gallery__arrow--prev {
        left: 10px;
    }

    .clinic-gallery__arrow--next {
        right: 10px;
    }

    .clinic-gallery__caption {
        bottom: 47px;
        left: 15px;
        max-width: calc(100% - 30px);
        font-size: 0.88rem;
    }

    .clinic-gallery__dots {
        right: auto;
        bottom: 8px;
        left: 50%;
        gap: 2px;
        transform: translateX(-50%);
    }

    .about-space-content {
        padding: 25px 21px 27px;
    }

    .about-space-title {
        font-size: 1.38rem;
    }

    .about-space-desc {
        font-size: 1rem;
        line-height: 1.72;
    }

    .about-space-link {
        min-height: 44px;
        margin-top: 17px;
        font-size: 0.96rem;
    }

    .arrival-photo-card {
        margin-bottom: 18px;
    }

    .arrival-photo-image {
        min-height: 0;
        aspect-ratio: 16 / 9;
        object-position: 62% 53%;
    }

    .arrival-photo-content {
        padding: 20px 19px 22px;
    }

    .arrival-photo-content h3 {
        font-size: 1.12rem;
        line-height: 1.45;
    }

    .arrival-photo-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clinic-gallery__track {
        transition: none;
    }
}

/* =============================================================================
   2026-07 MAIN HERO COMPOSITE V12
   ============================================================================= */
.home .clinic-hero {
    min-height: 395px;
    padding: 0 30px;
    background-color: #fff;
    background-image:
        url('images/hero-doctors-composite-v4.webp'),
        radial-gradient(circle at 9% 58%, rgba(150, 204, 247, 0.16), transparent 31%),
        radial-gradient(circle at 91% 58%, rgba(179, 223, 157, 0.18), transparent 31%),
        linear-gradient(90deg, #eaf5ff 0%, #fff 43%, #fff 57%, #eff9e9 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center center, center, center, center;
    background-size: auto clamp(480px, 34vw, 520px), cover, cover, cover;
}

.home .clinic-hero::before,
.home .clinic-hero::after {
    z-index: 1;
    opacity: 0.24;
}

.home .clinic-hero__inner {
    z-index: 2;
    max-width: 1520px;
    min-height: 395px;
    grid-template-columns: minmax(310px, 1fr) 280px minmax(310px, 1fr);
    grid-template-areas: 'left center right';
    gap: 0;
}

.home .doctor-profile,
.home .doctor-profile--right {
    min-height: 395px;
    height: 395px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    overflow: visible;
}

.home .doctor-profile--left {
    grid-area: left;
    justify-content: flex-start;
}

.home .hero-center-badge-wrap {
    grid-area: center;
}

.home .doctor-profile--right {
    grid-area: right;
    justify-content: flex-end;
}

.home .doctor-image-wrapper {
    display: none !important;
}

.home .doctor-info-text,
.home .doctor-profile--right .doctor-info-text {
    width: min(310px, 100%);
    min-width: 0;
    padding: 0;
    text-align: left;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.96);
}

.home .doctor-role-tag {
    display: none;
}

.home .doctor-name {
    margin-bottom: 14px;
    font-size: 1.62rem;
}

.home .specialty-list {
    gap: 9px;
}

.home .specialty-list li {
    font-size: clamp(0.86rem, 0.88vw, 0.96rem);
    line-height: 1.34;
}

.home .hero-center-badge {
    width: 278px;
    height: 315px;
    padding: 12px 0 7px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1320px) and (min-width: 769px) {
    .home .doctor-info-text,
    .home .doctor-profile--right .doctor-info-text {
        width: min(270px, 100%);
    }

    .home .specialty-list li {
        font-size: 0.84rem;
    }
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .clinic-hero {
        min-height: 370px;
        padding-right: 18px;
        padding-left: 18px;
        background-size: auto 420px, cover, cover, cover;
    }

    .home .clinic-hero__inner {
        min-height: 370px;
        grid-template-columns: minmax(250px, 1fr) 225px minmax(250px, 1fr);
        grid-template-areas: 'left center right';
        gap: 0;
    }

    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 370px;
        height: 370px;
    }

    .home .doctor-info-text,
    .home .doctor-profile--right .doctor-info-text {
        width: min(250px, 100%);
    }

    .home .doctor-name {
        font-size: 1.42rem;
    }

    .home .specialty-list {
        gap: 7px;
    }

    .home .specialty-list li {
        font-size: clamp(0.72rem, 0.94vw, 0.82rem);
    }

    .home .hero-center-badge {
        width: 220px;
        height: 292px;
    }

    .home .badge-title {
        font-size: 1.52rem;
    }

    .home .badge-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .home .clinic-hero {
        min-height: 0;
        padding: 0 8px 12px;
        background-image:
            url('images/hero-doctors-composite-v4.webp'),
            linear-gradient(90deg, #edf6ff 0%, #fff 45%, #fff 55%, #f1f9ec 100%);
        background-repeat: no-repeat, no-repeat;
        background-position: center 4px, center;
        background-size: auto 235px, cover;
    }

    .home .clinic-hero__inner {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 235px auto;
        grid-template-areas: 'center center' 'left right';
        gap: 8px;
    }

    .home .hero-center-badge-wrap {
        min-width: 0;
        min-height: 235px;
        height: 235px;
    }

    .home .hero-center-badge {
        width: 178px;
        height: 208px;
        padding: 10px 0 4px;
        background: rgba(255, 255, 255, 0.24);
    }

    .home .badge-title {
        gap: 7px;
        font-size: 1.02rem;
    }

    .home .badge-title::before,
    .home .badge-title::after {
        width: 28px;
    }

    .home .badge-subtitle {
        margin-bottom: 1px;
        font-size: 0.88rem;
    }

    .home .hero-award {
        min-height: 92px;
    }

    .home .hero-laurel {
        width: 33px;
        height: 84px;
        flex-basis: 33px;
    }

    .home .hero-award-copy {
        width: 112px;
        flex-basis: 112px;
    }

    .home .youtube-brand {
        font-size: 0.67rem;
    }

    .home .youtube-play-icon {
        width: 17px;
        height: 17px;
    }

    .home .youtube-subs {
        font-size: 1.08rem;
    }

    .home .badge-tag {
        font-size: 0.68rem;
    }

    .home .since-tag {
        width: 152px;
        margin-top: 0;
        font-size: 0.65rem;
    }

    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 0;
        height: auto;
        padding: 14px 10px 13px;
        border: 1px solid rgba(32, 67, 92, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 3px 10px rgba(25, 55, 77, 0.05);
        display: block;
        overflow: hidden;
    }

    .home .doctor-info-text,
    .home .doctor-profile--right .doctor-info-text {
        width: 100%;
        padding: 0;
    }

    .home .doctor-name {
        margin-bottom: 8px;
        font-size: 1.08rem;
    }

    .home .doctor-title {
        font-size: 0.72rem;
    }

    .home .specialty-list {
        gap: 5px;
    }

    .home .specialty-list li {
        gap: 5px;
        font-size: clamp(0.69rem, 2.85vw, 0.78rem);
        line-height: 1.42;
        white-space: normal;
    }

    .home .bullet {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
        box-shadow: inset 0 0 0 5px currentColor;
    }
}

@media (max-width: 390px) {
    .home .doctor-profile,
    .home .doctor-profile--right {
        min-height: 0;
        height: auto;
    }

    .home .specialty-list li {
        font-size: 0.69rem;
    }
}

/* V13 cascade lock: keep the hero background and both doctors as separate layers. */
.home .clinic-hero {
    position: relative;
    overflow: hidden;
    background-image:
        url('images/hero-clinic-background-v5.webp'),
        radial-gradient(circle at 9% 58%, rgba(150, 204, 247, 0.14), transparent 31%),
        radial-gradient(circle at 91% 58%, rgba(179, 223, 157, 0.16), transparent 31%),
        linear-gradient(90deg, #eaf5ff 0%, #fff 43%, #fff 57%, #eff9e9 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center, center, center, center;
    background-size: cover, cover, cover, cover;
}

.home .clinic-hero__inner { position: relative; }

.home .hero-doctor-cutout {
    position: absolute;
    z-index: 2;
    display: block;
    width: auto;
    max-width: none;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 12px 15px rgba(32, 61, 74, 0.08));
}

.home .hero-doctor-cutout--male {
    height: 680px;
    bottom: -285px;
    left: calc(50% - 435px);
}

.home .hero-doctor-cutout--female {
    height: 665px;
    bottom: -270px;
    right: calc(50% - 435px);
}

.home .doctor-profile { position: relative; z-index: 4; }
.home .hero-center-badge-wrap { position: relative; z-index: 5; }

@media (max-width: 1240px) and (min-width: 769px) {
    .home .hero-doctor-cutout--male {
        height: 600px;
        bottom: -230px;
        left: calc(50% - 360px);
    }

    .home .hero-doctor-cutout--female {
        height: 590px;
        bottom: -220px;
        right: calc(50% - 360px);
    }
}

@media (max-width: 768px) {
    .home .clinic-hero {
        background-image:
            url('images/hero-clinic-background-v5.webp'),
            linear-gradient(90deg, #edf6ff 0%, #fff 45%, #fff 55%, #f1f9ec 100%);
        background-position: center top, center;
        background-size: auto 235px, cover;
    }

    .home .hero-doctor-cutout--male {
        height: 400px;
        top: 0;
        bottom: auto;
        left: calc(50% - 185px);
    }

    .home .hero-doctor-cutout--female {
        height: 390px;
        top: 2px;
        right: calc(50% - 185px);
        bottom: auto;
    }

    .home .doctor-profile { z-index: 6; }
}

/* V13 final visual tuning */
@media (min-width: 1241px) {
    .home .hero-doctor-cutout--male { left: calc(50% - 345px); }
    .home .hero-doctor-cutout--female { right: calc(50% - 345px); }
}

.page-about .clinic-divide-photo {
    top: 12px;
    right: 18px;
    height: 285px;
    max-width: 40%;
}

@media (max-width: 768px) {
    .page-about .clinic-divide-photo {
        top: 18px;
        right: 8px;
        height: 205px;
        max-width: 36%;
    }
}

/* 2026-07 doctor portrait crop V14: prioritize faces and upper bodies. */
.page-about .clinic-divide-photo {
    top: auto;
    right: 12px;
    bottom: -115px;
    height: 460px;
    max-width: 43%;
}

.page-doctor .doc-hero-img-wrap {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.13);
    border-width: 4px;
}

.page-doctor .doc-hero-img--cutout {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 2%;
    transform: scale(1.06);
    transform-origin: center top;
}

@media (max-width: 768px) {
    .page-about .clinic-divide-photo {
        right: 4px;
        bottom: -55px;
        height: 300px;
        max-width: 40%;
    }

    .page-doctor .doc-hero-img-wrap {
        width: 210px;
        height: 210px;
    }
}

/* 2026-07 ACTUAL SEATED DOCTOR PHOTOS V15
   Preserve the real faces; only crop, brighten and feather the supplied photos. */
.home .hero-doctor-photo {
    top: 0;
    bottom: auto;
    width: 390px;
    height: 395px;
    object-fit: cover;
    filter: brightness(1.2) contrast(0.88) saturate(0.88);
    opacity: 0.98;
    -webkit-mask-image: radial-gradient(ellipse 63% 70% at 50% 54%, #000 52%, rgba(0,0,0,.88) 64%, transparent 91%);
    mask-image: radial-gradient(ellipse 63% 70% at 50% 54%, #000 52%, rgba(0,0,0,.88) 64%, transparent 91%);
    filter: brightness(1.2) contrast(0.88) saturate(0.88) drop-shadow(0 12px 15px rgba(32,61,74,.06));
}

.home .hero-doctor-photo.hero-doctor-cutout--male {
    left: calc(50% - 430px);
    right: auto;
    object-position: 68% 50%;
}

.home .hero-doctor-photo.hero-doctor-cutout--female {
    right: calc(50% - 430px);
    left: auto;
    object-position: 59% 50%;
}

.page-about .clinic-divide-photo {
    top: 30px;
    right: 15px;
    bottom: auto;
    width: 172px;
    height: 260px;
    max-width: 40%;
    border-radius: 86px 86px 24px 24px;
    object-fit: cover;
    filter: brightness(1.16) contrast(0.9) saturate(0.9);
    box-shadow: 0 10px 22px rgba(27,55,72,.08);
    -webkit-mask-image: linear-gradient(#000 0%, #000 80%, transparent 100%);
    mask-image: linear-gradient(#000 0%, #000 80%, transparent 100%);
}

.page-about .clinic-divide-photo--male { object-position: 68% 43%; }
.page-about .clinic-divide-photo--female { object-position: 59% 41%; }

.page-doctor .doc-hero-img--actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.18) contrast(0.9) saturate(0.92);
    transform: scale(1.48);
}

.page-doctor .doc-hero-img--actual-male {
    object-position: 68% 43%;
    transform-origin: 68% 43%;
}

.page-doctor .doc-hero-img--actual-female {
    object-position: 59% 40%;
    transform-origin: 59% 40%;
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .hero-doctor-photo {
        width: 345px;
        height: 370px;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--male { left: calc(50% - 365px); }
    .home .hero-doctor-photo.hero-doctor-cutout--female { right: calc(50% - 365px); }
}

@media (max-width: 768px) {
    .home .hero-doctor-photo {
        top: 0;
        width: 205px;
        height: 235px;
        filter: brightness(1.2) contrast(0.88) saturate(0.88);
        -webkit-mask-image: radial-gradient(ellipse 66% 72% at 50% 52%, #000 50%, rgba(0,0,0,.9) 64%, transparent 92%);
        mask-image: radial-gradient(ellipse 66% 72% at 50% 52%, #000 50%, rgba(0,0,0,.9) 64%, transparent 92%);
    }

    .home .hero-doctor-photo.hero-doctor-cutout--male {
        left: calc(50% - 205px);
        object-position: 68% 48%;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--female {
        right: calc(50% - 205px);
        object-position: 59% 48%;
    }

    .page-about .clinic-divide-photo {
        top: 24px;
        right: 6px;
        bottom: auto;
        width: 112px;
        height: 180px;
        max-width: 38%;
        border-radius: 56px 56px 18px 18px;
    }

    .page-doctor .doc-hero-img--actual { transform: scale(1.52); }
}

/* V16 tighter crops from the real seated photographs. */
.home .hero-doctor-photo {
    height: 395px;
    object-position: center top;
}

.home .hero-doctor-photo.hero-doctor-cutout--male {
    left: calc(50% - 375px);
    width: 350px;
    object-position: 50% 8%;
}

.home .hero-doctor-photo.hero-doctor-cutout--female {
    right: calc(50% - 375px);
    width: 275px;
    object-position: 50% 5%;
}

.page-about .clinic-divide-photo--male,
.page-about .clinic-divide-photo--female {
    object-position: center top;
}

.page-doctor .doc-hero-img--actual-male {
    object-position: center 8%;
    transform: scale(1.12);
    transform-origin: center 8%;
}

.page-doctor .doc-hero-img--actual-female {
    object-position: center 5%;
    transform: scale(1.06);
    transform-origin: center 5%;
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .hero-doctor-photo.hero-doctor-cutout--male {
        left: calc(50% - 335px);
        width: 315px;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--female {
        right: calc(50% - 335px);
        width: 245px;
    }
}

@media (max-width: 768px) {
    .home .hero-doctor-photo.hero-doctor-cutout--male {
        left: calc(50% - 188px);
        width: 170px;
        height: 235px;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--female {
        right: calc(50% - 188px);
        width: 145px;
        height: 235px;
    }

    .page-doctor .doc-hero-img--actual-male { transform: scale(1.16); }
    .page-doctor .doc-hero-img--actual-female { transform: scale(1.1); }
}

/* 2026-07 dual clinic logo lockup V17 */
.site-header .logo-area {
    min-width: 0;
}

.site-header .site-logo-link,
.home .site-header .site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
}

.site-header .site-logo-secondary {
    display: block;
    width: auto;
    height: 46px;
    max-width: 190px;
    padding-left: 0;
    border-left: 0;
    object-fit: contain;
}

.home .site-header .site-logo-secondary {
    height: 50px;
}

@media (max-width: 1024px) {
    .site-header .site-logo-link,
    .home .site-header .site-logo-link {
        gap: 10px;
    }

    .site-header .site-logo-img,
    .home .site-header .site-logo-img {
        height: 42px;
        max-width: 220px;
    }

    .site-header .site-logo-secondary,
    .home .site-header .site-logo-secondary {
        height: 40px;
        max-width: 155px;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .site-header .header-container,
    .home .site-header .header-container {
        gap: 8px;
    }

    .site-header .site-logo-link,
    .home .site-header .site-logo-link {
        gap: 7px;
    }

    .site-header .site-logo-img,
    .home .site-header .site-logo-img {
        width: auto;
        height: 32px;
        max-width: 145px;
    }

    .site-header .site-logo-secondary,
    .home .site-header .site-logo-secondary {
        width: auto;
        height: 30px;
        max-width: 118px;
        padding-left: 0;
    }
}

@media (max-width: 390px) {
    .site-header .site-logo-img,
    .home .site-header .site-logo-img {
        height: 29px;
        max-width: 132px;
    }

    .site-header .site-logo-secondary,
    .home .site-header .site-logo-secondary {
        height: 27px;
        max-width: 105px;
    }
}

/* 2026-07 AI seated doctor portraits and seamless dual-logo lockup V26 */
.site-header .site-logo-secondary,
.home .site-header .site-logo-secondary {
    padding-left: 0;
    border-left: 0;
}

.home .hero-doctor-photo {
    top: -7px;
    bottom: auto;
    width: 300px;
    height: 430px;
    object-fit: contain;
    object-position: center top;
    opacity: 1;
    filter: drop-shadow(0 14px 18px rgba(24, 58, 78, .09));
    -webkit-mask-image: none;
    mask-image: none;
}

.home .hero-doctor-photo.hero-doctor-cutout--male {
    left: calc(50% - 390px);
    right: auto;
    width: 294px;
    object-position: center top;
    filter: drop-shadow(0 14px 18px rgba(24, 58, 78, .09));
}

.home .hero-doctor-photo.hero-doctor-cutout--female {
    right: calc(50% - 390px);
    left: auto;
    width: 294px;
    object-position: center top;
    filter: drop-shadow(0 14px 18px rgba(24, 58, 78, .09));
}

@media (max-width: 1240px) and (min-width: 769px) {
    .home .hero-doctor-photo {
        top: -2px;
        width: 260px;
        height: 392px;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--male {
        left: calc(50% - 335px);
        width: 260px;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--female {
        right: calc(50% - 335px);
        width: 260px;
    }
}

@media (max-width: 768px) {
    .home .hero-doctor-photo {
        top: 3px;
        width: 160px;
        height: 232px;
        object-fit: contain;
        object-position: center top;
        filter: drop-shadow(0 8px 10px rgba(24, 58, 78, .08));
        -webkit-mask-image: none;
        mask-image: none;
    }

    .home .hero-doctor-photo.hero-doctor-cutout--male {
        left: calc(50% - 190px);
        width: 160px;
        object-position: center top;
        filter: drop-shadow(0 8px 10px rgba(24, 58, 78, .08));
    }

    .home .hero-doctor-photo.hero-doctor-cutout--female {
        right: calc(50% - 190px);
        width: 160px;
        object-position: center top;
        filter: drop-shadow(0 8px 10px rgba(24, 58, 78, .08));
    }
}

/* 2026-07 compact doctor photos inside the existing treatment cards V19 */
.page-about .clinic-divide-photo,
.page-about .clinic-divide-photo--male,
.page-about .clinic-divide-photo--female {
    top: 24px;
    right: 30px;
    bottom: auto;
    width: 112px;
    height: 132px;
    max-width: none;
    border-radius: 18px 18px 12px 12px;
    object-fit: cover;
    object-position: center top;
    box-shadow: none;
    filter: brightness(1.12) contrast(.92) saturate(.92);
    -webkit-mask-image: linear-gradient(#000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(#000 0%, #000 78%, transparent 100%);
}

.page-about .clinic-badge,
.page-about .clinic-divide-title,
.page-about .clinic-divide-doctor {
    max-width: calc(100% - 138px);
}

.page-about .clinic-divide-desc {
    max-width: 100%;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .page-about .clinic-divide-photo,
    .page-about .clinic-divide-photo--male,
    .page-about .clinic-divide-photo--female {
        top: 20px;
        right: 14px;
        width: 94px;
        height: 116px;
        max-width: none;
        border-radius: 15px 15px 10px 10px;
    }

    .page-about .clinic-badge,
    .page-about .clinic-divide-title,
    .page-about .clinic-divide-doctor {
        max-width: calc(100% - 108px);
    }

    .page-about .clinic-divide-desc {
        max-width: 100%;
        margin-top: 10px;
    }
}

/* 2026-07 supplied pre-brightened Kim Sun-min portrait V21 */
.home .hero-doctor-photo.hero-doctor-cutout--female {
    filter: drop-shadow(0 12px 15px rgba(32, 61, 74, .06));
}

.page-about .clinic-divide-photo--female,
.page-doctor .doc-hero-img--actual-female {
    filter: none;
}

/* 2026-07 supplied corrected Kim Kyoung-tae portrait V22 */
.home .hero-doctor-photo.hero-doctor-cutout--male {
    filter: drop-shadow(0 12px 15px rgba(32, 61, 74, .06));
}

.page-about .clinic-divide-photo--male,
.page-doctor .doc-hero-img--actual-male {
    filter: none;
}

/* 2026-07 hero doctor copy balance and disease-specific icons V24 */
.home .specialty-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 10px rgba(20, 57, 87, .14), inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.home .specialty-icon--navy {
    background: linear-gradient(145deg, #1763a7, #0a3f79);
}

.home .specialty-icon--green {
    background: linear-gradient(145deg, #31b85d, #13853c);
}

.home .specialty-icon svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 769px) {
    .home .doctor-profile--left .doctor-info-text {
        transform: translateX(clamp(42px, 5.4vw, 82px));
    }

    .home .doctor-info-text,
    .home .doctor-profile--right .doctor-info-text {
        width: min(292px, 100%);
    }

    .home .doctor-name {
        margin-bottom: 14px;
        font-size: clamp(1.58rem, 1.75vw, 1.86rem);
        line-height: 1.12;
        letter-spacing: -.035em;
    }

    .home .doctor-title {
        font-size: .84rem;
    }

    .home .specialty-list {
        gap: 8px;
    }

    .home .specialty-list li {
        gap: 9px;
        font-size: clamp(.9rem, .92vw, 1rem);
        font-weight: 600;
        line-height: 1.32;
        letter-spacing: -.025em;
    }
}

@media (max-width: 1099px) and (min-width: 769px) {
    .home .doctor-profile--left .doctor-info-text {
        transform: translateX(22px);
    }

    .home .doctor-info-text,
    .home .doctor-profile--right .doctor-info-text {
        width: min(254px, 100%);
    }

    .home .doctor-name {
        font-size: 1.46rem;
    }

    .home .specialty-list li {
        gap: 7px;
        font-size: .82rem;
    }

    .home .specialty-icon {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .home .specialty-icon svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 768px) {
    .home .doctor-profile--left .doctor-info-text {
        transform: none;
    }

    .home .doctor-name {
        margin-bottom: 9px;
        font-size: 1.18rem;
    }

    .home .specialty-list {
        gap: 6px;
    }

    .home .specialty-list li {
        gap: 6px;
        font-size: clamp(.73rem, 3vw, .82rem);
        font-weight: 600;
        line-height: 1.38;
    }

    .home .specialty-icon {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
        box-shadow: 0 2px 6px rgba(20, 57, 87, .12), inset 0 0 0 1px rgba(255, 255, 255, .2);
    }

    .home .specialty-icon svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 390px) {
    .home .doctor-name {
        font-size: 1.1rem;
    }

    .home .specialty-list li {
        font-size: .71rem;
    }
}

/* 2026-07 AI doctor portraits for clinic cards V27 */
.page-about .clinic-divide-photo,
.page-about .clinic-divide-photo--male,
.page-about .clinic-divide-photo--female {
    top: 16px;
    right: 22px;
    bottom: auto;
    width: 156px;
    height: 194px;
    max-width: none;
    border: 0;
    border-radius: 0;
    object-fit: contain;
    object-position: center top;
    opacity: 1;
    box-shadow: none;
    filter: drop-shadow(0 10px 14px rgba(23, 55, 74, .09));
    -webkit-mask-image: none;
    mask-image: none;
}

.page-about .clinic-badge,
.page-about .clinic-divide-title,
.page-about .clinic-divide-doctor {
    max-width: calc(100% - 182px);
}

@media (max-width: 768px) {
    .page-about .clinic-divide-photo,
    .page-about .clinic-divide-photo--male,
    .page-about .clinic-divide-photo--female {
        top: 16px;
        right: 12px;
        width: 112px;
        height: 140px;
        max-width: none;
        object-fit: contain;
        object-position: center top;
        filter: drop-shadow(0 7px 10px rgba(23, 55, 74, .08));
        -webkit-mask-image: none;
        mask-image: none;
    }

    .page-about .clinic-badge,
    .page-about .clinic-divide-title,
    .page-about .clinic-divide-doctor {
        max-width: calc(100% - 126px);
    }
}

/* =============================================================================
   2026-07 SUBPAGE READABILITY & RESPONSIVE REFRESH V28
   Preserve the existing information architecture while improving type, spacing,
   image separation, touch targets and visual hierarchy.
   ============================================================================= */
.page-about .about-container,
.page-directions .about-container {
    width: min(1180px, calc(100% - 40px));
}

.page-about .section-title,
.page-directions .section-title {
    margin-bottom: 30px;
    color: #0b4f91;
    font-size: clamp(1.75rem, 2.35vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: -.04em;
}

.page-about .intro-card-primary,
.page-directions .directions-alert-card {
    border: 1px solid #dfe8ef;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(29, 55, 78, .06);
}

.page-about .intro-description,
.page-directions .alert-desc-text {
    color: #405568;
    font-size: 1.05rem;
    line-height: 1.78;
    word-break: keep-all;
}

/* About: give every portrait a dedicated column so copy never overlaps it. */
.page-about .clinic-divide-grid {
    gap: 28px;
    margin-bottom: 42px;
}

.page-about .clinic-divide-card {
    min-height: 470px;
    padding: 34px 32px 30px;
    border: 1px solid #dbe6ee;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(27, 54, 76, .07);
    transform: none;
}

.page-about .clinic-divide-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(27, 54, 76, .09);
}

.page-about .clinic-divide-card::after {
    width: 46%;
    opacity: .82;
}

.page-about .clinic-divide-photo,
.page-about .clinic-divide-photo--male,
.page-about .clinic-divide-photo--female {
    top: 24px;
    right: 28px;
    width: 168px;
    height: 210px;
    filter: drop-shadow(0 12px 18px rgba(23, 55, 74, .1));
}

.page-about .clinic-badge,
.page-about .clinic-divide-title,
.page-about .clinic-divide-doctor,
.page-about .clinic-divide-desc {
    width: calc(100% - 202px);
    max-width: calc(100% - 202px);
}

.page-about .clinic-badge {
    padding: 7px 14px;
    margin-bottom: 20px;
    font-size: .9rem;
    font-weight: 750;
}

.page-about .clinic-divide-title {
    margin-bottom: 13px;
    font-size: clamp(1.45rem, 1.75vw, 1.72rem);
    line-height: 1.3;
    letter-spacing: -.035em;
}

.page-about .clinic-divide-doctor {
    margin-bottom: 15px;
    color: #334b60;
    font-size: 1.02rem;
    line-height: 1.62;
    word-break: keep-all;
}

.page-about .clinic-divide-desc {
    margin-top: 4px;
    margin-bottom: 26px;
    color: #405568;
    font-size: 1.04rem;
    line-height: 1.78;
    word-break: keep-all;
}

.page-about .clinic-card-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.page-about .clinic-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 11px;
    font-size: 1rem;
    line-height: 1.25;
}

.page-about .tel-callout-card {
    min-height: 76px;
    padding: 19px 24px;
    border: 1px solid #e4e0d8;
    border-radius: 16px;
    background: #fdfbf7;
    font-size: 1.08rem;
    line-height: 1.5;
    box-shadow: 0 8px 22px rgba(53, 47, 38, .04);
}

/* Directions: clearer cards and larger, more tappable controls. */
.page-directions .directions-alert-card {
    margin: 28px auto 0;
    padding: 23px 26px;
    border-left: 4px solid #0b4f91;
}

.page-directions .directions-hours-section,
.page-directions .directions-booking-section,
.page-directions .directions-untact-section,
.page-directions .directions-map-section,
.page-directions .directions-checklist-section {
    padding: 58px 0;
}

.page-directions .expanded-hours-card,
.page-directions .booking-card,
.page-directions .untact-info-card,
.page-directions .map-details-card,
.page-directions .map-iframe-card,
.page-directions .checklist-card {
    border: 1px solid #dce6ed;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(27, 54, 76, .065);
}

.page-directions .expanded-hours-row {
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 70px;
    padding: 15px 25px;
}

.page-directions .expanded-hours-day {
    font-size: 1.04rem;
}

.page-directions .expanded-hours-time {
    font-size: 1.08rem;
    line-height: 1.55;
}

.page-directions .expanded-hours-time em {
    margin-left: 12px;
    font-size: .87rem;
}

.page-directions .expanded-hours-notices {
    margin-top: 18px;
    padding: 17px 19px;
    border-left-width: 4px;
    border-radius: 10px;
    font-size: .96rem;
    line-height: 1.65;
}

.page-directions .booking-grid {
    gap: 22px;
}

.page-directions .booking-card {
    position: relative;
    min-height: 320px;
    padding: 29px 27px 27px;
    border-top: 4px solid #0b4f91;
}

.page-directions .booking-card:nth-child(2) {
    border-top-color: #03a94f;
}

.page-directions .booking-card:nth-child(3) {
    border-top-color: #f3c500;
}

.page-directions .booking-card-title {
    margin-bottom: 14px;
    color: #183a57;
    font-size: 1.22rem;
    line-height: 1.35;
}

.page-directions .booking-phone-num {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.page-directions .booking-desc {
    margin-bottom: 18px;
    color: #405568;
    font-size: 1rem;
    line-height: 1.7;
    word-break: keep-all;
}

.page-directions .booking-doc-rules li {
    margin-bottom: 8px;
    padding-left: 15px;
    color: #405568;
    font-size: .94rem;
    line-height: 1.6;
}

.page-directions .booking-btn,
.page-directions .untact-btn,
.page-directions .map-nav-btn {
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 11px;
    font-size: 1rem;
    line-height: 1.25;
}

.page-directions .untact-info-card {
    padding: 36px;
}

.page-directions .untact-lead {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.65;
}

.page-directions .untact-step {
    padding: 24px;
    border: 1px solid #e1e8ed;
    border-radius: 14px;
    background: #f7f9fb;
}

.page-directions .untact-step .step-num {
    width: 34px;
    height: 34px;
    font-size: .9rem;
}

.page-directions .untact-step .step-title {
    font-size: 1.12rem;
}

.page-directions .untact-step .step-desc {
    color: #405568;
    font-size: 1rem;
    line-height: 1.68;
}

.page-directions .untact-actions {
    margin-top: 24px;
}

.page-directions .map-layout-grid {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.35fr);
    gap: 24px;
}

.page-directions .map-details-card {
    gap: 20px;
    padding: 31px;
}

.page-directions .map-detail-title {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.page-directions .map-detail-text {
    color: #405568;
    font-size: 1rem;
    line-height: 1.7;
    word-break: keep-all;
}

.page-directions .map-detail-item + .map-detail-item {
    padding-top: 19px;
}

.page-directions .map-nav-links {
    gap: 10px;
    margin-top: 8px;
}

.page-directions .map-iframe-card {
    min-height: 420px;
}

.page-directions .checklist-grid {
    gap: 20px;
}

.page-directions .checklist-grid .checklist-card {
    padding: 28px;
}

.page-directions .checklist-card-title {
    margin-bottom: 13px;
    font-size: 1.14rem;
    line-height: 1.45;
}

.page-directions .checklist-card-text {
    color: #405568;
    font-size: 1rem;
    line-height: 1.72;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .page-about .clinic-divide-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .page-about .clinic-divide-card {
        min-height: 420px;
    }

    .page-directions .booking-grid {
        grid-template-columns: 1fr;
    }

    .page-directions .booking-card {
        min-height: 0;
    }

    .page-directions .map-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-about .about-container,
    .page-directions .about-container {
        width: calc(100% - 32px);
        padding-right: 0;
        padding-left: 0;
    }

    .page-about .section-title,
    .page-directions .section-title {
        margin-bottom: 22px;
        font-size: clamp(1.45rem, 6.2vw, 1.72rem);
        line-height: 1.32;
    }

    .page-about .intro-card-primary,
    .page-directions .directions-alert-card {
        border-radius: 14px;
    }

    .page-about .intro-description,
    .page-directions .alert-desc-text {
        font-size: 1rem;
        line-height: 1.72;
    }

    .page-about .clinic-divide-card {
        min-height: 0;
        padding: 24px 22px 22px;
        border-radius: 17px;
    }

    .page-about .clinic-divide-photo,
    .page-about .clinic-divide-photo--male,
    .page-about .clinic-divide-photo--female {
        position: relative;
        z-index: 2;
        top: auto;
        right: auto;
        bottom: auto;
        width: 158px;
        height: 198px;
        margin: -4px auto 12px;
        align-self: center;
        object-fit: contain;
        filter: drop-shadow(0 10px 14px rgba(23, 55, 74, .09));
    }

    .page-about .clinic-badge,
    .page-about .clinic-divide-title,
    .page-about .clinic-divide-doctor,
    .page-about .clinic-divide-desc {
        width: 100%;
        max-width: 100%;
    }

    .page-about .clinic-badge {
        margin-bottom: 14px;
        font-size: .86rem;
    }

    .page-about .clinic-divide-title {
        font-size: 1.42rem;
    }

    .page-about .clinic-divide-doctor {
        font-size: 1rem;
        line-height: 1.62;
    }

    .page-about .clinic-divide-desc {
        margin-top: 5px;
        font-size: 1rem;
        line-height: 1.74;
    }

    .page-about .clinic-card-links {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .page-about .clinic-btn {
        width: 100%;
        min-height: 52px;
        font-size: .98rem;
    }

    .page-about .tel-callout-card {
        min-height: 0;
        padding: 18px;
        align-items: flex-start;
        font-size: 1rem;
        text-align: left;
    }

    .page-directions .directions-alert-card {
        margin-top: 20px;
        margin-bottom: 0;
        padding: 19px 18px;
    }

    .page-directions .directions-hours-section,
    .page-directions .directions-booking-section,
    .page-directions .directions-untact-section,
    .page-directions .directions-map-section,
    .page-directions .directions-checklist-section {
        padding: 42px 0;
    }

    .page-directions .expanded-hours-row {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 68px;
        padding: 13px 15px;
    }

    .page-directions .expanded-hours-day {
        font-size: .94rem;
    }

    .page-directions .expanded-hours-time {
        font-size: .98rem;
        line-height: 1.55;
    }

    .page-directions .expanded-hours-time em {
        display: block;
        margin: 3px 0 0;
        font-size: .82rem;
    }

    .page-directions .expanded-hours-notices {
        padding: 15px;
        font-size: .9rem;
    }

    .page-directions .booking-card,
    .page-directions .untact-info-card,
    .page-directions .map-details-card,
    .page-directions .checklist-card {
        padding: 22px 20px;
        border-radius: 16px;
    }

    .page-directions .booking-card-title {
        font-size: 1.18rem;
    }

    .page-directions .booking-desc,
    .page-directions .untact-step .step-desc,
    .page-directions .map-detail-text,
    .page-directions .checklist-card-text {
        font-size: .98rem;
        line-height: 1.7;
    }

    .page-directions .booking-doc-rules li {
        font-size: .92rem;
    }

    .page-directions .booking-btn,
    .page-directions .untact-btn,
    .page-directions .map-nav-btn {
        width: 100%;
        min-height: 54px;
        font-size: 1rem;
    }

    .page-directions .untact-lead {
        margin-bottom: 22px;
        font-size: 1.08rem;
    }

    .page-directions .untact-step {
        padding: 20px;
    }

    .page-directions .map-details-card {
        gap: 17px;
    }

    .page-directions .map-detail-title {
        font-size: 1.04rem;
    }

    .page-directions .map-iframe-card {
        min-height: 320px;
    }

    .page-directions .checklist-card-title {
        font-size: 1.08rem;
    }
}

/* 2026-07 clinic card copy flow below portraits V29 */
@media (min-width: 769px) {
    .page-about .clinic-divide-desc {
        width: 100%;
        max-width: 100%;
        margin-top: 32px;
    }
}

/* =============================================================================
   2026-07 DIRECTIONS LAYOUT & IN-HERO BREADCRUMBS V30
   ============================================================================= */
.subpage-main .about-hero .breadcrumb-strip,
.subpage-main .doc-profile-hero .breadcrumb-strip,
.subpage-main .subpage-hero .breadcrumb-strip {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0 0 22px;
    border: 0;
    background: transparent;
    text-align: left;
}

.subpage-main .about-hero .breadcrumb-strip .container,
.subpage-main .doc-profile-hero .breadcrumb-strip .container,
.subpage-main .subpage-hero .breadcrumb-strip .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    color: #718292;
    font-size: .84rem;
    font-weight: 650;
}

.subpage-main .about-hero .breadcrumb-strip a,
.subpage-main .subpage-hero .breadcrumb-strip a {
    color: #52697c;
}

.subpage-main .about-hero .breadcrumb-strip .sep,
.subpage-main .subpage-hero .breadcrumb-strip .sep {
    color: #a7b3bd;
}

.page-doctor .doc-profile-hero .breadcrumb-strip .container,
.page-doctor .doc-profile-hero .breadcrumb-strip a,
.page-doctor .doc-profile-hero .breadcrumb-strip .sep {
    color: rgba(255, 255, 255, .74);
}

.page-doctor .doc-profile-hero .breadcrumb-strip a:hover {
    color: #fff;
}

.page-directions {
    --directions-navy: #0b4f91;
    --directions-ink: #183a57;
    --directions-line: #dce7ee;
    --directions-soft: #f5f8fa;
}

.page-directions .about-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 48px;
    border-bottom: 1px solid #dfe8ee;
    background:
        radial-gradient(circle at 87% 18%, rgba(56, 151, 114, .13), transparent 23%),
        radial-gradient(circle at 5% 85%, rgba(41, 112, 180, .12), transparent 26%),
        linear-gradient(135deg, #f3f7fa 0%, #fff 55%, #f4f9f5 100%);
}

.page-directions .about-hero .about-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    gap: 24px 56px;
    align-items: center;
}

.page-directions .about-hero .breadcrumb-strip {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.page-directions .about-hero__title {
    margin: 0;
    color: var(--directions-navy);
    font-size: clamp(2.15rem, 3.4vw, 3rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.055em;
    text-align: left;
    word-break: keep-all;
}

.page-directions .about-hero__title span {
    white-space: nowrap;
}

.page-directions .directions-alert-card {
    min-height: 142px;
    margin: 0;
    padding: 27px 28px;
    align-items: flex-start;
    border: 1px solid rgba(177, 197, 209, .72);
    border-left: 4px solid var(--directions-navy);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 16px 38px rgba(37, 68, 91, .08);
    backdrop-filter: blur(8px);
}

.page-directions .directions-alert-card > .ico {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--directions-navy);
}

.page-directions .alert-desc-text {
    color: #425b6f;
    font-size: 1.02rem;
    line-height: 1.72;
}

.page-directions .alert-desc-text strong {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--directions-ink);
    font-size: 1.12rem;
    font-weight: 850;
}

.page-directions .directions-hours-section,
.page-directions .directions-booking-section,
.page-directions .directions-untact-section,
.page-directions .directions-map-section,
.page-directions .directions-checklist-section {
    padding: 72px 0;
}

.page-directions .directions-hours-section,
.page-directions .directions-untact-section,
.page-directions .directions-checklist-section {
    background: #fff;
}

.page-directions .directions-booking-section,
.page-directions .directions-map-section {
    background: var(--directions-soft);
}

.page-directions .section-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 28px;
    color: var(--directions-navy);
    font-size: clamp(1.75rem, 2.4vw, 2.15rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -.045em;
    text-align: left;
}

.page-directions .section-title::after {
    width: auto;
    height: 1px;
    flex: 1 1 auto;
    margin-left: 10px;
    background: linear-gradient(90deg, #cfdde7, transparent);
    content: "";
}

.page-directions .section-title .ico {
    width: 26px !important;
    height: 26px !important;
    flex: 0 0 auto;
    margin-right: 0 !important;
}

.page-directions .directions-hours-section .about-container {
    display: grid;
    grid-template-columns: minmax(245px, .62fr) minmax(0, 1.38fr);
    grid-template-rows: auto 1fr;
    gap: 0 48px;
    align-items: start;
}

.page-directions .directions-hours-section .section-title {
    grid-column: 1;
    grid-row: 1;
}

.page-directions .directions-hours-section .section-title::after {
    display: none;
}

.page-directions .expanded-hours-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    overflow: hidden;
    border: 1px solid var(--directions-line);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(31, 62, 84, .07);
}

.page-directions .expanded-hours-row {
    grid-template-columns: 165px minmax(0, 1fr);
    min-height: 72px;
    padding: 16px 25px;
}

.page-directions .expanded-hours-row--night {
    background: #eef5fb;
}

.page-directions .expanded-hours-row--closed {
    background: #fdf7f7;
}

.page-directions .expanded-hours-day {
    color: var(--directions-ink);
    font-size: 1.04rem;
    font-weight: 850;
}

.page-directions .expanded-hours-time {
    color: #29465d;
    font-size: 1.08rem;
    font-weight: 750;
}

.page-directions .expanded-hours-notices {
    grid-column: 1;
    grid-row: 2;
    margin: 4px 0 0;
    padding: 18px 18px 18px 20px;
    border: 0;
    border-left: 3px solid var(--directions-navy);
    border-radius: 0 12px 12px 0;
    background: #f5f8fa;
    color: #506678;
    font-size: .96rem;
    line-height: 1.7;
}

.page-directions .booking-grid {
    grid-template-columns: .82fr 1.18fr 1fr;
    gap: 20px;
}

.page-directions .booking-card {
    min-height: 310px;
    padding: 28px 26px 25px;
    border: 1px solid var(--directions-line);
    border-top: 4px solid var(--directions-navy);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(31, 62, 84, .06);
}

.page-directions .booking-card:nth-child(2) {
    border-top-color: #03a94f;
}

.page-directions .booking-card:nth-child(3) {
    border-top-color: #f1c400;
}

.page-directions .booking-card-title {
    color: var(--directions-ink);
    font-size: 1.2rem;
}

.page-directions .booking-btn,
.page-directions .untact-btn,
.page-directions .map-nav-btn {
    min-height: 54px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
}

.page-directions .untact-info-card {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    gap: 20px 34px;
    padding: 34px;
    border: 1px solid var(--directions-line);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(31, 62, 84, .065);
}

.page-directions .untact-info-header {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(145deg, #0c4f8e, #123c66);
}

.page-directions .untact-lead {
    margin: 0;
    color: #fff;
    font-size: 1.16rem;
    line-height: 1.72;
    text-align: left;
}

.page-directions .untact-steps-grid {
    grid-column: 2;
    gap: 14px;
    margin: 0;
}

.page-directions .untact-step {
    padding: 22px;
    border: 1px solid #e0e8ed;
    border-radius: 15px;
    background: #f7f9fb;
}

.page-directions .untact-actions {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: 0;
}

.page-directions .arrival-photo-card {
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    margin-bottom: 24px;
    border: 1px solid var(--directions-line);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(31, 62, 84, .055);
}

.page-directions .arrival-photo-image {
    min-height: 220px;
}

.page-directions .arrival-photo-content {
    padding: 30px 34px;
}

.page-directions .arrival-photo-content h3 {
    font-size: 1.35rem;
}

.page-directions .arrival-photo-content p {
    font-size: 1rem;
    line-height: 1.72;
}

.page-directions .map-layout-grid {
    grid-template-columns: minmax(310px, .78fr) minmax(0, 1.42fr);
    gap: 22px;
}

.page-directions .map-details-card,
.page-directions .map-iframe-card {
    border: 1px solid var(--directions-line);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(31, 62, 84, .055);
}

.page-directions .map-details-card {
    padding: 28px;
}

.page-directions .map-iframe-card {
    min-height: 430px;
}

.page-directions .checklist-grid {
    gap: 18px;
}

.page-directions .checklist-card {
    position: relative;
    padding: 28px 27px 28px 29px;
    border: 1px solid var(--directions-line);
    border-radius: 17px;
    box-shadow: 0 12px 28px rgba(31, 62, 84, .05);
}

.page-directions .checklist-card::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: #75a6cb;
    content: "";
}

@media (max-width: 1024px) {
    .page-directions .about-hero .about-container {
        gap: 22px 32px;
    }

    .page-directions .directions-hours-section .about-container {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 0 30px;
    }

    .page-directions .booking-grid,
    .page-directions .map-layout-grid {
        grid-template-columns: 1fr;
    }

    .page-directions .booking-card {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .subpage-main .about-hero .breadcrumb-strip,
    .subpage-main .doc-profile-hero .breadcrumb-strip,
    .subpage-main .subpage-hero .breadcrumb-strip {
        margin-bottom: 17px;
    }

    .subpage-main .about-hero .breadcrumb-strip .container,
    .subpage-main .doc-profile-hero .breadcrumb-strip .container,
    .subpage-main .subpage-hero .breadcrumb-strip .container {
        overflow: hidden;
        gap: 6px;
        font-size: .78rem;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .page-directions .about-hero {
        padding: 26px 0 32px;
    }

    .page-directions .about-hero .about-container {
        display: block;
    }

    .page-directions .about-hero__title {
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.24;
    }

    .page-directions .directions-alert-card {
        min-height: 0;
        margin-top: 22px;
        padding: 20px 18px;
        border-radius: 15px;
    }

    .page-directions .alert-desc-text {
        font-size: .96rem;
        line-height: 1.68;
    }

    .page-directions .alert-desc-text strong {
        font-size: 1.04rem;
    }

    .page-directions .directions-hours-section,
    .page-directions .directions-booking-section,
    .page-directions .directions-untact-section,
    .page-directions .directions-map-section,
    .page-directions .directions-checklist-section {
        padding: 46px 0;
    }

    .page-directions .section-title {
        gap: 7px;
        margin-bottom: 22px;
        font-size: clamp(1.5rem, 6.5vw, 1.78rem);
    }

    .page-directions .section-title::after {
        margin-left: 5px;
    }

    .page-directions .directions-hours-section .about-container {
        display: block;
    }

    .page-directions .expanded-hours-card {
        border-radius: 16px;
    }

    .page-directions .expanded-hours-row {
        grid-template-columns: 88px minmax(0, 1fr);
        min-height: 70px;
        padding: 14px 15px;
    }

    .page-directions .expanded-hours-day {
        font-size: .94rem;
    }

    .page-directions .expanded-hours-time {
        font-size: .97rem;
        line-height: 1.55;
    }

    .page-directions .expanded-hours-notices {
        margin-top: 14px;
        padding: 15px 16px;
        font-size: .9rem;
    }

    .page-directions .booking-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .page-directions .booking-card,
    .page-directions .untact-info-card,
    .page-directions .map-details-card,
    .page-directions .checklist-card {
        padding: 23px 20px;
        border-radius: 16px;
    }

    .page-directions .untact-info-card {
        display: block;
    }

    .page-directions .untact-info-header {
        margin-bottom: 15px;
        padding: 22px 20px;
    }

    .page-directions .untact-lead {
        font-size: 1.06rem;
    }

    .page-directions .untact-steps-grid {
        grid-template-columns: 1fr;
    }

    .page-directions .untact-actions {
        flex-direction: column;
        gap: 9px;
        margin-top: 15px;
    }

    .page-directions .arrival-photo-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .page-directions .arrival-photo-image {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .page-directions .arrival-photo-content {
        padding: 22px 20px 24px;
    }

    .page-directions .arrival-photo-content h3 {
        font-size: 1.18rem;
        line-height: 1.45;
    }

    .page-directions .map-layout-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .page-directions .map-nav-links {
        flex-direction: column;
    }

    .page-directions .map-iframe-card {
        min-height: 320px;
        border-radius: 16px;
    }

    .page-directions .checklist-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }
}

/* 2026-07 DIRECTIONS NAVY + GREEN BRAND BALANCE V31 */
.page-directions {
    --directions-green: #168b4b;
    --directions-green-dark: #0f6f3c;
    --directions-green-soft: #edf8f1;
}

.page-directions .about-hero .breadcrumb-strip .container > span:last-child,
.page-about .about-hero .breadcrumb-strip .container > span:last-child {
    color: var(--directions-green, #168b4b);
}

.page-directions .about-hero__title span {
    color: var(--directions-green);
}

.page-directions .directions-alert-card {
    border-left-color: var(--directions-green);
}

.page-directions .directions-alert-card > .ico {
    color: var(--directions-green);
}

.page-directions .directions-booking-section .section-title,
.page-directions .directions-map-section .section-title {
    color: var(--directions-green-dark);
}

.page-directions .directions-booking-section .section-title::after,
.page-directions .directions-map-section .section-title::after {
    background: linear-gradient(90deg, rgba(22, 139, 75, .34), transparent);
}

.page-directions .expanded-hours-row:nth-child(3) {
    background: var(--directions-green-soft);
}

.page-directions .expanded-hours-notices {
    border-left-color: var(--directions-green);
    background: var(--directions-green-soft);
}

.page-directions .booking-card:nth-child(2) .booking-card-title,
.page-directions .booking-card:nth-child(3) .booking-card-title {
    color: var(--directions-green-dark);
}

.page-directions .untact-info-header {
    background: linear-gradient(145deg, #168b4b, #0d5f3a);
}

.page-directions .untact-step:nth-child(2) .step-num {
    background: var(--directions-green);
}

.page-directions .untact-btn:not(.untact-btn--kakao) {
    background: var(--directions-green);
}

.page-directions .untact-btn:not(.untact-btn--kakao):hover {
    background: var(--directions-green-dark);
}

.page-directions .arrival-photo-label,
.page-directions .map-detail-title {
    color: var(--directions-green-dark);
}

.page-directions .map-details-card {
    border-top: 4px solid var(--directions-green);
}

.page-directions .checklist-card:nth-child(2)::before {
    background: var(--directions-green);
}

.page-directions .checklist-card:nth-child(3)::before {
    background: #d6a429;
}

