/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6B2D8B;
  --primary-dark: #4A1D6B;
  --primary-light: #9B59B6;
  --primary-bg: #F5F0F8;
  --text: #2D2D2D;
  --text-light: #666;
  --text-lighter: #999;
  --white: #FFFFFF;
  --gray-bg: #F8F8FA;
  --border: #E8E8E8;
  --shadow: 0 2px 20px rgba(107, 45, 139, 0.08);
  --shadow-hover: 0 8px 30px rgba(107, 45, 139, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* 로고 상단 중앙 */
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 10px;
  position: relative;
}

.logo img,
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #2E86AB;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.header.scrolled .logo-text {
  font-size: 20px;
}

.footer-logo .logo-text {
  font-size: 20px;
  color: #fff;
}

.footer-logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.drawer-logo-img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* 모바일 햄버거 (로고 옆 우측) */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* 메뉴 하단 중앙 */
.header-nav-wrap {
  border-top: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 46px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}


/* 스크롤 시 컴팩트 모드 */
.header.scrolled .header-top {
  padding-top: 8px;
  padding-bottom: 4px;
}

.header.scrolled .logo img,
.header.scrolled .logo-img {
  height: 44px;
}

.header.scrolled .nav {
  height: 40px;
  gap: 28px;
}

.header.scrolled .nav a {
  font-size: 14px;
}

/* === Hero Slider V2 === */
.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.06);
}

.slide-bg.active {
  opacity: 1;
  animation: slideZoom 7s ease-in-out forwards;
}

@keyframes slideZoom {
  0% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* 오버레이 — 로고 보라색 기반 */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 20, 82, 0.75) 0%,
    rgba(74, 29, 107, 0.55) 40%,
    rgba(20, 15, 40, 0.7) 100%
  );
  z-index: 1;
}

/* 장식 요소 */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155, 89, 182, 0.15);
}

.hero-deco-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  animation: decoFloat 8s ease-in-out infinite;
}

.hero-deco-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  border-color: rgba(155, 89, 182, 0.1);
  animation: decoFloat 10s ease-in-out infinite reverse;
}

.hero-deco-line {
  position: absolute;
  left: 8%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(155,89,182,0.2), transparent);
}

@keyframes decoFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

/* 슬라이드 콘텐츠 */
.slide-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.slide-text {
  display: none;
  width: 100%;
}

.slide-text.active {
  display: flex;
  flex-direction: column;
}

/* 슬라이드별 애니메이션 */
.slide-layout-left.active { animation: heroSlideLeft 0.9s ease-out; }
.slide-layout-center.active { animation: heroSlideUp 0.9s ease-out; }
.slide-layout-right.active { animation: heroSlideRight 0.9s ease-out; }

@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 레이아웃: 좌측 */
.slide-layout-left {
  text-align: left;
  align-items: flex-start;
  max-width: 620px;
}

/* 레이아웃: 중앙 */
.slide-layout-center {
  text-align: center;
  align-items: center;
}

/* 레이아웃: 우측 */
.slide-layout-right {
  text-align: left;
  align-items: flex-start;
  margin-left: auto;
  max-width: 560px;
}

/* 배지 */
.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 45, 139, 0.5);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(155, 89, 182, 0.4);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A78BFA;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-badge-accent {
  background: rgba(127, 119, 221, 0.45);
  border-color: rgba(127, 119, 221, 0.5);
}

.hero-badge-green {
  background: rgba(29, 158, 117, 0.4);
  border-color: rgba(29, 158, 117, 0.5);
}

/* 제목 */
.slide-text h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  text-shadow: 0 3px 30px rgba(0,0,0,0.3);
}

/* 슬라이드 1 전용 — 좌측 타이포 */
.slide-layout-left {
  max-width: 640px;
}

.hero-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #A78BFA, #7C3AED);
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-clinic-name {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 6px;
  opacity: 0.6;
  margin-bottom: 24px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
}

