/* ===== BASE FONT ===== */
    body { font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif; }

    /* ===== HERO — about 전용 오버라이드 (공통은 common.css) ===== */
  
    /* ===== HOTEL LIST HOVER ===== */
    .hotel-list-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: background .2s;
    }
    .hotel-list-item:first-child { border-top: 1px solid var(--border); }
    .hotel-thumb {
      width: 72px;
      height: 72px;
      flex-shrink: 0;
      border-radius: 3px;
      background-size: cover;
      background-position: center;
      transition: opacity .2s;
    }
    .hotel-list-name {
      font-size: 20px;
      color: #555;
      text-align: left;
      line-height: 1.5;
      transition: color .2s;
    }
    .hotel-list-item:hover .hotel-list-name,
    .hotel-list-item.active .hotel-list-name { color: #111; font-weight: 600; }
    .hotel-list-item.active { background: #f9f7f4; }

    /* ===== ABOUT PAGE SPECIFIC ===== */

    /* ---- 탭 공통 섹션 간격 ---- */
    .tab-content > section {
      padding-top: 144px !important;
    }

    /* ---- 글로우포트클리닉 탭 ---- */
    .clinic-intro {
      padding: 80px 0 60px;
    }

    .clinic-logo-center {
      text-align: center;
      margin-bottom: 48px;
    }

    .clinic-logo-big {
      font-family: 'Montserrat', 'Pretendard', sans-serif;
      font-size: 80px;
      font-weight: 400;
      letter-spacing: 14px;
      color: #1a1a1a;
      margin-bottom: 14px;
    }

    .clinic-logo-sub {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #424242;
      letter-spacing: 1px;
    }

    .clinic-v-line {
      width: 1px;
      height: 72px;
      background: #c8c8c8;
      margin: 32px auto;
    }

    .clinic-slogan {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .clinic-slogan h2 {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #252525;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .clinic-slogan p {
      font-size: 20px;
      color: #5f5f5f;
      line-height: 2;
    }

    /* Clinic Feature items */
    .feature-block {
      padding: 64px 0;
    }

    .feature-num {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #424242;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .feature-title {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 14px;
    }

    .feature-row {
      display: flex;
      align-items: flex-start;
      gap: 60px;
    }

    .feature-row.reverse {
      flex-direction: row-reverse;
    }

    .feature-img-col {
      flex: 0 0 42%;
    }

    .feature-text-col {
      flex: 1;
      padding-top: 8px;
    }

    /* Feature 01 전용 — 이미지 좌측 블리드 + 타이틀 우측 */
    .feature-01-wrap { padding: 0; }
    .feature-01-layout {
      display: flex;
      align-items: stretch;
      min-height: 580px;
    }
    .feature-01-imgs {
      flex: 0 0 50%;
      position: relative;
      overflow: hidden;
    }
    .feat01-bg {
      position: absolute;
      inset: 0;
      left: -55%;
      width: 135%;
      background-size: cover;
      background-position: center;
    }
    .feat01-fg {
      position: absolute;
      top: 8%;
      left: 35%;
      width: 72%;
      height: 78%;
      background-size: cover;
      background-position: center top;
      border-radius: 2px;
      box-shadow: 0 12px 48px rgba(0,0,0,0.22);
    }
    .feature-01-text {
      flex: 1;
      width: 100%;
      max-width: 700px;
      padding: 72px 80px 72px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 1919px) {
    .feat01-bg {
      position: absolute;
      inset: 0;
      left: -45%;
    }}

    @media (max-width: 900px) {
      .feature-01-layout { flex-direction: column; }
      .feature-01-imgs { flex: none; width: 100%; height: 420px; }
      .feature-01-text { padding: 48px 24px; }
    }

    /* Feature 02 — 겹치는 원 3개 */
    .pkg-circles {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 98px 0 20px;
      isolation: isolate;
    }
    .pkg-circle {
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: rgba(251,245,238,0.8); mix-blend-mode: multiply;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 32px;
    }
    .pkg-circle + .pkg-circle { margin-left: -44px; }
    .pkg-circle-name {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: #424242;
      margin-bottom: 14px;
    }
    .pkg-circle-desc {
      font-size: 20px;
      color: #666;
      line-height: 1.75;
    }
    @media (max-width: 900px) {
      .pkg-circles { flex-direction: column; }
      .pkg-circle + .pkg-circle { margin-left: 0; margin-top: -44px; }
      .pkg-circle { width: 280px; height: 280px; }
    }

    /* Feature desc list */
    .feature-desc {
      font-size: 19px;
      color: #555;
      line-height: 1.75;
    }

    .feature-desc p {
      margin-bottom: 12px;
    }

    /* Feature 04 — 국가별 풀와이드 캐러셀 */
    .country-carousel {
      overflow: hidden;
      width: 100%;
    }
    .country-track {
      display: flex;
      gap: 30px;
      width: max-content;
      will-change: transform;
      cursor: grab;
    }
    .country-track.dragging { cursor: grabbing; }
    .country-slide {
      flex: 0 0 22vw;
      aspect-ratio: 443 / 540;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .country-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 75%);
    }
    .country-slide-text {
      position: absolute;
      bottom: 24px;
      left: 20px;
      right: 12px;
      color: #fff;
    }
    .country-slide-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .country-slide-desc {
      font-size: 20px;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .country-slide { flex: 0 0 60vw; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Event section */
    .event-main {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 6;
      overflow: hidden;
      border-radius: 4px 4px 0 0;
    }
    .event-main-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: opacity 0.35s ease;
    }
    .event-main-img.is-current { z-index: 0; }
    .event-main-img.is-prev {
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }
    .event-main-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
      z-index: 2;
    }
    .event-main-text {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      color: #fff;
      text-align: left;
      z-index: 3;
    }
    .event-main-title {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 40px;
      font-weight: 800;
      line-height: 1.45;
      margin-bottom: 14px;
    }
    .event-main-sub {
      font-size: 20px;
      color: rgba(255,255,255,0.78);
      margin-bottom: 22px;
    }
    .event-main-list {
      list-style: none;
      font-size: 20px;
      color: rgba(255,255,255,0.72);
      line-height: 2;
    }
    .event-thumbs {
      display: flex;
      height: 140px;
      gap: 4px;
    }
    .event-thumb {
      flex: 1 1 0;
      position: relative;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      overflow: hidden;
    }
    .event-thumb-overlay {
      position: absolute;
      inset: 0;
      
      transition: background 0.3s;
    }
    .event-thumb:hover .event-thumb-overlay,
    .event-thumb.active .event-thumb-overlay { background: rgba(0,0,0,0.2); }
    .event-thumb-text {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 14px 20px;
      color: #fff;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .event-thumb-num {
      font-size: 20px;
      color: rgba(255,255,255,0.65);
      padding-top: 2px;
      flex-shrink: 0;
    }
    .event-thumb-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.5;
    }

    /* Hospital expanding panels */
    .hosp-panels {
      display: flex;
      height: 460px;
      overflow: hidden;
    }
    .hosp-panel {
      flex: 1;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    .hosp-panels:hover .hosp-panel { flex: 0.5; }
    .hosp-panels .hosp-panel:hover { flex: 2.5; }
    .hosp-panel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
    }
    .hosp-panel-text {
      position: absolute;
      bottom: 28px;
      left: 24px;
      color: #fff;
    }
    .hosp-panel-name {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .hosp-panel-desc {
      font-size: 20px;
      color: rgba(255,255,255,0.85);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
    }
    .hosp-panel:hover .hosp-panel-desc {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hotel cards */
    .hotel-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .hotel-card .img-box {
      border-radius: 2px;
      margin-bottom: 10px;
    }

    .hotel-label {
      font-size: 20px;
      color: #888;
      text-align: center;
    }

    /* Country tags */
    .country-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 20px 0;
    }

    .country-tag {
      padding: 6px 16px;
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 20px;
      color: #666;
    }

    /* Treatment cards */
    .treat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 80px;
    }

    .treat-card .img-box {
      margin-bottom: 12px;
      border-radius: 2px;
    }

    /* 원형 이미지만 크기 제한 */
    .treat-card .img-box.ratio-1-1 {
      max-width: 280px;
      max-height: 280px;
      margin-left: auto;
      margin-right: auto;
    }
    

    .treat-name {
      font-size: 26px;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
    }

    .treat-desc {
      font-size: 19px;
      color: #999;
      line-height: 1.7;
    }

    /* ---- 의료진 탭 ---- */
    .doctors-section {
      padding: 100px 0;
    }

    .doctors-section .container {
      max-width: 1200px;
    }

    .doctors-intro {
      margin-bottom: 80px;
    }

    .doctors-intro h2 {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 38px;
      font-weight: 800;
      line-height: 1.35;
      color: #1a1a1a;
      margin-bottom: 20px;
    }

    .doctors-intro p {
      font-size: 20px;
      color: #777;
      line-height: 2.1;
    }

    .doctor-item {
      display: flex;
      align-items: center;
      gap: 80px;
      margin-bottom: 100px;
      padding-bottom: 100px;
      border-bottom: 1px solid #e8e5e0;
    }

    .doctor-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .doctor-item.reverse {
      flex-direction: row-reverse;
    }

    .doctor-photo {
      flex: 0 0 480px;
    }

    .doctor-photo .img-box {
      border-radius: 8px;
      aspect-ratio: 3/4;
      background-size: cover;
      background-position: top center;
    }

    .doctor-info {
      flex: 1;
    }

    .doctor-clinic {
      font-family: 'Pretendard', sans-serif;
      font-size: 55px;
      font-weight: 400;
      color: #aaa;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .doctor-title {
      font-family: 'Pretendard', sans-serif;
      font-size: 55px;
      color: #1a1a1a;
      margin-bottom: 40px;
      line-height: 1.3;
    }

    .doctor-title .doc-role {
      font-weight: 400;
    }

    .doctor-title .doc-name {
      font-weight: 700;
    }

    .doctor-career {
      font-family: 'Pretendard', sans-serif;
      font-size: 24px;
      font-weight: 400;
      color: #666;
      line-height: 2.2;
    }

    /* ---- 오시는길 탭 ---- */
    .location-section {
      padding: 80px 0 0;
      overflow: hidden;
    }

    .location-heading {
      text-align: center;
      margin-bottom: 56px;
      max-width: 1460px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 max(40px, calc((100vw - 1460px) / 2));
    }

    .location-heading h2 {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .location-heading p {
      font-size: 20px;
      color: #888;
    }

    /* index prime-section 동일 구조 */
    .loc-carousel {
      overflow: hidden;
      position: relative;
      padding-left: max(40px, calc((100vw - 1460px) / 2));
    }

    .loc-track {
      display: flex;
      gap: 30px;
      transition: transform .55s cubic-bezier(0.25, 0.1, 0.25, 1);
      will-change: transform;
      cursor: grab;
    }

    .loc-card {
      flex: 0 0 calc(33.333% - 20px);
      min-width: 160px;
      aspect-ratio: 4/3;
      border-radius: 15px;
      overflow: hidden;
    }

    .loc-card .img-box {
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .loc-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #333;
      cursor: pointer;
      opacity: 0;
      transition: opacity .2s;
    }

    .loc-carousel:hover .loc-arrow { opacity: 1; }
    .loc-arrow.prev { left: calc(max(40px, calc((100vw - 1460px) / 2)) + 8px); }
    .loc-arrow.next { right: calc(max(40px, calc((100vw - 1460px) / 2)) + 8px); }

    .loc-prog-outer {
      padding: 24px max(40px, calc((100vw - 1460px) / 2)) 60px;
      max-width: 1460px;
      margin: 0 auto;
    }

    .loc-prog-bar {
      width: 100%;
      height: 2px;
      background: #d0d0d0;
      position: relative;
    }

    .loc-prog-fill {
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      background: #000;
      width: 33.33%;
      transition: width .45s ease;
    }

    .location-map-section {
      display: grid;
      grid-template-columns: 50% 1fr;
      gap: 0;
      align-items: stretch;
      max-width: 100%;
      padding: 150px 0 200px;
      margin: 0;
    }

    .location-map-box {
      width: 100%;
      min-height: 500px;
      border-radius: 0;
      overflow: hidden;
      position: relative;
    }

    .location-map-box iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .contact-info {
      padding: 0 max(40px, calc((100vw - 1460px) / 2)) 0 140px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-info h3 {
      font-family: var(--serif);
      font-size: 40px;
      font-weight: 400;
      margin-bottom: 32px;
      color: #1a1a1a;
    }

    .contact-num-big {
      font-size: 26px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 32px;
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .info-table th {
      text-align: left;
      padding: 8px 0;
      color: #666;
      font-weight: 600;
      width: 90px;
      vertical-align: top;
      font-size: 20px;
    }

    .info-table td {
      padding: 8px 0;
      color: #1a1a1a;
      line-height: 1.7;
      font-size: 20px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .feature-row {
        flex-direction: column;
        gap: 32px;
      }

      .feature-row.reverse {
        flex-direction: column;
      }

      .feature-img-col {
        flex: none;
        width: 100%;
      }

      .hotel-cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .treat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .doctor-item {
        flex-direction: column !important;
        gap: 32px;
      }

      .doctor-photo {
        flex: none;
        width: 100%;
        max-width: 300px;
      }

      .location-map-section {
        grid-template-columns: 1fr;
        padding: 80px 0 100px;
      }

      .contact-info {
        padding: 48px 40px 0;
      }

      .location-map-box {
        min-height: 340px;
      }

      .loc-carousel {
        padding-left: 40px;
        padding-right: 40px;
      }

      .loc-card {
        flex: 0 0 72%;
      }

      .loc-prog-outer {
        padding: 20px 40px 40px;
      }

      .loc-arrow {
        opacity: 1;
      }

      .loc-arrow.prev { left: 12px; }
      .loc-arrow.next { right: 12px; }

      .interior-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .location-section {
        padding-top: 48px;
      }

      .location-heading {
        margin-bottom: 32px;
        padding: 0 24px;
      }

      .location-heading h2 {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 8px;
      }

      .location-heading p {
        font-size: 14px;
      }

      .loc-carousel {
        padding-left: 24px;
        padding-right: 24px;
      }

      .loc-track {
        gap: 14px;
      }

      .loc-card {
        flex: 0 0 84%;
        border-radius: 10px;
        aspect-ratio: 4 / 3.15;
      }

      .loc-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }

      .loc-prog-outer {
        padding: 18px 24px 36px;
      }

      .location-map-section {
        padding: 48px 0 72px;
      }

      .location-map-box {
        min-height: 280px;
      }

      .contact-info {
        padding: 36px 24px 0;
      }

      .contact-info h3 {
        font-size: 30px;
        margin-bottom: 22px;
      }

      .loc-contact-label {
        font-size: 12px;
      }

      .contact-num-big {
        font-size: 22px;
        margin-bottom: 24px;
      }

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

      .info-table {
        font-size: 15px;
        margin-bottom: 18px;
      }

      .info-table th {
        padding: 0 0 8px;
        font-size: 14px;
        color: #888;
      }

      .info-table td {
        padding: 2px 0;
        font-size: 16px;
        line-height: 1.7;
      }

      .loc-divider {
        margin: 22px 0;
      }

      .hotel-cards {
        grid-template-columns: 1fr;
      }

      .treat-grid {
        grid-template-columns: 1fr;
      }

      .interior-grid {
        grid-template-columns: 1fr;
      }

      .pkg-types {
        flex-direction: column;
      }
    }

/* ===== about.html inline styles moved ===== */
.hero-bg-top { background-image: url('../img/company/top.jpg'); }
.ab-inline-2 { padding: 56px 0 0; }
.ab-inline-3 { max-width: 1560px; margin: 0 auto; padding: 0 40px; }
.ab-inline-4 { width:100%; height:380px; object-fit:cover; object-position:center; display:block; }
.feat01-bg-image { background-image: url('../img/index/in_3.jpg'); }
.feat01-fg-image { background-image: url('../img/company/03.jpg'); }
.ab-inline-7 { font-size: 24px; font-weight: 700; color: #333; margin-bottom: 12px; }
.ab-inline-8 { font-size: 24px; font-weight: 700; color: #333; margin-top: 28px; margin-bottom: 12px; }
.ab-inline-9 { background: #fff; padding-bottom: 296px; }
.about-text-center { text-align: center; }
.about-text-muted { color: #888; }
.treat-image-1 { background-image: url('../img/index/in_6.jpg'); background-size: cover; background-position: center; border-radius:3px; }
.treat-name-top-gap { margin-top: 18px; }
.treat-image-2 { background-image: url('../public/about_2.jpg'); background-size: cover; border-radius:3px; }
.treat-image-3 { background-image: url('../public/about_3.jpg'); background-size: cover; border-radius:3px; }
.about-section-white-nopb { background: #fff; padding-bottom: 0; }
.about-section-head { text-align: center; padding-bottom: 48px; }
.about-country-subtitle { font-size: 20px; font-weight: 600; color: #555; margin-bottom: 0; }
.country-slide-image-1 { background-image: url('../img/company/s_1.jpg'); }
.country-slide-image-2 { background-image: url('../img/company/s_2.jpg'); }
.country-slide-image-3 { background-image: url('../img/company/s_3.jpg'); }
.country-slide-image-4 { background-image: url('../img/company/s_4.jpg'); }
.country-slide-image-5 { background-image: url('../img/company/s_5.jpg'); }
.feature-bg-04-bottom { background-image: url('../img/company/bg_3.jpg'); background-size: cover; background-position: center; margin-top: 180px; }
.ab-inline-26 { font-size: 20px; color: #555; margin-bottom: 40px; }
.circle-image-1 { background-image: url('../img/company/04_1.png'); background-size: cover; background-color: transparent; border-radius: 50%; }
.ab-inline-28 { margin-top: 15px; }
.circle-image-2 { background-image: url('../img/company/04_2.png'); background-size: cover; background-color: transparent; border-radius: 50%; }
.circle-image-3 { background-image: url('../img/company/04_3.png'); background-size: cover; background-color: transparent; border-radius: 50%; }
.ab-inline-31 { padding-bottom: 0; }
.ab-inline-32 { font-size: 20px; color: #888; margin-bottom: 0; }
.ab-inline-33 { display:flex; align-items:stretch; min-height:480px; }
.hotel-main-bg-default { flex:0 0 50%; position:relative; background-size:cover; background-position:center; background-image:url('../public/images/hotel_3.jpg'); transition:background-image 0.4s ease; }
.ab-inline-35 { position:absolute; bottom:20px; left:24px; color:#fff; font-size:20px; background:rgba(0,0,0,0.45); padding:6px 14px; border-radius:2px; }
.ab-inline-36 { flex:1; display:flex; flex-direction:column; justify-content:center; padding:0 60px; }
.hotel-thumb-image-1 { background-image:url('../public/images/hotel_1.jpg'); }
.hotel-thumb-image-2 { background-image:url('../public/images/hotel_2.jpg'); }
.hotel-thumb-image-3 { background-image:url('../public/images/hotel_3.jpg'); }
.hotel-thumb-image-4 { background-image:url('../public/images/hotel_4.jpg'); }
.hospital-panel-image-1 { background-image: url('../img/06_1.jpg'); }
.hospital-panel-image-2 { background-image: url('../img/06_2.jpg'); }
.hospital-panel-image-3 { background-image: url('../img/06_3.jpg'); }
.ab-inline-44 { background: #f4f2ef url('../public/images/over_bg.jpg') no-repeat center center / cover; padding-bottom: 100px; margin-top: 180px; }
.event-main-image-default { background-image: url('../public/images/over_01.jpg'); }
.ab-inline-46 { display:none; }
.doctor-image-1 { background-image:url('../img/company/people_1.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.doctor-image-2 { background-image:url('../img/company/people_2.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.doctor-image-3 { background-image:url('../img/company/people_3.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.doctor-image-4 { background-image:url('../img/company/people_4.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.interior-image-1 { background-image: url('../img/interior_1.jpg'); }
.interior-image-2 { background-image: url('../img/interior_2.jpg'); }
.interior-image-3 { background-image: url('../img/interior_3.jpg'); }

.loc-image { height: 100%; background-repeat: no-repeat; background-position: center; background-size: cover; }
.loc-image-1 { background-image: url('../img/index/in_1.jpg'); }
.loc-image-2 { background-image: url('../img/index/in_2.jpg'); }
.loc-image-3 { background-image: url('../img/index/in_3.jpg'); }
.loc-image-4 { background-image: url('../img/index/in_4.jpg'); }
.loc-image-5 { background-image: url('../img/index/in_5.jpg'); }
.loc-image-6 { background-image: url('../img/index/in_6.jpg'); }

.loc-contact-label {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.iframe-no-border { border:0; }
.about-divider-gap { margin: 16px 0; }
.about-btn-top-gap { margin-top:16px; }
.event-thumb-image-1 { background-image: url('../public/images/over_01.jpg'); }
.event-thumb-image-2 { background-image: url('../public/images/over_02.jpg'); }
.event-thumb-image-3 { background-image: url('../public/images/over_03.jpg'); }

/* ===== 오시는 길 ===== */
.location-heading {
  text-align: center;
  padding: 64px 0 48px;
}
.location-heading h2 {
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.location-heading p {
  font-size: 20px;
  color: #aaa;
  letter-spacing: 1px;
}

.loc-map-wrap {
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding-bottom: 100px;
}

.loc-map-box {
  flex: 1 1 0;
  min-height: 520px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.loc-info-panel {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.loc-info-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.loc-info-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.loc-info-value {
  font-size: 20px;
  color: #222;
  line-height: 1.7;
}
.loc-tel {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1a1a1a;
}

.loc-divider {
  height: 1px;
  background: #ececec;
  margin: 20px 0 22px;
}

.loc-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.loc-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #444;
}
.loc-day { color: #555; font-weight: 500; }
.loc-time { color: #222; }
.loc-lunch .loc-day,
.loc-lunch .loc-time { color: #aaa; font-size: 15px; }
.loc-closed .loc-day { color: #bbb; font-size: 15px; }
.loc-closed-text { color: #e55; font-size: 15px; }

.loc-transport-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc-transport-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #444;
}
.loc-transport-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.loc-transport-badge.subway { background: #2c6fad; color: #fff; }
.loc-transport-badge.bus    { background: #2a9d5c; color: #fff; }
.loc-transport-badge.car    { background: #555; color: #fff; }

.loc-reserve-btn {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 15px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 4px;
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background .2s;
}
.loc-reserve-btn:hover { background: #333; }

@media (max-width: 900px) {
  .loc-map-wrap { flex-direction: column; gap: 32px; }
  .loc-map-box  { min-height: 320px; }
  .loc-info-panel { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .location-heading { padding: 40px 0 28px; }
  .location-heading h2 { font-size: 26px; }
  .loc-map-box { min-height: 260px; }
  .loc-tel { font-size: 18px; }
}

/* about.html 오시는 길 실제 마크업용 모바일 보정 */
@media (max-width: 640px) {
  .location-section {
    padding-top: 48px;
  }

  .location-heading {
    margin-bottom: 32px;
    padding: 0 24px 28px;
  }

  .location-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .location-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .location-map-section {
    padding: 48px 0 72px;
  }

  .location-map-box {
    min-height: 280px;
  }

  .contact-info {
    padding: 36px 24px 0;
  }

  .contact-info h3 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .contact-num-big {
    font-size: 22px;
    margin-bottom: 24px;
  }

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

  .info-table th {
    padding: 0 0 8px;
    font-size: 14px;
    color: #888;
  }

  .info-table td {
    padding: 2px 0;
    font-size: 16px;
    line-height: 1.7;
  }
}