.hero-tags li {
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero-location-new {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 32px;
}

/* 슬라이드 2 전용 — 중앙 임팩트 */
.slide-layout-center h1 {
  font-size: 56px;
  background: linear-gradient(180deg, #FFFFFF 40%, rgba(167,139,250,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}

.slide-layout-center .hero-desc {
  margin-left: auto;
  margin-right: auto;
}

/* 슬라이드 3 전용 — 좌측 정렬 + 하단 미니 카드 가로 */
.slide-layout-wide {
  max-width: 800px;
}

.hero-cards-row {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-mini-card {
  flex: 1;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}

.hero-mini-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.hero-mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.hero-stat-green  { background: rgba(16,185,129,0.2); color: #34D399; }
.hero-stat-blue   { background: rgba(59,130,246,0.2); color: #60A5FA; }
.hero-stat-purple { background: rgba(139,92,246,0.2); color: #A78BFA; }

.hero-mini-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.hero-mini-card span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* 버튼 */
.hero-buttons-new {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slide-layout-center .hero-buttons-new {
  justify-content: center;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #7C3AED, #9B59B6);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-hero-ghost {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* 슬라이드 인디케이터 */
.slide-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 36px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
}

.indicator.active {
  background: linear-gradient(90deg, #A78BFA, #7C3AED);
  width: 52px;
}

/* 슬라이드 화살표 */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(107, 45, 139, 0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(155, 89, 182, 0.25);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover {
  background: rgba(107, 45, 139, 0.4);
  border-color: rgba(155, 89, 182, 0.5);
}



.slide-prev { left: 28px; }
.slide-next { right: 28px; }

/* 오버레이 V2: 좌→우 그라디언트 */
.slide-overlay-v2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 10, 40, 0.82) 0%,
    rgba(58, 20, 82, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* 콘텐츠 V2 */
.slide-content-v2 {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.slide-v2 {
  display: none;
  width: 100%;
  max-width: 720px;
  color: #FFFFFF;
}

.slide-v2.active {
  display: block;
}

/* 순차 등장 애니메이션 */
.slide-v2.active .sv2-sub { animation: sv2FadeUp 0.6s ease-out 0.1s both; }
.slide-v2.active .sv2-title { animation: sv2FadeUp 0.6s ease-out 0.25s both; }
.slide-v2.active .sv2-desc { animation: sv2FadeUp 0.6s ease-out 0.4s both; }
.slide-v2.active .sv2-btns { animation: sv2FadeUp 0.6s ease-out 0.55s both; }

@keyframes sv2FadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 서브 라벨 */
.sv2-sub {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

/* 메인 타이틀 */
.sv2-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

.sv2-title span {
  color: #C4B5FD;
}

/* 설명 */
.sv2-desc {
  font-size: 19px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 40px;
}

/* 버튼 */
.sv2-btns {
  display: flex;
  gap: 12px;
}

.sv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.sv2-btn-fill {
  background: linear-gradient(135deg, #7C3AED, #9B59B6);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.sv2-btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

.sv2-btn-line {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.sv2-btn-line:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

/* 슬라이드 번호 */
.slide-num {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  writing-mode: vertical-lr;
}

.slide-num-current {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
}

/* 프로그레스 바 인디케이터 */
.slide-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sp-item {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.sp-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #FFFFFF;
  border-radius: 2px;
}

.sp-item.active .sp-fill {
  animation: spProgress 5s linear forwards;
}

@keyframes spProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}

/* === About Section (병원안내) === */
.about-section {
  padding: 100px 0;
  background: #F8FAFB;
}

.about-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-title {
  font-size: 36px;
  font-weight: 900;
  color: #1E293B;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.about-subtitle {
  font-size: 16px;
  color: #94A3B8;
}

/* 벤토 그리드 */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-info-row.about-info-row-full {
  flex: 1;
  align-content: stretch;
}
.about-info-row.about-info-row-full .about-info-card {
  min-height: 220px;
}

/* 사진 카드 공통 */
.about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.about-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.about-card:hover .about-card-bg {
  transform: scale(1.05);
}

.about-card-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.03) 100%);
  transition: opacity 0.4s;
}

.about-card:hover .about-card-dim {
  opacity: 0.8;
}

.about-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  color: #FFFFFF;
}

.about-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-card-body h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.about-card-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.about-card:hover .about-link {
  color: #FFFFFF;
}

/* 히어로 카드 (좌측 세로 풀) */
.about-hero {
  min-height: 460px;
}

/* 시설 카드 */
.about-facility {
  min-height: 220px;
  flex: 1;
}

/* 정보 카드 (텍스트 기반) */
.about-info-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #E8ECF0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.about-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

.about-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-info-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1E293B;
}

.about-info-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-info-detail span {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
}

.about-info-closed {
  color: #EF4444 !important;
  font-weight: 600;
}

.about-map-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.about-map-btns .map-btn {
  font-size: 12px;
  padding: 6px 10px;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

/* 애니메이션 */
[data-anim-about] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-anim-about].about-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim-about]:nth-child(2) { transition-delay: 0.08s; }
[data-anim-about]:nth-child(3) { transition-delay: 0.16s; }
[data-anim-about]:nth-child(4) { transition-delay: 0.24s; }

/* 반응형 */
@media (max-width: 768px) {
  .about-section { padding: 64px 0; }
  .about-title { font-size: 28px; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-hero { min-height: 280px; }
  .about-facility { min-height: 200px; }
  .about-info-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-card-body { padding: 24px 20px; }
  .about-card-body h3 { font-size: 22px; }
  .about-card-body p { font-size: 14px; }
  .about-link { display: none; }
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-gray {
  background: var(--gray-bg);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 56px;
  line-height: 1.8;
}



/* === Doctors === */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.doctor-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.doctor-photo-placeholder {
  width: 200px;
  min-height: 320px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doctor-photo-placeholder span {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  font-weight: 700;
}

.doctor-info {
  padding: 32px 28px;
  flex: 1;
}

.doctor-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.doctor-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.doctor-info h3 small {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 4px;
}

.doctor-career {
  list-style: none;
}

.doctor-career li {
  font-size: 13.5px;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.doctor-career li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

/* === Clinic Section (진료과목) === */
.clinic-section {
  padding: 100px 0;
  background: #FFFFFF;
}

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

.clinic-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.clinic-title {
  font-size: 36px;
  font-weight: 900;
  color: #1E293B;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.clinic-subtitle {
  font-size: 16px;
  color: #94A3B8;
}

/* 그리드 행 */
.clinic-row {
  display: grid;
  gap: 20px;
}

.clinic-row + .clinic-row {
  margin-top: 20px;
}

.clinic-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

/* 카드 */
.clinic-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.clinic-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

/* 배경 사진 */
.clinic-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.clinic-card:hover .clinic-card-bg {
  transform: scale(1.06);
}

/* 하단 그라데이션 오버레이 */
.clinic-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--card-color) 95%, #000) 0%,
    color-mix(in srgb, var(--card-color) 60%, transparent) 40%,
    rgba(0,0,0,0.08) 70%,
    transparent 100%
  );
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.clinic-card:hover .clinic-card-gradient {
  opacity: 1;
}

/* 카드 텍스트 */
.clinic-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  color: #FFFFFF;
}

.clinic-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.clinic-card-body h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  letter-spacing: -0.5px;
}

.clinic-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.5;
}

.clinic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.clinic-card:hover .clinic-link {
  opacity: 1;
  transform: translateY(0);
}

.clinic-link:hover {
  background: #FFFFFF;
  color: var(--card-color);
  border-color: #FFFFFF;
}

/* stagger 애니메이션 */
.clinic-card {
  opacity: 0;
  transform: translateY(24px) scale(1);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.5s ease;
}

.clinic-card.clinic-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.clinic-card[data-clinic-delay="0"].clinic-visible { transition-delay: 0s; }
.clinic-card[data-clinic-delay="1"].clinic-visible { transition-delay: 0.1s; }
.clinic-card[data-clinic-delay="2"].clinic-visible { transition-delay: 0.2s; }
.clinic-card[data-clinic-delay="3"].clinic-visible { transition-delay: 0.35s; }
.clinic-card[data-clinic-delay="4"].clinic-visible { transition-delay: 0.35s; }

/* === Info === */
.info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.info-table th,
.info-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
}

.info-table thead th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.info-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.info-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.info-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.info-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary-dark);
}

.info-table .closed td {
  color: #E74C3C;
  font-weight: 600;
}

.info-notice {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-lighter);
}

.info-contact {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: center;
}

.info-contact h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.cta-phone-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.info-phone-notice {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-lighter);
}

/* === Location CTA === */
.location-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #E2E2E2;
}

.location-cta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

/* === Kakao Map === */
.map-kakao {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-kakao .root_daum_roughmap {
  width: 100% !important;
}

.map-kakao .root_daum_roughmap .wrap_map {
  height: 340px !important;
}

/* === Location === */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  background: var(--primary-bg);
  border-radius: var(--radius);
  padding: 40px;
}

.location-address h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.location-address p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-item strong {
  display: block;
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.location-item p {
  font-size: 14px;
  color: var(--text-light);
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
}

.map-box {
  width: 100%;
  height: 340px;
  background: #EEE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius);
}

.map-box p {
  color: var(--text-lighter);
  font-size: 14px;
}

.map-box .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.map-box .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* === Footer === */
.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 48px;
  object-fit: contain;
  filter: brightness(10);
}

.footer-info p {
  font-size: 13px;
  line-height: 1.8;
}

.footer-info strong {
  color: var(--white);
  font-size: 15px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}


/* === Responsive === */
@media (max-width: 1024px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav-wrap {
    display: none;
  }

  .header-nav-wrap.active {
    display: block;
  }

  .nav {
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 18px;
    height: auto;
    align-items: center;
  }

  .nav a::after {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .sv2-title {
    font-size: 38px;
  }

  .sv2-desc {
    font-size: 16px;
  }

  .slide-num {
    display: none;
  }

  .sv2-btns {
    flex-direction: column;
  }

  .sv2-btn {
    width: 100%;
    justify-content: center;
  }

  .logo img,
  .logo-img {
    height: 44px;
  }

  .header.scrolled .logo img,
  .header.scrolled .logo-img {
    height: 36px;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .slide-prev { left: 10px; }
  .slide-next { right: 10px; }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .doctor-card {
    flex-direction: column;
  }

  .doctor-photo-placeholder {
    width: 100%;
    min-height: 160px;
  }

  .clinic-section {
    padding: 64px 0;
  }
  .clinic-title {
    font-size: 28px;
  }
  .clinic-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .clinic-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .clinic-card {
    height: 240px;
  }
  .clinic-card-body h3 {
    font-size: 22px;
  }
  .clinic-card-body p {
    font-size: 13px;
  }
  .clinic-link {
    opacity: 1;
    transform: none;
  }

  .info-wrapper,
  .location-content {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .slide-text h1 {
    font-size: 30px;
  }

  .sv2-title {
    font-size: 32px;
  }

  .sv2-sub {
    font-size: 12px;
  }

  .logo img {
    height: 56px;
  }

  .clinic-row-3,
  .clinic-row-2 {
    grid-template-columns: 1fr;
  }
  .clinic-card {
    height: 220px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== 슬로건 섹션 ===== */
.slogan-section {
  background: linear-gradient(135deg, #003876 0%, #1B4965 100%);
  padding: 36px 0;
}

.slogan-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.slogan-main {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.slogan-points {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.slogan-point {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
}

.slogan-point svg {
  color: #6BC0D4;
  flex-shrink: 0;
}

.slogan-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .slogan-section { padding: 28px 0; }
  .slogan-main { font-size: 17px; }
  .slogan-points { flex-direction: column; gap: 10px; }
  .slogan-point { font-size: 13px; padding: 0 8px; }
  .slogan-divider { width: 40px; height: 1px; }
}

/* ===== 지도 버튼 ===== */
.map-btn-group {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.map-btn-naver {
  background: #03C75A;
  color: #fff;
}

.map-btn-naver:hover {
  background: #02b04f;
  transform: translateY(-1px);
}

.map-btn-kakao {
  background: #FEE500;
  color: #3C1E1E;
}

.map-btn-kakao:hover {
  background: #f0d800;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .map-btn-group { gap: 8px; }
  .map-btn {
    padding: 11px 18px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    min-height: 44px;
  }
}

/* ===== 의료진 프로필 블록 ===== */
.doctor-profile-block {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  margin-bottom: 40px;
  overflow: hidden;
}

.doctor-profile-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #003876 0%, #2E86AB 100%);
  color: #fff;
}

.doctor-profile-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.3);
}

.doctor-profile-photo span {
  font-size: 22px;
  font-weight: 900;
  color: rgba(255,255,255,0.7);
}

.doctor-profile-title .doctor-page-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.doctor-profile-title h2 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 8px 0 4px;
  letter-spacing: -0.02em;
}

.doctor-profile-title h2 em {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-left: 8px;
}

.doctor-profile-pos {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.doctor-profile-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
}

.doctor-profile-col {
  padding: 28px 28px;
  border-right: 1px solid #f0f0f0;
}

.doctor-profile-col:last-child {
  border-right: none;
}

.dp-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #2E86AB;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8F4F8;
}

/* 푸터 슬로건 */
.footer-slogan {
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .doctor-profile-body {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-profile-col:nth-child(2) {
    border-right: none;
  }
  .doctor-profile-col:nth-child(3) {
    border-top: 1px solid #f0f0f0;
    grid-column: 1 / -1;
    border-right: none;
  }
}

@media (max-width: 640px) {
  .doctor-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .doctor-profile-body {
    grid-template-columns: 1fr;
  }
  .doctor-profile-col {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 20px;
  }
  .doctor-profile-col:last-child {
    border-bottom: none;
  }
  .doctor-profile-col:nth-child(2) {
    border-right: none;
  }
  .doctor-profile-col:nth-child(3) {
    grid-column: auto;
    border-top: none;
  }
  .doctor-profile-title h2 {
    font-size: 22px;
  }
  .doctor-profile-title h2 em {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}

/* ===== 투석기기 하이라이트 섹션 ===== */
.dialysis-hl-section {
  background: #f4f8fc;
  padding: 72px 0;
}
.dialysis-hl-section.dialysis-hl-page {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}
.dialysis-hl-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}
.dialysis-hl-img-wrap {
  flex: 0 0 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,73,101,0.13);
  background: #fff;
}
.dialysis-hl-img-wrap img {
  width: 100%;
  height: 392px;
  object-fit: cover;
  display: block;
}
.dialysis-hl-page .dialysis-hl-img-wrap img {
  height: 420px;
}
.dialysis-hl-content {
  flex: 1;
}
.dialysis-hl-badge {
  display: inline-block;
  background: #1B4965;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.dialysis-hl-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1A1A2E;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.dialysis-hl-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  word-break: keep-all;
}
.dialysis-hl-btn {
  display: inline-block;
  background: #1B4965;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.dialysis-hl-btn:hover {
  background: #163a52;
}

@media (max-width: 900px) {
  .dialysis-hl-inner {
    flex-direction: column;
    gap: 32px;
  }
  .dialysis-hl-img-wrap {
    flex: none;
    width: 100%;
  }
  .dialysis-hl-img-wrap img {
    height: 308px;
  }
  .dialysis-hl-page .dialysis-hl-img-wrap img {
    height: 330px;
  }
}
@media (max-width: 600px) {
  .dialysis-hl-section {
    padding: 48px 0;
  }
  .dialysis-hl-content h3 {
    font-size: 18px;
  }
  .dialysis-hl-img-wrap img {
    height: 252px;
  }
  .dialysis-hl-page .dialysis-hl-img-wrap img {
    height: 270px;
  }
}

/* ===== CTA 예약 버튼 (PC/모바일 분기) ===== */
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1B4965;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 180px;
}
.cta-btn:hover { background: #163a52; }
.cta-btn-mobile { display: none; }

@media (max-width: 768px) {
  .cta-btn-pc    { display: none; }
  .cta-btn-mobile {
    display: inline-flex;
    background: #1B4965;
    min-width: 0;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* ===== 수액센터 통합 페이지 ===== */
.iv-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.iv-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.iv-section-header p {
  font-size: 15px;
  color: #666;
  word-break: keep-all;
}
.iv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.iv-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.iv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.iv-card-top {
  padding: 24px 20px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.iv-card-icon svg { opacity: 0.9; }
.iv-card-top h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.iv-card-body {
  padding: 20px;
}
.iv-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  word-break: keep-all;
}
.iv-card-comp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.iv-card-comp {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.iv-card-comp li {
  font-size: 12px;
  background: #f0f4f8;
  color: #1B4965;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .iv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .iv-grid { grid-template-columns: 1fr; gap: 14px; }
  .iv-section-header h2 { font-size: 20px; }
}

/* ===== 진료시간 페이지 ===== */
.hours-status-wrap {
  text-align: center;
  margin: 32px 0 40px;
}
.hours-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #f1f5f9;
  font-size: 18px;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.hours-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hours-status-open { background: #f0fdf4; }
.hours-status-closed { background: #fef2f2; }
.hours-status-sub {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.hours-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  transition: background 0.2s;
  gap: 12px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.hours-row-today {
  background: #eff6ff;
  border-left: 4px solid #1B4965;
}
.hours-row.hours-row-closed { background: #fafafa; }
.hours-day-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-day {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
}
.hours-today-tag {
  display: none;
  font-size: 11px;
  font-weight: 700;
  background: #1B4965;
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.hours-time {
  font-size: 16px;
  font-weight: 700;
  color: #1B4965;
}
.hours-time-closed {
  color: #94a3b8;
  font-weight: 500;
}
.hours-time-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.hours-lunch-note {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}
.hours-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  padding: 14px 20px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hours-notice svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 600px) {
  .hours-status-badge { font-size: 16px; padding: 12px 24px; }
  .hours-row { padding: 16px 18px; }
  .hours-day { font-size: 15px; }
  .hours-time { font-size: 15px; }
}
