:root {
--primary: #3b82f6;
--accent: #f472b6;
--bg-light: #ffffff;
--text-main: #0f172a;
--text-soft: #475569;
--card-bg: #ffffff;
--nav-h: 72px;
--radius-lg: 26px;
--radius-md: 18px;
--shadow-soft: 0 24px 55px rgba(15, 23, 42, 0.08);
--shadow-card: 0 18px 40px rgba(15, 23, 42, 0.06);
--eden-modal-surface-bg: rgba(255, 255, 255, 0.88);
--eden-modal-surface-border: rgba(148, 163, 184, 0.32);
--eden-modal-surface-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
--eden-modal-blur: blur(22px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: var(--nav-h); }
html, body { margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, system-ui, "Noto Sans KR", sans-serif;
letter-spacing: -0.02em;
color: var(--text-main);
background: #ffffff;
overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; border-radius: 10px; }

.screen {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
color: #0f172a;
background: #ffffff;
}

/* 움직이는 배경 - 밝은 파스텔 */
.bg-animated {
position: absolute;
inset: -20%;
background:
radial-gradient(circle at 0% 0%, #e9d5ff, transparent 55%),
radial-gradient(circle at 100% 0%, #bbf7d0, transparent 55%),
radial-gradient(circle at 50% 100%, #bfdbfe, transparent 60%);
filter: blur(0.6px);
opacity: 0.85;
animation: bgMove 40s ease-in-out infinite alternate;
z-index: 0;
}

/* 애니메이션 원형 - 산뜻한 파스텔톤 */
.floating-circle {
position: absolute;
border-radius: 999px;
mix-blend-mode: multiply;
opacity: 0.5;
filter: blur(1px);
z-index: 0;
}
.floating-circle.c1 {
width: 260px;
height: 260px;
left: -80px;
top: 18%;
background: radial-gradient(circle at 30% 30%, #fef3c7, #a7f3d0);
animation: float1 6s ease-in-out infinite alternate;
}
.floating-circle.c2 {
width: 220px;
height: 220px;
right: -60px;
top: 55%;
background: radial-gradient(circle at 70% 10%, #fce7f3, #fbcfe8);
animation: float2 3s ease-in-out infinite alternate;
}
.floating-circle.c3 {
width: 150px;
height: 150px;
right: 28%;
top: -60px;
background: radial-gradient(circle at 40% 0%, #e0e7ff, #c7d2fe);
animation: float3 10s ease-in-out infinite alternate;
}
@keyframes bgMove {
0% { transform: translate3d(0,0,0) scale(1); }
100% { transform: translate3d(-40px,40px,0) scale(1.08); }
}
@keyframes float1 {
0% { transform: translate3d(0,0,0) scale(1); }
50% { transform: translate3d(20px,20px,0) scale(1.08); }
100% { transform: translate3d(40px,40px,0) scale(0.98); }
}
@keyframes float2 {
0% { transform: translate3d(0,0,0) scale(1); }
50% { transform: translate3d(-15px,-20px,0) scale(1.06); }
100% { transform: translate3d(-30px,-40px,0) scale(0.97); }
}
@keyframes float3 {
0% { transform: translate3d(0,0,0) scale(1); }
50% { transform: translate3d(-10px,12px,0) scale(1.05); }
100% { transform: translate3d(-20px,25px,0) scale(0.97); }
}

/* 헤더 - 밝은 배경, 어두운 글씨 */
.header {
position: relative;
z-index: 5;
height: var(--nav-h);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 32px;
background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.6), transparent);
}
.header-left { display: flex; align-items: center; gap: 12px; }
.logo-mark {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 18px;
color: #1d4ed8;
}
.logo-mark img {
filter: invert(1);
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-text strong { font-size: 20px; color: #0f172a; }
.logo-text small { font-size: 11px; color: #475569; }
.header-center {
display: flex;
align-items: center;
gap: 22px;
font-size: 14px;
color: #334155;
}
.header-center a { position: relative; padding-bottom: 3px; }
.header-center a::after,
.header-center .nav-sub a::after {
content: "";
position: absolute;
left: 0;
top: -23%;
width: 0;
height: 2px;
border-radius: 999px;
background: linear-gradient(90deg, #93c5fd, #f9a8d4);
transition: width 0.16s ease-out;
}
.header-center .nav-sub a::after { top: 0; }
.header-center a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 10px; font-size: 12px; }

.nav-item { position: relative; }
.nav-item-title { font-size: 20px !important; }
.nav-item > a {
display: inline-block;
padding-inline: 4px;
font-family: "Black Han Sans", sans-serif;
font-weight: 400;
font-size: 1.1rem;
color: #1e293b;
}
.nav-sub {
position: absolute;
top: 70%;
left: 50%;
transform: translateX(-50%) translateY(10px);
min-width: 140px;
border-radius: 14px;
background: linear-gradient(135deg, #d1fcfc, #ffbfe0);
box-shadow: 0 18px 40px rgba(15,23,42,0.12);
padding: 6px 0;
opacity: 0;
pointer-events: none;
transition: opacity 0.18s ease, transform 0.18s ease;
z-index: 30;
border: 1px solid rgba(148,163,184,0.2);
}
.nav-sub a {
display: block;
padding: 7px 14px;
font-size: 12px;
color: #000000;
white-space: nowrap;
font-weight:400;
}
.nav-sub a:hover { background: linear-gradient(135deg, #70f8f8, #ff60b2); }
.nav-item:hover .nav-sub {
opacity: 1;
pointer-events: auto;
transform: translateX(-50%) translateY(4px);
}
.nav-sub-addon {
font-size: 10px;
font-weight: bold;
font-family: "Diphylleia", serif;
background: linear-gradient(135deg, #a5b4fc, #f9a8d4);
padding: 1px 7px;
margin-left: 5px;
border-radius: 999px;
color: #1e293b;
}
.btn {
border-radius: 999px;
border: 1px solid transparent;
padding: 6px 14px;
display: inline-flex;
align-items: center;
gap: 7px;
cursor: pointer;
font-size: 12px;
}
.btn-status {
border-color: rgba(148,163,184,0.5);
background: rgba(255,255,255,0.9);
color: #334155;
}
.btn-status span.dot {
width: 7px;
height: 7px;
border-radius: 999px;
display: inline-block;
}
.btn-status span.dot.dot-open { background: #22c55e; }
.btn-status span.dot.dot-close { background: #ef4444; }
#headerOutpatientStatus { position: relative; overflow: hidden; }
#headerOutpatientStatus.header-outpatient-open::after {
content: '';
position: absolute;
top: 0; left: 0;
width: 80%;
height: 100%;
background: linear-gradient(320deg, transparent 0%, rgba(255, 255, 255, 0.3) 25%, rgb(150 233 143 / 50%) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 100%);
pointer-events: none;
animation: header-status-shimmer 3s ease-in-out infinite;
}
@keyframes header-status-shimmer {
0% { transform: translateX(120%); }
42% { transform: translateX(-120%); }
100% { transform: translateX(-120%); }
}
.btn-call {
background: linear-gradient(135deg, #60a5fa, #f472b6);
border-color: transparent;
color: #ffffff;
box-shadow: 0 14px 32px rgba(59,130,246,0.25);
}
.btn-call:hover {
transform: translateY(-1px);
box-shadow: 0 18px 40px rgba(59,130,246,0.35);
}

.main {
position: relative;
z-index: 1;
flex: 1;
min-height: 0;
display: grid;
grid-template-columns: minmax(0, 1.6fr) 310px;
grid-template-rows: minmax(0, 1fr);
gap: 18px;
padding: 0 32px 20px;
align-items: stretch;
}
/* 예약 모달 열림 시 main을 헤더 위로(JS 없이 :has 로 감지) */
body:has(.res-modal-overlay.open) .main {
z-index: 10050;
}

.dashboard {
position: relative;
border-radius: 32px;
background: rgba(255,255,255,0.92);
box-shadow: var(--shadow-soft);
padding: 22px 24px 22px;
color: var(--text-main);
display: grid;
grid-template-rows: auto 1fr auto;
gap: 16px;
overflow: hidden;
border: 1px solid rgba(148,163,184,0.15);
}
.dashboard-bg {
position: absolute;
inset: 0;
border-radius: inherit;
overflow: hidden;
z-index: 0;
}
.dashboard-bg-slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transform: scale(1.05);
transition: opacity 1s ease-in-out, transform 7s ease-out;
}
.dashboard-bg-slide.active {
opacity: 1;
transform: scale(1.12);
}
.dashboard::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at -10% -10%, rgba(191,219,254,0.5), transparent 55%),
linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.5));
pointer-events: none;
z-index: 1;
}
.dash-top, .dash-main, .dash-bottom { position: relative; z-index: 2; }
.dash-bottom { margin-top: 4px; }
.dash-top {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
font-size: 12px;
}
.dash-pill {
border-radius: 999px;
padding: 4px 11px;
background: #1e293b;
color: #e2e8f0;
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 11px;
box-shadow: 0 4px 12px rgba(15,23,42,0.15);
}
.dash-pill span.dot {
width: 8px;
height: 8px;
border-radius: 999px;
background: #22c55e;
display: inline-block;
}
.dash-sub {
color: #1e293b;
white-space: nowrap;
font-family: "Jua", sans-serif;
font-weight: 400;
background: rgba(253,230,138,0.8);
padding: 4px 10px;
border-radius: 20px;
box-shadow: 0 2px 8px rgba(15,23,42,0.08);
}
.dash-main {
display: grid;
gap: 20px;
align-items: center;
}
.dash-copy { position: relative; min-height: 400px; }
.dash-text-slide {
position: absolute;
left: 0; top: 0; right: 0;
opacity: 0;
transform: translateY(10px);
transition: opacity 0.6s ease, transform 0.6s ease;
pointer-events: none;
padding: 0 30px;
}
.dash-text-slide.active {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.dash-text-slide h1 {
margin: 0 0 8px;
font-size: 30px;
line-height: 1.25;
word-break: keep-all;
color: #0f172a;
}
.dash-text-slide h1 strong {
background: linear-gradient(120deg, #2563eb, #db2777);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.dash-text-slide p {
margin: 0 0 18px;
font-size: 14px;
color: var(--text-soft);
max-width: 450px;
word-break: keep-all;
}
.quick-row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
@media (max-width: 960px) {
.quick-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 480px) {
.quick-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.quick-tile {
border-radius: 16px;
background: #ffffff;
box-shadow: 0 10px 24px rgba(15,23,42,0.08);
padding: 10px 10px 9px;
font-size: 11px;
color: var(--text-soft);
cursor: pointer;
transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, background 0.14s ease-out;
border: 1px solid rgba(226,232,240,0.8);
position: relative;
}
.quick-tile:hover {
transform: translateY(-3px);
box-shadow: 0 16px 34px rgba(15,23,42,0.12);
background: #f8fafc;
}
.quick-tile-title {
font-size: 13px;
font-weight: bold;
color: var(--text-main);
margin-top: 3px;
margin-bottom: 3px;
margin-left: 20px;
font-family: "Jua", sans-serif;
}
.quick-icon { position: absolute; font-size: 14px; }
.quick-tile-tag {
margin-top: 5px;
display: inline-block;
border-radius: 999px;
padding: 2px 7px;
background: #f1f5f9;
color: #475569;
font-size: 10px;
}

.side-panel {
	position: relative;
	border-radius: 28px;
	background: linear-gradient(165deg, #d9ecfd 0%, #f4dbff 42%, #ffe4ea 100%);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
	padding: 16px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.95);
	min-height: 0;
	align-self: stretch;
}
.side-panel > .side-header {
	order: 1;
	flex-shrink: 0;
}
.side-panel > .side-header + div {
	order: 2;
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(148, 163, 184, 0.7) rgba(241, 245, 249, 0.95);
}
.side-panel > .side-blog-btn-wrap {
	order: 3;
	flex-shrink: 0;
}
.side-panel > .side-reserve-btn {
	order: 4;
	flex-shrink: 0;
}
.side-panel > .side-photo {
	order: 5;
	flex-shrink: 0;
}
@media (max-height: 900px) {
	.side-panel {
		max-height: calc(100dvh - var(--nav-h) - 40px);
	}
}
.side-header {
display: flex;
justify-content: space-between;
align-items: baseline;
font-size: 12px;
color: #334155;
}
.side-header h2 { margin: 0; font-size: 14px; color: #0f172a; }
.side-tag {
border-radius: 999px;
padding: 3px 8px;
font-size: 10px;
background: #f1f5f9;
border: 1px solid rgba(148,163,184,0.3);
color: #475569;
}
.side-section-title {
font-size: 11px;
color: #64748b;
margin-bottom: 4px;
margin-top: 6px;
}
.side-today {
border-radius: 18px;
padding: 9px 9px 7px;
background: #f8fafc;
border: 1px solid rgba(226,232,240,0.8);
font-size: 11px;
display: flex;
flex-direction: column;
gap: 4px;
}
.side-today-top { display: flex; justify-content: space-between; align-items: center; }
.side-today-top strong { font-size: 12px; color: #2563eb; }
.side-today-date, .side-today-num { font-size: 11px; color: #64748b; }
.side-today-num span { color: #0f172a; font-weight: 600; }
.side-list { margin-top: 2px; display: grid; gap: 4px; }
.side-item {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 6px;
font-size: 11px;
}
.side-item-label { color: #334155; }
.side-item-value { color: #64748b; font-size: 10px; }
.side-divider {
height: 1px;
background: linear-gradient(90deg, rgba(148,163,184,0.25), transparent);
margin: 4px 0;
}
.side-sub-area { position: relative; display: flex; justify-content: center; }
.side-badge {
border-radius: 999px;
padding: 5px 8px;
margin: 5px 0;
background: rgb(219 0 189 / 15%);
font-size: 10px;
color: #166534;
align-self: flex-start;
width: 100%;
text-align: center;
}

.side-reserve-btn {
	position: relative;
	width: 100%;
	max-width: 100%;
	align-self: center;
	flex-shrink: 0;
	margin-inline: auto;
	box-sizing: border-box;
	padding: 0px 12px;
	text-align: center;
	border-radius: 999px;
	background: #ff9513;
	color: #292939;
	font-family: "Black Han Sans", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 1.1rem;
	cursor: pointer;
	overflow: hidden;
	z-index: 0;
	transition: color 0.35s ease;
}
.side-reserve-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #292939;
	z-index: -1;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.side-reserve-btn:hover::before {
	transform: scaleX(1);
}
.side-reserve-btn:hover {
	color: #ff9513;
}

.side-blog-btn-wrap {
	cursor: pointer;
	width: 100%;
	z-index: 0;
    margin-top: 10px;
}

.side-blog-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 0 0 16px;
	background: linear-gradient(135deg, #1636b2 0%, #31b449 50%, #1636b2 100%);
	background-size: 200% 200%;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border-radius: 16px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgb(247 86 184 / 40%);
	transition: box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.side-blog-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 0%,
		transparent 40%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 60%,
		transparent 100%
	);
	background-size: 200% 100%;
	background-position: 200% 0;
	pointer-events: none;
	z-index: 0;
}

.side-blog-btn:hover {
	box-shadow: 0 6px 20px rgba(22, 54, 178, 0.5);
	animation: side-blog-bg-move 1.2s ease-in-out infinite;
}

.side-blog-btn:hover::before {
	animation: side-blog-shine 0.7s ease-out forwards;
}

@keyframes side-blog-shine {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

@keyframes side-blog-bg-move {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

/* 원본 main.css와 동일 — 전역 img { max-width:100% } 때문에 아이콘이 과대해지는 것 방지 */
.side-blog-btn .side-blog-btn-text {
	font-family: "Jua", sans-serif;
	font-weight: 400;
	position: relative;
	z-index: 1;
}
.side-blog-btn .side-blog-btn-img {
	width: 50px;
	max-width: 50px;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
}
.side-notice-btn-wrap {
text-align: center;
background: linear-gradient(91deg, rgba(245, 245, 245, 0) 0%, rgb(127 175 255 / 20%) 50%, rgba(255, 255, 255, 0) 100%);
padding: 10px 0 7px;
border-radius: 10px;
}
.side-notice-btn-wrap .side-notice-btn-text {
font-family: "Jua", sans-serif;
font-size: 14px;
color: #334155;
}
.side-photo {
border-radius: 20px;
background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
overflow: hidden;
position: relative;
height: 140px;
min-height: 120px;
}
.side-photo-slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transform: scale(1.04);
transition: opacity 1.2s ease-in-out, transform 7s ease-out;
}
.side-photo-slide.show {
opacity: 1;
transform: scale(1.14);
}
.side-photo-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(15,23,42,0.3), transparent);
}
.side-photo-label {
position: absolute;
left: 10px;
bottom: 8px;
font-size: 10px;
color: #f8fafc;
text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* 하단 바 - 밝은 톤 */
.bottom-detail {
position: fixed;
left: 50%;
bottom: 60px;
transform: translateX(-50%);
min-width: 260px;
max-width: 90vw;
background: linear-gradient(135deg, #d1fcfc, #ffbfe0);
color: #1e293b;
padding: 10px 25px;
border-radius: 999px;
box-shadow: 0 18px 40px rgba(15,23,42,0.12);
font-size: 11px;
line-height: 1.5;
display: flex;
flex-direction: column;
gap: 2px;
z-index: 9998;
border: 1px solid rgba(226,232,240,0.8);
}
.bottom-detail.hidden {
opacity: 0;
transform: translate(-50%, 80px);
pointer-events: none;
}
.bottom-detail-title { font-weight: 600; font-size: 11px; color: #334155; }
.bottom-bar {
position: relative;
height: 42px;
padding: 0 24px 10px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 11px;
color: #64748b;
background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}
.bottom-left { display: flex; align-items: center; gap: 8px; }
.bottom-left span + span { margin-left: 14px; }
.bottom-right { display: flex; gap: 10px; }
.bottom-icon {
width: 26px;
height: 26px;
border-radius: 999px;
background: rgba(255,255,255,0.9);
border: 1px solid rgba(148,163,184,0.35);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 14px;
color: #334155;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.bottom-icon:hover {
transform: translateY(-2px);
background: linear-gradient(135deg, #93c5fd, #f9a8d4);
border-color: transparent;
box-shadow: 0 10px 22px rgba(59,130,246,0.2);
}
.bottom-pill {
border-radius: 999px;
padding: 3px 9px;
border: 1px solid rgba(148,163,184,0.4);
color: #334155;
cursor: pointer;
background: rgba(255,255,255,0.8);
}
.bottom-pill:hover { background: #f1f5f9; }

/* 모바일 네비 (레이아웃·패딩은 main.css 다크와 동일 클래스 기준 동기화) */
.mobile-nav {
display: none;
position: relative;
background: #ffffff;
border-top: 1px solid rgba(226,232,240,0.8);
border-bottom: 1px solid rgba(148,163,184,0.2);
}
.mobile-nav-scroll {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 10px 10px;
overflow-x: auto;
white-space: nowrap;
justify-content: center;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.mobile-nav-scroll::-webkit-scrollbar { display: none; }
.mobile-nav-item {
border: none;
outline: none;
border-radius: 999px;
padding: 6px 14px;
font-size: 13px;
background: #f1f5f9;
color: #334155;
cursor: pointer;
white-space: nowrap;
}
.mobile-nav-item.active {
background: linear-gradient(135deg, #93c5fd, #f9a8d4);
color: #1e293b;
box-shadow: 0 4px 12px rgba(59,130,246,0.2);
}
.mobile-submenu-panel {
display: none;
position: relative;
z-index: 1;
background: #ffffff;
border-bottom: 1px solid rgba(226,232,240,0.8);
}
.mobile-submenu-panel.open { display: block; }
.mobile-submenu-inner { 
    background: linear-gradient(135deg, #d1fcfc, #ffbfe0);
    padding: 8px 14px 12px; 
}
.mobile-submenu-link {
display: block;
padding: 8px 6px;
font-size: 13px;
color: #334155;
border-radius: 10px;
}
.mobile-submenu-link:hover { background: #f8fafc; }

/* 팝업 */
.popup-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
backdrop-filter: blur(4px);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease;
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.popup-box {
width: 540px;
max-width: 92%;
max-height: 85vh;
background: var(--eden-modal-surface-bg);
-webkit-backdrop-filter: var(--eden-modal-blur);
backdrop-filter: var(--eden-modal-blur);
border-radius: 20px;
box-shadow: var(--eden-modal-surface-shadow);
overflow: hidden;
display: flex;
flex-direction: column;
border: 1px solid var(--eden-modal-surface-border);
}
/* 개인정보처리방침·이용약관 팝업 헤더 */
.popup-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 22px;
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border-bottom: 1px solid #e2e8f0;
flex-shrink: 0;
}
.popup-header h3 {
margin: 0;
font-size: 18px;
font-weight: 600;
color: #0f172a;
}
.popup-close {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 10px;
color: #64748b;
font-size: 22px;
line-height: 1;
cursor: pointer;
transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.popup-close:hover {
background: #f1f5f9;
color: #0f172a;
border-color: #cbd5e1;
}
/* 개인정보처리방침·이용약관 본문 */
.popup-content {
padding: 24px 26px 28px;
overflow-y: auto;
color: #334155;
font-size: 14px;
line-height: 1.75;
flex: 1;
min-height: 0;
}
.popup-content strong { color: #0f172a; }
.popup-content::-webkit-scrollbar { width: 10px; }
.popup-content::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.popup-content::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; border: 2px solid #f1f5f9; }
.popup-content::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.popup-content { scrollbar-width: thin; scrollbar-color: #cbd5e1 #f1f5f9; }
.layer-popup-backdrop {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
z-index: 99998;
display: none;
}
.layer-popup {
position: fixed;
z-index: 99999;
background: #fff;
border-radius: 24px 24px 0 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
display: none;
flex-direction: column;
overflow: hidden;
}
.layer-popup-body {
position: relative;
width: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
}
.layer-popup-slider-track {
display: flex;
width: 100%;
transition: transform 0.4s ease-in-out;
touch-action: pan-y;
}
.layer-popup-slide {
flex: 0 0 100%;
width: 100%;
position: relative;
display: flex;
flex-direction: column;
background: #303234;
}
.popup-navigator {
position: absolute;
bottom: 10px;
right: 10px;
background: rgba(0,0,0,0.4);
color: #fff;
border-radius: 20px;
padding: 3px 7px;
display: flex;
align-items: center;
gap: 5px;
font-size: 12px;
z-index: 10;
backdrop-filter: blur(4px);
}
.popup-navigator button {
background: transparent;
border: none;
color: #fff;
font-size: 16px;
font-weight: bold;
cursor: pointer;
}
.layer-popup-image {
width: 100%;
height: auto;
display: block;
border-radius: 24px 24px 0 0;
}
.layer-popup-content.overlay-text {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 24px;
text-align: center;
color: #fff;
text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.layer-popup-content.no-image-text {
padding: 40px 24px;
text-align: center;
color: #334155;
font-size: 16px;
line-height: 1.6;
}
.layer-popup-footer {
background: #303234;
border: none;
padding: 14px;
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: space-between;
}
.btn-confirm {
background: #4f46e5;
color: #fff;
border: none;
padding: 5px 20px;
border-radius: 14px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
}
.btn-close-today {
background: transparent;
border: none;
color: #ffffff;
font-size: 11px;
text-decoration: underline;
cursor: pointer;
}
@keyframes popupSlideUpPc {
from { transform: translateY(150%); }
to { transform: translateY(0); }
}
@keyframes popupSlideUpMobile {
from { transform: translate(-50%, -35%); opacity: 0; }
to { transform: translate(-50%, -50%); opacity: 1; }
}
@keyframes backdropFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.popup-entering-pc {
animation: popupSlideUpPc 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.popup-entering-mobile {
animation: popupSlideUpMobile 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.backdrop-entering {
animation: backdropFadeIn 0.4s ease forwards;
}
.popup-closing-pc {
animation: popupSlideUpPc 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) reverse forwards;
}
.popup-closing-mobile {
animation: backdropFadeIn 0.8s ease reverse forwards;
}
body.popup-no-scroll { overflow: hidden; height: 100vh; }

@media (max-width: 960px) {
html, body { overflow-x: hidden; }
body { overflow-y: auto; background: #ffffff; }
.screen { height: auto; overflow-x: hidden; min-height: 100vh; }
.btn {
padding: 3px 5px;
gap: 3px;
}
.main {
grid-template-columns: minmax(0, 1fr);
grid-template-rows: auto auto;
padding: 12px 16px 20px;
overflow-x: hidden;
}
.side-panel { min-height: 0; height: auto; }
.dashboard { gap: 30px; overflow-x: hidden; }
.dash-copy { min-height: 320px; }
.dash-text-slide h1 { font-size: 24px; }
.dashboard-bg-slide { background-position: 70% center; }
	.side-reserve-btn {
		width: 100%;
	}
.logo-text strong { font-size: 15px; }
.btn-status span { font-size: 10px; }
.btn-call a { font-size: 10px; }
.header-center { display: none; }
.mobile-nav { display: block; }
}
@media (max-width: 720px) {
.header { padding-inline: 18px; }
.dashboard {
padding: 18px 18px 18px;
grid-template-rows: auto auto auto;
}
.dash-top {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
font-size: 12px;
}
.dash-pill {
font-size: 13px;
width: 50%;
text-align: center;
word-break: keep-all;
}
.dash-pill span.dot { width: 8px; height: 6px; }
.dash-sub {
font-size: 14.5px;
width: 50%;
white-space: normal;
text-align: center;
word-break: keep-all;
}
.dash-main { grid-template-columns: minmax(0, 1fr); }
.dash-text-slide { padding: 0 15px; }
.dash-text-slide h1 { font-size: 20px; line-height: 1.35; }
.dash-text-slide p { font-size: 13px; }
.quick-row {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.quick-tile {
padding: 14px 12px 12px;
font-size: 12px;
min-height: 100px;
}
.quick-tile-title { font-size: 14px; margin-left: 24px; }
.quick-icon { font-size: 18px; }
.quick-tile-tag { font-size: 11px; padding: 4px 8px; }
.bottom-bar {
flex-direction: column;
align-items: flex-start;
height: auto;
padding-bottom: 14px;
gap: 4px;
}
.dash-ctas {
margin-top: 140px;
}
.mobile-nav {
display: block;
}
}
@media (max-width: 480px) {
.main { padding: 10px 12px 16px; }
.dashboard { padding: 14px; border-radius: 20px; }
.dash-copy { min-height: 230px; }
.dash-text-slide h1 { font-size: 18px; }
.quick-row {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
}
.quick-tile { min-height: auto; padding: 12px; }
.dash-pill, .dash-sub { font-size: 11px; }
}
@media (min-width: 721px) {
.layer-popup {
width: 320px;
top: auto;
left: auto;
bottom: 0;
right: 27px;
}
}
@media (max-width: 720px) {
.layer-popup {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 85%;
height: auto;
max-height: 90vh;
border-radius: 24px;
}
.layer-popup-footer {
background: #f8fafc;
flex-direction: column;
}
.btn-close-today { color: #334155; font-size: 14px; }
.btn-confirm {
font-size: 15px;
padding: 16px 0;
width: 100%;
margin-bottom: 10px;
}
}

/* ===== pannel.php 진료예약·약관 모달 (main.css 미로드 시 레이아웃 붕괴 방지) ===== */
.mobile-nav, .mobile-submenu-panel { position: relative; z-index: 4; }
.side-panel .side-today .side-item-value { color: #334155 !important; }

.res-modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.55);
z-index: 10000;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.res-modal-overlay.open {
display: flex;
opacity: 1;
}
.res-modal-container {
background: var(--eden-modal-surface-bg);
-webkit-backdrop-filter: var(--eden-modal-blur);
backdrop-filter: var(--eden-modal-blur);
width: 90%;
max-width: 620px;
border-radius: 22px;
overflow: hidden;
box-shadow: var(--eden-modal-surface-shadow);
transform: translateY(20px);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
max-height: 90vh;
overflow-y: auto;
color: #0f172a;
border: 1px solid var(--eden-modal-surface-border);
}
.res-modal-overlay.open .res-modal-container {
transform: translateY(0);
scrollbar-width: thin;
scrollbar-color: #94a3b8 #e2e8f0;
}
.res-modal-container.small { max-width: 400px; }
.res-modal-header {
background: #e2e8f0;
padding: 18px 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #cbd5e1;
font-family: "Diphylleia", serif;
font-style: italic;
}
.res-modal-header h3 { margin: 0; font-size: 18px; color: #0f172a; font-weight: 600; }
.res-modal-small-text { font-size: 12px; color: #b45309; font-weight: 500; }
.res-close-modal { cursor: pointer; font-size: 24px; color: #64748b; line-height: 1; transition: color 0.2s; }
.res-close-modal:hover { color: #0f172a; }
.res-modal-body { padding: 25px; position: relative; min-height: 300px; }
.res-modal-body p { color: #0f172a !important; }
.res-step-section {
display: none;
animation: resSlideInRight 0.4s ease forwards;
}
.res-step-section.active { display: block; }
@keyframes resSlideInRight {
from { opacity: 0; transform: translateX(20px); }
to { opacity: 1; transform: translateX(0); }
}
.res-fade-in-anim { animation: resFadeIn 0.4s ease forwards; }
@keyframes resFadeIn {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}
.res-form-area-slide {
display: none;
margin-top: 20px;
border-top: 1px solid #cbd5e1;
animation: resSlideDown 0.4s ease forwards;
}
@keyframes resSlideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.res-btn-confirm, .res-btn-submit {
background: linear-gradient(135deg, #f87171, #ef4444);
color: #fff;
border: none;
padding: 14px;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
width: 100%;
margin-top: 15px;
box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
transition: all 0.2s ease;
}
.res-btn-confirm:hover, .res-btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

/* 예약내역 확인하기 — 코랄 예약 버튼과 구분 (앰버·그레이 톤, main.css와 동일 역할) */
.res-btn-lookup-history {
	background: #c2c2c2;
	color: #0f172a;
	border: 1px solid #cbd5e1;
	padding: 12px 14px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: bold;
	font-size: 15px;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 12px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
	transition: all 0.2s ease;
}
.res-btn-lookup-history:hover {
	transform: translateY(-2px);
	background: linear-gradient(180deg, #fde68a 0%, #fcd34d 100%);
	color: #1c1917;
	border-color: rgba(245, 158, 11, 0.45);
	box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

.res-btn-xs {
font-size: 11px;
padding: 5px 10px;
background: #e2e8f0;
color: #334155;
border: 1px solid #cbd5e1;
border-radius: 4px;
cursor: pointer;
transition: 0.2s;
}
.res-btn-xs:hover { background: #cbd5e1; color: #0f172a; }
.res-input-field {
width: 100%;
padding: 12px;
background: #fff;
border: 1px solid #cbd5e1;
border-radius: 6px;
color: #0f172a;
font-size: 14px;
transition: 0.2s;
box-sizing: border-box;
margin-bottom: 12px;
}
.res-input-field-label {
margin-bottom: 10px;
font-family: "Black Han Sans", sans-serif;
font-weight: 400;
color: #334155;
}
.res-input-field:focus {
border-color: #f87171;
outline: none;
box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}
.res-input-group { display: flex; gap: 10px; flex-wrap: wrap; }
.res-msg-box {
text-align: center;
padding: 30px 0 0;
font-family: "Jua", sans-serif;
}
.res-msg-box p { color: #334155; }
.res-msg-box p strong { color: #dc2626; }
.res-msg-box p[style*="ffdd34"],
.res-terms-text p[style*="ffdd34"] {
color: #b45309 !important;
}
.res-guide-text { font-size: 18px; color: #475569; margin-bottom: 20px; }
.res-icon-deco { font-size: 40px; margin-bottom: 20px; opacity: 0.8; display: flex; justify-content: center; }
.res-section-title {
margin: 0 0 15px;
font-weight: 500;
color: #334155;
font-family: "Jua", sans-serif;
}
.res-doctor-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
@media (max-width: 480px) { .res-doctor-grid { grid-template-columns: repeat(3, 1fr); } }
.res-doctor-card {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 10px;
text-align: center;
cursor: pointer;
transition: all 0.2s ease;
}
.res-doctor-card:hover {
border-color: #f87171;
background: #fef2f2;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(15, 23, 42, 0.08);
}
.res-doctor-img {
width: 60px;
height: 60px;
background-color: #e2e8f0;
border-radius: 50%;
margin: 0 auto 8px;
background-size: cover;
background-position: center;
border: 2px solid #cbd5e1;
}
.res-doctor-card:hover .res-doctor-img { border-color: #f87171; }
.res-doctor-name { font-size: 13px; font-weight: bold; color: #0f172a; margin-bottom: 2px; }
.res-doctor-dept { font-size: 11px; color: #64748b; }
.res-selected-doctor-info {
background: #f1f5f9;
padding: 15px;
margin-bottom: 20px;
border-radius: 8px;
border-left: 4px solid #f87171;
display: flex;
justify-content: space-between;
align-items: center;
}
.res-highlight-text { color: #dc2626; font-weight: bold; font-size: 16px; }
.res-calendar-wrapper { text-align: center; padding: 0 10px; }
.res-calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.res-cal-nav-btn {
background: #e2e8f0;
border: none;
color: #0f172a;
width: 30px;
height: 30px;
border-radius: 50%;
cursor: pointer;
transition: 0.2s;
display: flex;
align-items: center;
justify-content: center;
}
.res-cal-nav-btn:hover { background: #cbd5e1; }
#currentMonthYear { font-size: 16px; font-weight: bold; color: #0f172a; }
.res-calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
margin-bottom: 10px;
color: #64748b;
font-size: 12px;
font-weight: bold;
}
.res-calendar-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.res-date-cell {
height: 35px;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
cursor: pointer;
border-radius: 8px;
transition: 0.2s;
color: #334155;
}
.btn-submit:disabled, .disabled-btn {
background: #94a3b8 !important;
cursor: not-allowed;
box-shadow: none;
opacity: 0.7;
}
select:disabled {
background: #f1f5f9;
color: #64748b;
cursor: not-allowed;
border-color: #cbd5e1;
}
.res-date-cell:hover:not(.disabled) { background: #c7ccd2; color: #0f172a !important; transform: scale(1.05); box-shadow: #eeeeee 0 0 10px;}
.res-date-cell.disabled { color: #bac4d1; cursor: not-allowed; opacity: 0.5; }
.res-date-cell.selected { background: #f59e0b; color: #fff !important; box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
.res-date-cell.today { border: 1px solid #f87171; color: #dc2626; }
.res-terms-area { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #475569; flex-wrap: wrap; gap: 8px; }
.res-view-terms { color: #2563eb; cursor: pointer; border-bottom: 1px solid #2563eb; }
.res-terms-text {
height: 200px;
overflow-y: auto;
background: #fff;
padding: 10px;
font-size: 12px;
line-height: 1.5;
color: #334155;
border-radius: 4px;
border: 1px solid #e2e8f0;
scrollbar-width: thin;
scrollbar-color: #94a3b8 #f1f5f9;
}
.res-custom-checkbox {
display: inline-flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-size: 13px;
color: #334155;
}
.res-custom-checkbox input { width: 16px; height: 16px; accent-color: #ef4444; cursor: pointer; }
.res-modal-container ::-webkit-scrollbar { width: 10px; height: 10px; }
.res-modal-container ::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 5px; }
.res-modal-container ::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 5px; border: 2px solid #f1f5f9; }
.res-modal-container ::-webkit-scrollbar-thumb:hover { background: #64748b; }
#resLoading { color: #475569 !important; }
.validation-alert-icon {
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
font-weight: 700;
color: #f87171;
margin-bottom: 10px;
animation: validationBounce 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
transform-origin: center bottom;
padding: 30px 0;
}
@keyframes validationBounce {
0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.9; }
20% { transform: translateY(-10px) scale(1.18) rotate(-6deg); opacity: 1; }
40% { transform: translateY(0) scale(1.05) rotate(5deg); opacity: 1; }
60% { transform: translateY(-6px) scale(1.12) rotate(-3deg); opacity: 1; }
80% { transform: translateY(0) scale(1.02) rotate(2deg); opacity: 1; }
100% { transform: translateY(-2px) scale(1.06) rotate(0deg); opacity: 1; }
}


/* =============================================================================
   라이트 메인 확장: 메뉴/소개 하위 페이지 (about-card, 진료과, 의료진 등)
   index에는 해당 마크업이 없어 규칙이 적용되지 않음. menu_02~04도 동일 main_light만 로드하면 됨.
   ============================================================================= */

.about-card {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	max-height: 85vh;
	max-width: 2000px;
	margin: auto;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.2);
	display: grid;
	grid-template-columns: 3fr 7fr;
	grid-template-rows: minmax(0, 1fr);
	align-items: stretch;
	overflow: hidden;
}

.about-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at -10% -10%, rgba(191, 219, 254, 0.45), transparent 55%),
		radial-gradient(circle at 110% 110%, rgba(254, 205, 211, 0.35), transparent 55%);
	opacity: 0.9;
	z-index: 0;
}

.about-left,
.about-right {
	position: relative;
	z-index: 1;
}

.about-left {
	padding: 22px 18px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	border-right: 1px solid rgba(148, 163, 184, 0.25);
	background: linear-gradient(165deg, rgb(219 237 255 / 98%), rgb(255 233 251 / 92%));
	color: #334155;
}

.about-left-title {
	font-size: 18px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about-left-title span.sub {
	font-size: 11px;
	color: #64748b;
}

.about-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}

.about-menu-item {
	--menu-bg: none;
	position: relative;
	border-radius: 18px;
	padding: 10px 12px;
	font-size: 13px;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
	border: 1px solid rgba(148, 163, 184, 0.35);
	transition:
		background 0.16s ease-out,
		transform 0.14s ease-out,
		box-shadow 0.14s ease-out,
		border-color 0.14s ease-out;
}

.about-menu-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--menu-bg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.12;
	mix-blend-mode: multiply;
	z-index: -1;
}

.about-menu-item span.icon {
	font-size: 16px;
}

.about-menu-item span.text-main {
	font-weight: 600;
	color: #0f172a;
}

.about-menu-item span.text-sub {
	display: block;
	font-size: 11px;
	color: #64748b;
}

.about-menu-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
	border-color: rgba(96, 165, 250, 0.45);
	background: linear-gradient(135deg, rgba(224, 242, 254, 0.9), rgba(254, 243, 199, 0.85));
}

.about-menu-item.active {
	border-color: rgba(59, 130, 246, 0.35);
	background: linear-gradient(135deg, rgba(147, 197, 253, 0.55), rgba(249, 168, 212, 0.45));
	box-shadow: 0 18px 40px rgba(59, 130, 246, 0.15);
}

.about-right {
	position: relative;
	overflow: hidden;
	min-height: 0;
}

.about-bg-menu01 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right bottom, rgb(255 255 255 / 35%), rgb(245 245 245 / 85%)),
		url(/images/bg_img_full_03.jpg) center/cover no-repeat;
	filter: saturate(1.02);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}

.about-bg-menu02 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right bottom, rgb(255 255 255 / 35%), rgb(245 245 245 / 85%)),
		url(/images/bg_img_full_06.jpg) center/cover no-repeat;
	filter: saturate(1.02);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}

/* 병원소개(menu_03) 우측 배경 */
.about-bg-menu03 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right bottom, rgb(255 255 255 / 35%), rgb(245 245 245 / 85%)),
		url(/images/bg_img_full_10.jpg) center/cover no-repeat;
	filter: saturate(1.02);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}

.about-bg-menu04 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right bottom, rgb(255 255 255 / 35%), rgb(245 245 245 / 85%)),
		url(/images/food_img_01.jpg) center/cover no-repeat;
	filter: saturate(1.02);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}

.about-intro {
	position: absolute;
	inset: 0;
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	text-shadow: 0 2px 16px rgba(15, 23, 42, 0.12);
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.4s ease-out,
		transform 0.4s ease-out;
	color: #0f172a;
}

.about-intro.hidden {
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
}

.about-intro h2 {
	margin: 0 0 10px;
	font-size: 30px;
	font-family: "Diphylleia", serif;
	font-style: italic;
}

.about-intro h2 strong {
	color: #db2777;
}

.about-intro p {
	margin: 0;
	font-size: 14px;
	color: #475569;
	font-family: "Jua", sans-serif;
}

.about-intro-note {
	font-size: 20px !important;
	color: #000000 !important;
	margin-top: 13px !important;
	font-family: "Dongle", sans-serif !important;
	font-weight: 400;
	font-style: normal;
}

.about-detail {
	position: absolute;
	inset: 0;
	padding: 26px 28px 26px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0;
	transform: translateX(24px);
	pointer-events: none;
	transition:
		opacity 0.35s ease-out,
		transform 0.35s ease-out;
	color: #0f172a;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.about-detail.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.about-detail::-webkit-scrollbar {
	width: 10px;
}
.about-detail::-webkit-scrollbar-track {
	background: rgba(241, 245, 249, 0.95);
	border-radius: 10px;
	margin: 6px 0;
}
.about-detail::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.5);
	border-radius: 10px;
	border: 2px solid rgba(241, 245, 249, 0.9);
}
.about-detail::-webkit-scrollbar-thumb:hover {
	background: rgba(100, 116, 139, 0.65);
}
@supports (scrollbar-width: thin) {
	.about-detail {
		scrollbar-width: thin;
		scrollbar-color: rgba(148, 163, 184, 0.7) rgba(241, 245, 249, 0.95);
	}
}

.about-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(40px);
	transition:
		opacity 0.5s ease-out,
		transform 0.5s ease-out;
	pointer-events: none;
	word-break: keep-all;
}

.about-slide.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.about-slider-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 12px;
	z-index: 20;
}

.about-slider-inner {
	position: relative;
	min-height: 300px;
	flex: 1;
	padding: 0 64px;
}

.about-slider-btn {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
	font-size: 20px;
	line-height: 1;
	color: #334155;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-inline: 0;
	pointer-events: auto;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	z-index: 21;
}

.about-slider-btn:hover {
	transform: translateY(-1px);
	background: #fff;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.about-slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
	margin-top: 0;
	padding-bottom: 10px;
}

.about-slider-dots2 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
	margin-top: 0;
	padding-bottom: 10px;
}

.about-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 0;
	background: rgba(15, 23, 42, 0.18);
	outline: 0;
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-dot.is-active {
	width: 22px;
	background: #2563eb;
	transform: translateY(-1px);
}

.about-detail-main {
	max-width: 100%;
	word-break: keep-all;
}

.about-slider-inner .about-detail-main img {
	margin-bottom: 10px;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.about-caption {
	font-size: 20px;
	color: #000000;
	margin-bottom: 4px;
	font-family: "Dongle", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.about-detail-title {
	font-size: 22px;
	margin: 0 0 10px;
	font-family: "Diphylleia", serif;
	font-weight: 400;
	font-style: normal;
	color: #0f172a;
}

.about-detail-title strong {
	color: #db2777;
}

.about-detail-list {
	margin: 0;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.8;
	color: #475569;
	font-family: "Jua", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.about-detail-footer {
	font-size: 11px;
	color: #64748b;
	padding-bottom: 30px;
}

.tag-pill {
	border-radius: 999px;
	padding: 4px 10px;
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	color: #475569;
}

.board-panel::-webkit-scrollbar-track {
	background: rgba(241, 245, 249, 0.9);
}
.board-panel::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.45);
	border: 2px solid rgba(241, 245, 249, 0.9);
}

.doctor-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 6px 0 18px;
}

.dept-btn {
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	color: #334155;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 14px;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dept-btn:hover {
	transform: translateY(-2px);
	background: rgba(241, 245, 249, 0.95);
}

.dept-btn.is-active {
	background: linear-gradient(135deg, rgba(147, 197, 253, 0.55), rgba(251, 207, 232, 0.65));
	border-color: rgba(59, 130, 246, 0.45);
	color: #0f172a;
}

/* 다크와 동일: fixed 래퍼 안에서 전체 덮는 딤 + blur (라이트는 밝은 반투명 톤) */
.doctor-modal-dim {
	position: fixed;
	inset: 0;
	z-index: 0;
	background: rgba(248, 250, 252, 0.72);
	-webkit-backdrop-filter: blur(14px) saturate(110%);
	backdrop-filter: blur(14px) saturate(110%);
}
.doctor-modal-dim {
	position: absolute;
	inset: 0;
	background: rgba(248, 250, 252, 0.72);
	-webkit-backdrop-filter: blur(14px) saturate(110%);
	backdrop-filter: blur(14px) saturate(110%);
}

.doctor-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.doctor-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
}

.doctor-item {
	display: flex;
	gap: 22px;
	padding: 22px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.9);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.35s ease;
}

.doctor-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.doctor-photo {
	flex: 0 0 120px;
	height: 150px;
	border-radius: 16px;
	overflow: hidden;
	background: #e5e7eb;
}

.doctor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 10%;
}

.doctor-role {
	display: inline-block;
	font-size: 15px;
	font-weight: 800;
	color: #0891b2;
	margin-left: 10px;
	margin-bottom: 6px;
	font-family: "Jua", sans-serif;
}

.doctor-name {
	font-size: 25px;
	letter-spacing: 5px;
	font-weight: 400;
	color: #0f172a;
	margin-left: 10px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	align-items: baseline;
}

.doctor-name-sub {
	margin-left: 5px;
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #0f172a;
	margin-bottom: 10px;
}

.doctor-actions {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	width: 100%;
}

.doctor-bio-btn {
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(248, 250, 252, 0.95);
	color: #0f172a;
	padding: 8px;
	margin: 3px 10px 0 0;
	width: 50%;
	height: 40px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.doctor-bio-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
	background: #ff9513;
}

.doctor-schedule-btn {
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(248, 250, 252, 0.95);
	color: #0f172a;
	padding: 8px;
	margin: 3px 0;
	width: 50%;
	height: 40px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.doctor-schedule-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
	background: #292939;
	color: #f7f7f7;
}

.doctor-item.is-hidden {
	display: none;
}

.doctor-item.is-reveal-ready {
	opacity: 0;
	transform: translateY(16px);
}

.doctor-item.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.doctor-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.doctor-modal.is-open {
	display: block;
}

.doctor-modal-box {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) !important;
	max-width: calc(100vw - 40px);
	max-height: calc(100vh - 40px);
	z-index: 1;
	width: min(550px, calc(100vw - 32px));
	max-height: min(78vh, 720px);
	overflow: hidden;
	border-radius: 22px;
	border: 1px solid var(--eden-modal-surface-border);
	background: var(--eden-modal-surface-bg);
	-webkit-backdrop-filter: var(--eden-modal-blur);
	backdrop-filter: var(--eden-modal-blur);
	box-shadow: var(--eden-modal-surface-shadow);
	animation: doctorModalIn 0.22s ease both;
}

@keyframes doctorModalIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.doctor-modal-close {
	position: absolute;
	right: 14px;
	top: 14px;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	font-size: 18px;
	font-weight: 900;
	color: #334155;
}

.doctor-modal-head {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px 18px 12px;
	border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.doctor-modal-avatar {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(8, 145, 178, 0.12);
	border: 1px solid rgba(8, 145, 178, 0.25);
	background-size: cover;
	background-position: center 10%;
}

.doctor-modal-role {
	font-size: 13px;
	font-weight: 900;
	color: #0891b2;
}

.doctor-modal-name {
	font-size: 20px;
	font-weight: 900;
	color: #0f172a;
}

.doctor-modal-body {
	padding: 14px 18px 18px;
	overflow: auto;
	max-height: calc(min(78vh, 720px) - 86px);
	scrollbar-width: thin;
	scrollbar-color: #94a3b8 #e2e8f0;
}

.doctor-modal-body ul {
	margin: 0;
	padding-left: 16px;
	color: #334155;
	font-size: 14px;
	line-height: 1.75;
}

body.modal-lock {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}

/* 진료과(access) · 클리닉센터(clinic) 공통 셸 — content보다 구체적 선택자로 라이트 확정 */
.about-detail[data-about-panel="access"] .clinic-section,
.about-detail[data-about-panel="clinic"] .clinic-section {
	--clinic-bg: rgba(255, 255, 255, 0.94);
	--clinic-line: rgba(148, 163, 184, 0.38);
	--clinic-text: #0f172a;
	--clinic-sub: #475569;
	--clinic-accent: #0284c7;
	--clinic-accent2: #db2777;
	--clinic-glow: rgba(56, 189, 248, 0.2);
	color: var(--clinic-text);
	border-color: var(--clinic-line);
	background: var(--clinic-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 24px;
	box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}
.about-detail[data-about-panel="access"] .clinic-tabs,
.about-detail[data-about-panel="clinic"] .clinic-tabs {
	background: linear-gradient(180deg, rgba(241, 245, 249, 0.98) 0%, transparent 100%);
	border-bottom-color: var(--clinic-line);
}
.about-detail[data-about-panel="access"] .clinic-tab,
.about-detail[data-about-panel="clinic"] .clinic-tab {
	color: var(--clinic-sub);
	background: rgba(248, 250, 252, 0.98);
	border: 1px solid rgba(148, 163, 184, 0.38);
}
.about-detail[data-about-panel="access"] .clinic-tab:hover,
.about-detail[data-about-panel="clinic"] .clinic-tab:hover {
	color: #0f172a;
	background: rgba(224, 242, 254, 0.92);
	border-color: rgba(56, 189, 248, 0.35);
}
.about-detail[data-about-panel="access"] .clinic-tab.is-active,
.about-detail[data-about-panel="clinic"] .clinic-tab.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--clinic-accent), var(--clinic-accent2));
	border-color: rgba(56, 189, 248, 0.45);
	box-shadow: 0 4px 16px rgba(2, 132, 199, 0.22);
}
.about-detail[data-about-panel="access"] .clinic-hero,
.about-detail[data-about-panel="clinic"] .clinic-hero {
	background:
		radial-gradient(120% 100% at 50% 0%, var(--clinic-glow), transparent 55%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, transparent 50%);
}
.about-detail[data-about-panel="access"] .clinic-hero__badge,
.about-detail[data-about-panel="clinic"] .clinic-hero__badge {
	color: #0369a1;
	background: rgba(224, 242, 254, 0.92);
	border-color: rgba(56, 189, 248, 0.42);
}
.about-detail[data-about-panel="access"] .clinic-hero__title,
.about-detail[data-about-panel="clinic"] .clinic-hero__title {
	color: #0f172a;
}
.about-detail[data-about-panel="access"] .clinic-hero__tel a,
.about-detail[data-about-panel="clinic"] .clinic-hero__tel a {
	color: #0284c7;
}
.about-detail[data-about-panel="access"] .clinic-section .clinic-card,
.about-detail[data-about-panel="clinic"] .clinic-section .clinic-card,
.about-detail[data-about-panel="access"] .clinic-block,
.about-detail[data-about-panel="clinic"] .clinic-block {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
	border-color: var(--clinic-line);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.about-detail[data-about-panel="access"] .clinic-block__icon,
.about-detail[data-about-panel="clinic"] .clinic-block__icon {
	color: #0284c7;
	background: rgba(224, 242, 254, 0.88);
	border: 1px solid rgba(125, 211, 252, 0.35);
}
.about-detail[data-about-panel="access"] .clinic-chip,
.about-detail[data-about-panel="clinic"] .clinic-chip {
	background: rgba(248, 250, 252, 0.98);
	border: 1px solid rgba(226, 232, 240, 0.95);
}
.about-detail[data-about-panel="access"] .clinic-chip:hover,
.about-detail[data-about-panel="clinic"] .clinic-chip:hover {
	background: rgba(239, 246, 255, 0.98);
	border-color: rgba(56, 189, 248, 0.32);
}
.about-detail[data-about-panel="access"] .vbac-list-block,
.about-detail[data-about-panel="clinic"] .vbac-list-block,
.about-detail[data-about-panel="access"] .laparo-diseases-block,
.about-detail[data-about-panel="clinic"] .laparo-diseases-block,
.about-detail[data-about-panel="access"] .gyneco-numbered-block,
.about-detail[data-about-panel="clinic"] .gyneco-numbered-block {
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.94));
	border-color: var(--clinic-line);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.about-detail[data-about-panel="access"] .incont-section,
.about-detail[data-about-panel="clinic"] .incont-section,
.about-detail[data-about-panel="access"] .gyneco-section,
.about-detail[data-about-panel="clinic"] .gyneco-section,
.about-detail[data-about-panel="access"] .breast-section,
.about-detail[data-about-panel="clinic"] .breast-section,
.about-detail[data-about-panel="access"] .endo-section,
.about-detail[data-about-panel="clinic"] .endo-section,
.about-detail[data-about-panel="access"] .checkup-section,
.about-detail[data-about-panel="clinic"] .checkup-section,
.about-detail[data-about-panel="access"] .maternal-section,
.about-detail[data-about-panel="clinic"] .maternal-section {
	border-bottom-color: rgba(148, 163, 184, 0.28);
}
.about-detail[data-about-panel="access"] .incont-def-list,
.about-detail[data-about-panel="clinic"] .incont-def-list {
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.92));
}
.about-detail[data-about-panel="access"] .incont-def-list dt,
.about-detail[data-about-panel="clinic"] .incont-def-list dt {
	color: #0369a1;
	background: rgba(224, 242, 254, 0.55);
	border-bottom-color: rgba(148, 163, 184, 0.22);
}
.about-detail[data-about-panel="access"] .incont-def-list dd,
.about-detail[data-about-panel="clinic"] .incont-def-list dd {
	border-bottom-color: rgba(226, 232, 240, 0.9);
}
.about-detail[data-about-panel="access"] .breast-table-wrap,
.about-detail[data-about-panel="clinic"] .breast-table-wrap,
.about-detail[data-about-panel="access"] .pediatrics-table-wrap,
.about-detail[data-about-panel="clinic"] .pediatrics-table-wrap {
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.96));
}
.about-detail[data-about-panel="access"] .breast-table th,
.about-detail[data-about-panel="clinic"] .breast-table th,
.about-detail[data-about-panel="access"] .breast-table td,
.about-detail[data-about-panel="clinic"] .breast-table td,
.about-detail[data-about-panel="access"] .pediatrics-download-table th,
.about-detail[data-about-panel="clinic"] .pediatrics-download-table th,
.about-detail[data-about-panel="access"] .pediatrics-download-table td,
.about-detail[data-about-panel="clinic"] .pediatrics-download-table td {
	border-color: rgba(226, 232, 240, 0.95);
}
.about-detail[data-about-panel="access"] .breast-table tbody td:first-child,
.about-detail[data-about-panel="clinic"] .breast-table tbody td:first-child {
	background: rgba(241, 245, 249, 0.95);
}
.about-detail[data-about-panel="access"] .pediatrics-download-table thead th,
.about-detail[data-about-panel="clinic"] .pediatrics-download-table thead th {
	background: rgba(224, 242, 254, 0.88);
	color: #0f172a;
}
.about-detail[data-about-panel="access"] .checkup-types-box,
.about-detail[data-about-panel="clinic"] .checkup-types-box {
	background: linear-gradient(135deg, rgba(254, 242, 242, 0.55), rgba(255, 255, 255, 0.94));
}
.about-detail[data-about-panel="access"] .checkup-type-item,
.about-detail[data-about-panel="clinic"] .checkup-type-item {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(226, 232, 240, 0.95);
}
.about-detail[data-about-panel="access"] .checkup-types-contact,
.about-detail[data-about-panel="clinic"] .checkup-types-contact {
	border-top-color: rgba(148, 163, 184, 0.28);
}

/* 클리닉센터 「고위험임신 질환정보」 탭 — content 흰색 타이포 덮어쓰기 */
.about-detail[data-about-panel="clinic"] .disease-cards-title {
	color: #0f172a;
}
.about-detail[data-about-panel="clinic"] .disease-cards-title em {
	color: #db2777;
}
.about-detail[data-about-panel="clinic"] .disease-cards-desc {
	color: #64748b;
}
.about-detail[data-about-panel="clinic"] .disease-cards-search-btn {
	color: #334155;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.4);
}
.about-detail[data-about-panel="clinic"] .disease-cards-search-btn:hover {
	background: rgba(241, 245, 249, 0.98);
	border-color: rgba(59, 130, 246, 0.35);
	color: #0f172a;
}
.about-detail[data-about-panel="clinic"] .disease-cards-cancel-btn {
	color: #b91c1c;
	background: rgba(254, 226, 226, 0.65);
	border: 1px solid rgba(248, 113, 113, 0.45);
}
.about-detail[data-about-panel="clinic"] .disease-cards-cancel-btn:hover {
	background: rgba(254, 202, 202, 0.9);
	border-color: rgba(239, 68, 68, 0.5);
}
.about-detail[data-about-panel="clinic"] .disease-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(226, 232, 240, 0.95);
}
.about-detail[data-about-panel="clinic"] .disease-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: rgba(249, 168, 212, 0.45);
}
.about-detail[data-about-panel="clinic"] .disease-card__thumb {
	background: rgba(241, 245, 249, 0.9);
}
.about-detail[data-about-panel="clinic"] .disease-card__thumb--none {
	color: #94a3b8;
}
.about-detail[data-about-panel="clinic"] .disease-card__title {
	color: #0f172a;
	background: linear-gradient(145deg, rgba(147, 197, 253, 0.65), rgba(251, 207, 232, 0.55));
}
.about-detail[data-about-panel="clinic"] .disease-cards-loading,
.about-detail[data-about-panel="clinic"] .disease-cards-empty {
	color: #64748b;
}

/* 클리닉센터 = 하이푸 패널 */
.about-detail[data-about-panel="clinic"] .hifu-section {
	--hifu-bg: rgba(255, 255, 255, 0.94);
	--hifu-line: rgba(148, 163, 184, 0.38);
	--hifu-text: #0f172a;
	--hifu-sub: #475569;
	--hifu-accent: #0284c7;
	--hifu-accent2: #db2777;
	--hifu-glow: rgba(56, 189, 248, 0.2);
	color: var(--hifu-text);
	border-color: var(--hifu-line);
	background: var(--hifu-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}
.about-detail[data-about-panel="clinic"] .hifu-hero {
	background:
		radial-gradient(120% 100% at 50% 0%, var(--hifu-glow), transparent 55%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, transparent 50%);
}
.about-detail[data-about-panel="clinic"] .hifu-hero__badge {
	color: #0369a1;
	background: rgba(224, 242, 254, 0.92);
	border-color: rgba(56, 189, 248, 0.42);
}
.about-detail[data-about-panel="clinic"] .hifu-hero__title {
	color: #0f172a;
	text-shadow: none;
}
.about-detail[data-about-panel="clinic"] .hifu-pill {
	color: #334155;
	background: rgba(248, 250, 252, 0.98);
	border: 1px solid rgba(148, 163, 184, 0.38);
}
.about-detail[data-about-panel="clinic"] .hifu-section .hifu-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
	border-color: var(--hifu-line);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.about-detail[data-about-panel="clinic"] .hifu-block {
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.94));
	border-color: var(--hifu-line);
}
.about-detail[data-about-panel="clinic"] .hifu-block__icon {
	color: #0284c7;
	background: rgba(224, 242, 254, 0.88);
	border: 1px solid rgba(125, 211, 252, 0.35);
}
.about-detail[data-about-panel="clinic"] .hifu-benefit {
	background: rgba(248, 250, 252, 0.98);
	border: 1px solid rgba(226, 232, 240, 0.95);
}
.about-detail[data-about-panel="clinic"] .hifu-benefit:hover {
	background: rgba(239, 246, 255, 0.98);
	border-color: rgba(56, 189, 248, 0.3);
}
.about-detail[data-about-panel="clinic"] .hifu-gallery__item {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: var(--hifu-line);
}

/* 질환정보 카드 */
.disease-cards-title {
	color: #0f172a;
}

.disease-cards-title em {
	color: #db2777;
}

.disease-cards-desc {
	color: #64748b;
}

.disease-cards-search-btn {
	color: #334155;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.4);
}

.disease-cards-search-btn:hover {
	background: rgba(241, 245, 249, 0.98);
	border-color: rgba(59, 130, 246, 0.35);
}

.disease-card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(226, 232, 240, 0.95);
}

.disease-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: rgba(249, 168, 212, 0.45);
}

.disease-card__thumb {
	background: rgba(241, 245, 249, 0.9);
}

.disease-card__thumb--none {
	color: #94a3b8;
}

.disease-card__title {
	color: #0f172a;
	background: linear-gradient(145deg, rgba(147, 197, 253, 0.65), rgba(251, 207, 232, 0.55));
}

/* 미션/비전 슬라이드 — main.css와 동일 구조(라이트에서 main 비활성화 시에도 표시) */
.eden-mv-wrapper {
	position: relative;
	padding: 16px;
	box-sizing: border-box;
}

.eden-mv-header {
	text-align: center;
	margin-bottom: 5px;
	font-family: "Diphylleia", serif;
	font-weight: 400;
	font-style: normal;
}

.eden-mv-kicker {
	color: #475569;
	font-size: 18px;
	margin-bottom: 4px;
}

.eden-mv-title {
	color: #db2777;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 6px;
}

.eden-mv-sub {
	color: #64748b;
	font-size: 14px;
	margin: 0;
}

.eden-mv-slider {
	position: relative;
	max-width: 550px;
	margin: 0 auto;
	height: 370px;
	overflow: hidden;
}

.eden-mv-slider-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.6s ease;
	will-change: transform;
}

.eden-mv-slide {
	min-height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
}

.eden-mv-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.eden-mv-circle {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 40px;
	box-sizing: border-box;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
	word-break: keep-all;
	font-family: "Dongle", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.eden-mv-circle h4 {
	font-family: "Jua", sans-serif;
	font-size: 25px;
	margin: 0 0 10px;
}

.eden-mv-circle .underline {
	width: 40px;
	height: 2px;
	margin-bottom: 14px;
}

.eden-mv-circle p,
.eden-mv-circle ul {
	font-size: 24px;
	line-height: 1.7;
	margin: 0;
	padding: 0;
}

.eden-mv-circle.mission {
	background: #f37c3d;
}

.eden-mv-circle.mission .underline {
	background: rgba(255, 255, 255, 0.8);
}

.eden-mv-circle.vision {
	background: #2ca197;
}

.eden-mv-circle.vision .underline {
	background: rgba(255, 255, 255, 0.8);
}

.eden-mv-circle.vision ul {
	list-style: none;
}

.eden-mv-dots {
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.eden-mv-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 2px solid rgba(100, 116, 139, 0.45);
	background: rgba(255, 255, 255, 0.85);
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.eden-mv-dot.is-active {
	background: #e25c4b;
	border-color: #e25c4b;
	transform: scale(1.2);
}

@media (max-width: 768px) {
	.eden-mv-header {
		margin-bottom: 8px;
	}
	.eden-mv-kicker {
		font-size: 16px;
	}
	.eden-mv-title {
		font-size: 22px;
	}
	.eden-mv-sub {
		font-size: 13px;
	}
	.eden-mv-slider {
		height: 320px;
	}
	.eden-mv-circle {
		width: 260px;
		height: 260px;
		padding: 28px 22px;
	}
	.eden-mv-circle p,
	.eden-mv-circle ul {
		font-size: 20px;
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	.eden-mv-wrapper {
		padding: 12px 12px 16px;
	}
	.eden-mv-slider {
		height: 300px;
	}
	.eden-mv-circle {
		width: 240px;
		height: 240px;
		padding: 24px 18px;
	}
	.eden-mv-circle h4 {
		font-size: 22px;
		margin-bottom: 8px;
	}
	.eden-mv-circle p,
	.eden-mv-circle ul {
		font-size: 18px;
		line-height: 1.4;
	}
}

/* 정밀·수술 달력 — main.css(다크) 구조 동일, 색상만 라이트 톤 (라이트 단독 로드 시 grid 유지) */
.eden-precsch-wrap {
	max-width: 100%;
	padding: 0.25rem 0 0.5rem;
}
.eden-precsch-wrap .eden-precsch-note {
	font-size: 0.85rem;
	color: #64748b;
	margin-bottom: 1rem;
	line-height: 1.5;
}
.eden-precsch-wrap .eden-precsch-title-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	width: 100%;
}
.eden-precsch-wrap .eden-precsch-title-row .about-caption {
	margin: 0;
	flex-shrink: 0;
	background: linear-gradient(91deg, transparent 0%, rgba(191, 219, 254, 0.55) 50%, transparent 100%);
	padding: 1px 30px;
	border-radius: 30px;
	color: #334155;
}
.eden-precsch-wrap .eden-precsch-legend {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem 1rem;
	margin: 0;
	font-size: 0.8rem;
	color: #475569;
	justify-content: flex-end;
	flex: 0 0 auto;
}
.eden-precsch-wrap .eden-precsch-legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.eden-precsch-wrap .eden-precsch-legdot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}
.eden-precsch-wrap .eden-precsch-legdot--precision {
	background: #0891b2;
}
.eden-precsch-wrap .eden-precsch-legdot--duty {
	background: #64748b;
}
.eden-precsch-wrap .eden-precsch-legdot--round {
	background: #94a3b8;
}
.eden-precsch-wrap .eden-precsch-cal-hd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	gap: 0.5rem;
}
.eden-precsch-wrap .eden-precsch-cal-hd h3 {
	margin: 0;
	font-size: 1.25rem;
	color: #0f172a;
	font-weight: 700;
}
.eden-precsch-wrap .eden-precsch-cal-nav {
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(255, 255, 255, 0.95);
	color: #334155;
	padding: 0.35rem 0.75rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9rem;
}
.eden-precsch-wrap .eden-precsch-cal-nav:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.eden-precsch-wrap .eden-precsch-cal-nav:not(:disabled):hover {
	background: rgba(241, 245, 249, 0.98);
}
.eden-precsch-wrap .eden-precsch-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 1px;
	background: rgba(226, 232, 240, 0.4);
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 10px;
	overflow: hidden;
}
.eden-precsch-wrap .eden-precsch-dow {
	text-align: center;
	font-weight: 700;
	padding: 10px 4px;
	font-size: 0.78rem;
	background: rgba(241, 245, 249, 0.98);
	color: #334155;
}
.eden-precsch-wrap .eden-precsch-dow--sun {
	color: #dc2626;
}
.eden-precsch-wrap .eden-precsch-dow--sat {
	color: #2563eb;
}
.eden-precsch-wrap .eden-precsch-cell {
	background: rgba(255, 255, 255, 0.45);
	min-height: 95px;
	padding: 6px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.eden-precsch-wrap .eden-precsch-cell--empty {
	background: rgba(248, 250, 252, 0.85);
	min-height: 40px;
}
.eden-precsch-wrap .eden-precsch-cell--holiday {
	background: rgba(254, 226, 226, 0.65);
}
.eden-precsch-wrap .eden-precsch-cell--morning-only {
	background: rgba(254, 243, 199, 0.55);
}
.eden-precsch-wrap .eden-precsch-cell--afternoon-only {
	background: rgba(224, 242, 254, 0.65);
}
.eden-precsch-wrap .eden-precsch-daynum {
	font-size: 0.9rem;
	font-weight: 700;
	color: #0f172a;
}
.eden-precsch-wrap .eden-precsch-cell--sun .eden-precsch-daynum {
	color: #dc2626;
}
.eden-precsch-wrap .eden-precsch-cell--sat .eden-precsch-daynum {
	color: #2563eb;
}
.eden-precsch-wrap .eden-precsch-holipill {
	background: rgba(220, 38, 38, 0.9);
	color: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.65rem;
	font-weight: 600;
	text-align: center;
}
.eden-precsch-wrap .eden-precsch-holipill--morning {
	background: rgba(234, 88, 12, 0.95);
}
.eden-precsch-wrap .eden-precsch-holipill--afternoon {
	background: rgba(14, 165, 233, 0.9);
}
.eden-precsch-wrap .eden-precsch-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}
.eden-precsch-wrap .eden-precsch-chip {
	font-size: 0.6rem;
	text-align: center;
	padding: 2px 6px;
	border-radius: 10px;
	color: #fff;
	line-height: 1.25;
	border: 1px solid rgba(255, 255, 255, 0.2);
	word-break: keep-all;
}
.eden-precsch-wrap .eden-precsch-chip--precision {
	background: #0891b2;
}
.eden-precsch-wrap .eden-precsch-chip--duty {
	background: #64748b;
}
.eden-precsch-wrap .eden-precsch-chip--round {
	background: #64748b;
}
.eden-precsch-wrap .eden-precsch-chip--off {
	background: #991b1b;
	text-decoration: line-through;
	opacity: 0.95;
}
.eden-precsch-wrap .eden-precsch-loading {
	color: #64748b;
	text-align: center;
	padding: 2rem;
}
.eden-precsch-wrap .eden-precsch-lockhint {
	font-size: 0.8rem;
	color: #b45309;
	margin-top: 0.75rem;
	line-height: 1.4;
}

@media (min-width: 720px) {
	.eden-precsch-wrap .eden-precsch-mo-dots {
		display: none !important;
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet {
		display: none !important;
	}
}

@media (max-width: 719px) {
	.eden-precsch-wrap .eden-precsch-title-row {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 0.35rem;
	}
	.eden-precsch-wrap .eden-precsch-title-row .about-caption {
		flex: 1 1 auto;
		min-width: 0;
		font-size: 0.82rem;
		line-height: 1.25;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.eden-precsch-wrap .eden-precsch-legend {
		font-size: 0.62rem;
		gap: 0.2rem 0.38rem;
		width: auto;
		flex: 0 0 auto;
		flex-wrap: nowrap;
		justify-content: flex-end;
	}
	.eden-precsch-wrap .eden-precsch-legend span {
		white-space: nowrap;
	}
	.eden-precsch-wrap .eden-precsch-legdot {
		width: 8px;
		height: 8px;
	}
	.eden-precsch-wrap .eden-precsch-cal-grid {
		border-radius: 12px 12px 0 0;
	}
	.eden-precsch-wrap .eden-precsch-dow {
		padding: 8px 2px;
		font-size: 0.68rem;
	}
	.eden-precsch-wrap .eden-precsch-cell:not(.eden-precsch-cell--empty) {
		min-height: 52px;
		padding: 5px 3px 6px;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		align-items: center;
	}
	.eden-precsch-wrap .eden-precsch-cell--picked {
		box-shadow: inset 0 0 0 2px rgba(244, 114, 182, 0.85);
	}
	.eden-precsch-wrap .eden-precsch-cell--empty {
		min-height: 28px;
		pointer-events: none;
	}
	.eden-precsch-wrap .eden-precsch-badges {
		display: none !important;
	}
	.eden-precsch-wrap .eden-precsch-holipill {
		font-size: 0.52rem;
		padding: 2px 4px;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.eden-precsch-wrap .eden-precsch-daynum {
		font-size: 0.82rem;
	}
	.eden-precsch-wrap .eden-precsch-mo-dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px;
		flex-wrap: wrap;
		margin-top: 3px;
		min-height: 8px;
	}
	.eden-precsch-wrap .eden-precsch-mo-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		flex-shrink: 0;
	}
	.eden-precsch-wrap .eden-precsch-mo-dot--precision {
		background: #0891b2;
	}
	.eden-precsch-wrap .eden-precsch-mo-dot--duty {
		background: #9ca3af;
	}
	.eden-precsch-wrap .eden-precsch-mo-dot--round {
		background: #64748b;
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet {
		margin-top: 0;
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet__inner {
		background: linear-gradient(165deg, rgb(208 255 253 / 70%), rgba(241, 245, 249, 0.96), rgb(152 189 243 / 55%));
		border-radius: 0 0 24px 24px;
		padding: 1rem 0.9rem 1.1rem;
		margin-top: -2px;
		box-shadow: 0 -6px 22px rgba(15, 23, 42, 0.1);
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet__hd {
		text-align: center;
		margin-bottom: 0.65rem;
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet__eyebrow {
		display: block;
		font-size: 0.65rem;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: #64748b;
		margin-bottom: 0.2rem;
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet__date {
		display: block;
		font-size: 1.15rem;
		font-weight: 800;
		color: #0f172a;
		letter-spacing: -0.02em;
	}
	.eden-precsch-wrap .eden-precsch-mo-banner {
		font-size: 0.8rem;
		color: #334155;
		background: rgba(241, 245, 249, 0.95);
		border-radius: 10px;
		padding: 0.55rem 0.7rem;
		margin-bottom: 0.65rem;
		line-height: 1.35;
	}
	.eden-precsch-wrap .eden-precsch-mo-item {
		display: flex;
		align-items: stretch;
		gap: 0;
		padding: 0.65rem 0;
		border-bottom: 1px solid rgba(148, 163, 184, 0.25);
	}
	.eden-precsch-wrap .eden-precsch-mo-item:last-child {
		border-bottom: none;
	}
	.eden-precsch-wrap .eden-precsch-mo-item__bar {
		width: 4px;
		border-radius: 4px;
		flex-shrink: 0;
		margin-right: 12px;
		align-self: stretch;
		min-height: 2.4rem;
	}
	.eden-precsch-wrap .eden-precsch-mo-item--precision .eden-precsch-mo-item__bar {
		background: #22d3ee;
	}
	.eden-precsch-wrap .eden-precsch-mo-item--duty .eden-precsch-mo-item__bar {
		background: #94a3b8;
	}
	.eden-precsch-wrap .eden-precsch-mo-item--round .eden-precsch-mo-item__bar {
		background: #cbd5e1;
	}
	.eden-precsch-wrap .eden-precsch-mo-item__body {
		flex: 1;
		min-width: 0;
	}
	.eden-precsch-wrap .eden-precsch-mo-item__type {
		display: block;
		font-size: 0.68rem;
		font-weight: 700;
		color: #64748b;
		letter-spacing: 0.06em;
		margin-bottom: 0.15rem;
	}
	.eden-precsch-wrap .eden-precsch-mo-item__name {
		display: block;
		font-size: 0.98rem;
		font-weight: 700;
		color: #0f172a;
		line-height: 1.35;
	}
	.eden-precsch-wrap .eden-precsch-mo-item__off {
		font-style: normal;
		font-weight: 600;
		color: #dc2626;
		font-size: 0.88rem;
	}
	.eden-precsch-wrap .eden-precsch-mo-sheet__empty {
		font-size: 0.82rem;
		color: #64748b;
		text-align: center;
		margin: 0.5rem 0 0;
		line-height: 1.45;
	}
}

@media (max-width: 980px) {
	.about-menu {
		display: none;
	}
}

@media (max-width: 980px) {
	.doctor-grid {
		grid-template-columns: 1fr;
	}
	.doctor-photo {
		flex-basis: 110px;
		height: 140px;
	}
	.doctor-text {
		width: 100%;
	}
	.doctor-actions {
		flex-direction: column;
	}
	.doctor-bio-btn {
		padding: 3px 12px;
		margin: 3px 10px 3px 0;
		width: 100%;
		height: 30px;
	}
	.doctor-schedule-btn {
		padding: 3px 12px;
		margin: 3px 10px 0 0;
		width: 100%;
		height: 30px;
	}
}

@media (max-width: 960px) {
	.about-card {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
	}

	.about-right {
		min-height: 600px;
	}
}

/* 라이트 테마만: content 기본 다크 모달 패널 → 반투명 흰 글래스 (다크 CSS/테마는 건드리지 않음) */
[data-theme="light"] .hifu-image-modal-dim {
	background: rgba(248, 250, 252, 0.72);
	-webkit-backdrop-filter: blur(14px) saturate(110%);
	backdrop-filter: blur(14px) saturate(110%);
}
[data-theme="light"] .disease-search-modal-backdrop {
	background: rgba(15, 23, 42, 0.22);
	-webkit-backdrop-filter: blur(14px) saturate(110%);
	backdrop-filter: blur(14px) saturate(110%);
}
[data-theme="light"] .hifu-image-modal-box {
	background: var(--eden-modal-surface-bg);
	-webkit-backdrop-filter: var(--eden-modal-blur);
	backdrop-filter: var(--eden-modal-blur);
	border: 1px solid var(--eden-modal-surface-border);
	box-shadow: var(--eden-modal-surface-shadow);
}
[data-theme="light"] .hifu-image-modal-close {
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(255, 255, 255, 0.95);
	color: #334155;
}
[data-theme="light"] .hifu-image-modal-close:hover {
	background: #f8fafc;
	color: #0f172a;
}

[data-theme="light"] .disease-search-modal-box {
	background: var(--eden-modal-surface-bg);
	-webkit-backdrop-filter: var(--eden-modal-blur);
	backdrop-filter: var(--eden-modal-blur);
	border: 1px solid var(--eden-modal-surface-border);
	box-shadow: var(--eden-modal-surface-shadow);
}
[data-theme="light"] .disease-search-modal-header {
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .disease-search-modal-header h3 {
	color: #0f172a;
}
[data-theme="light"] .disease-search-modal-close {
	color: #64748b;
}
[data-theme="light"] .disease-search-modal-close:hover {
	background: rgba(241, 245, 249, 0.95);
	color: #0f172a;
}
[data-theme="light"] .disease-search-field input {
	color: #0f172a;
	background: rgba(248, 250, 252, 0.98);
	border: 1px solid #cbd5e1;
}
[data-theme="light"] .disease-search-field input::placeholder {
	color: #94a3b8;
}
[data-theme="light"] .disease-search-field input:focus {
	border-color: rgba(59, 130, 246, 0.45);
}
[data-theme="light"] .disease-search-hint {
	color: #64748b;
}

/* =====================================================================
   이용안내(menu_02) — main_light 단독 로드 시: 게시판 + QnA 모달
   (다크는 main.css가 동일 구조로 담당. 라이트에서 display:none 누락 시 모달이 전부 펼쳐짐)
   ===================================================================== */

.board-panel {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 18px;
	overflow-y: auto;
	overflow-x: hidden;
}
.board-panel::-webkit-scrollbar {
	width: 8px;
}
.board-panel::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 8px;
}
.board-panel::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.55);
	border-radius: 8px;
	border: 2px solid #f1f5f9;
}
.board-panel::-webkit-scrollbar-thumb:hover {
	background: rgba(100, 116, 139, 0.65);
}

.board-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 15px;
}
.board-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: #f1f5f9;
	color: #475569;
	border: 1px solid #cbd5e1;
}
.board-title {
	margin: 6px 0 4px;
	font-size: 20px;
	color: #0f172a;
}
.board-desc {
	margin: 0;
	font-size: 13px;
	color: #64748b;
	opacity: 1;
}
.board-header-tools {
	display: flex;
	align-items: center;
	gap: 8px;
}
.board-header--album {
	align-items: center;
}
.board-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}
.album-search-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
}
.album-search-input {
	padding: 6px 10px;
	border-radius: 8px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	font-size: 13px;
	width: 160px;
	outline: none;
}
.album-search-input::placeholder {
	color: #94a3b8;
}
.album-search-btn {
	padding: 6px 12px;
	border-radius: 8px;
	border: 1px solid #cbd5e1;
	background: #f8fafc;
	color: #334155;
	font-size: 12px;
	cursor: pointer;
	transition: background 0.18s ease;
}
.album-search-btn:hover {
	background: #e2e8f0;
}
.album-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: #f1f5f9;
	color: #475569;
	cursor: pointer;
	transition: background 0.18s ease;
}
.album-search-toggle:hover {
	background: #e2e8f0;
}
.album-search-toggle svg {
	flex-shrink: 0;
}
.board-filter {
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid #cbd5e1;
	font-size: 11px;
	cursor: pointer;
	background: #fff;
	color: #475569;
	transition: background 0.18s ease, transform 0.12s ease;
}
.board-filter:hover {
	transform: translateY(-1px);
	background: #f8fafc;
}
.board-filter.is-active {
	background: #f97316;
	color: #fff;
	border-color: transparent;
}
.board-write-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 11px;
	text-decoration: none;
	background: #0f172a;
	color: #f8fafc;
	border: 1px solid #1e293b;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.18s ease;
}
.board-write-btn:hover {
	transform: translateY(-1px);
	background: #1e293b;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

.board-feed {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 18px;
	align-items: start;
	grid-auto-rows: auto;
}
.board-feed-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px 20px;
	color: #64748b;
	font-size: 15px;
	line-height: 1.6;
}

.board-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px 14px 12px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(148, 163, 184, 0.35);
	text-decoration: none;
	color: #0f172a;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	transition:
		transform 0.16s ease-out,
		box-shadow 0.16s ease-out,
		border-color 0.16s ease-out,
		background 0.18s ease-out;
	cursor: pointer;
	align-self: start;
}
.board-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
	border-color: rgba(56, 189, 248, 0.5);
	background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(224, 242, 254, 0.45));
}
.board-card-top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}
.board-card-top > div:nth-child(2) {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.board-avatar {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	background: linear-gradient(135deg, #fb923c, #fb7185);
	color: #fff;
}
.board-author {
	font-size: 12px;
	font-weight: 600;
}
.board-meta {
	font-size: 11px;
	color: #64748b;
}
.board-dt {
	font-size: 18px;
	font-weight: 600;
	margin: 0 5px;
	font-family: "Diphylleia", serif;
	color: #0f172a;
}
.board-feed--two .board-dt {
	width: 85%;
}
.board-file {
	margin-left: auto;
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid #ea580c;
	background: #ffedd5;
	white-space: nowrap;
	cursor: pointer;
	color: #9a3412;
	font-size: 11px;
	font-weight: 600;
}
.board-card-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.board-card-body img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	margin-bottom: 10px;
	cursor: pointer;
}
.board-card-title {
	font-size: 12px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	color: #0f172a;
}
.board-card-title--split {
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.board-card-title--split .board-card-title-text {
	flex: 1 1 0%;
	min-width: 0;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.board-card-title--split .board-meta {
	flex-shrink: 0;
	white-space: nowrap;
	align-self: flex-start;
}
.board-card-text {
	word-break: keep-all;
	font-size: 12px;
	color: #475569;
	opacity: 1;
	line-height: 1.5;
	margin: 4px 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 4.6em;
}
.board-card.is-open .board-card-text {
	-webkit-line-clamp: unset;
	max-height: none;
}
.board-feed--full .board-card-text {
	-webkit-line-clamp: unset;
	max-height: none;
	display: block;
}
.board-card-footer {
	margin-top: 4px;
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: #64748b;
	opacity: 1;
}
.board-card.is-open {
	border-color: rgba(245, 158, 11, 0.65);
	background: #fff;
	transform: translateY(-2px);
}

.bbs_text {
	position: relative;
	margin: 0;
	padding: 18px 18px 18px 35px;
	border-radius: 22px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	color: #334155;
	font-size: 13px;
	line-height: 1.85;
	letter-spacing: -0.01em;
	white-space: pre-line;
	word-break: keep-all;
	overflow-wrap: anywhere;
}
.bbs_text::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 14px;
	bottom: 14px;
	width: 4px;
	border-radius: 999px;
	background: #fb7185;
	box-shadow: 0 0 0 6px rgba(251, 113, 133, 0.12);
}
.bbs_text::first-line {
	font-weight: 900;
	color: #0f172a;
}
.bbs_text span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 8px;
	margin: 0 2px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #475569;
	font-size: 11px;
	font-weight: 900;
	vertical-align: baseline;
}
.bbs_text a {
	color: #db2777;
	text-decoration: none;
	border-bottom: 1px solid rgba(219, 39, 119, 0.35);
}
.bbs_text a:hover {
	border-bottom-color: rgba(219, 39, 119, 0.65);
}

.board-comments {
	margin: 6px;
	margin-top: 6px;
	padding-top: 8px;
	border-top: 1px solid #e2e8f0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		opacity 0.25s ease;
}
.board-card.is-open .board-comments {
	max-height: 260px;
	opacity: 1;
}
.board-feed--full .board-card .board-comments {
	max-height: none;
	opacity: 1;
}
.board-feed--full .board-card {
	cursor: default;
}
.board-comments-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 6px;
}
.board-comment {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	justify-content: flex-start;
	gap: 4px;
	font-size: 11px;
	color: #334155;
	border-top: 1px solid #f1f5f9;
	padding-top: 5px;
	padding-bottom: 2px;
}
.board-comments-list .board-comment:first-child {
	border-top: none;
	padding-top: 0;
}
.board-comment-reply {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
	font-size: 11px;
	color: #475569;
	margin-left: 3px;
	position: relative;
	padding-left: 12px;
}
.board-comment-reply::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 6px;
	height: 6px;
	border-left: 1.5px solid #94a3b8;
	border-bottom: 1.5px solid #94a3b8;
	border-radius: 2px;
	transform: translateY(1px);
}
.board-comment-author {
	min-width: 12%;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 0 15px;
}
.board-comment-text {
	width: 79%;
	opacity: 1;
	margin: 0 10px;
	word-break: break-all;
}
.board-comment-meta {
	min-width: 6%;
	text-align: right;
	padding-right: 10px;
	font-size: 10px;
	opacity: 0.75;
	color: #64748b;
}
.board-feed--two .board-comment-author {
	min-width: 20%;
	padding: 0 10px;
}
.board-feed--two .board-comment-text {
	width: 65%;
}
.board-feed--two .board-comment-meta {
	min-width: 7%;
}
.board-comment-form {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-top: 6px;
	border-top: 1px dashed #cbd5e1;
	margin-top: 2px;
	flex-wrap: nowrap;
}
.board-comment-name {
	width: 10%;
	padding: 6px 8px;
	border-radius: 999px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	font-size: 11px;
	outline: none;
	flex: 0 0 auto;
	margin: 0 4px 4px;
}
.board-feed--two .board-comment-name {
	width: 17%;
}
.board-comment-name::placeholder {
	color: #94a3b8;
}
.board-comment-input {
	flex: 1;
	min-width: 0;
	padding: 6px 8px;
	border-radius: 999px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	font-size: 11px;
	outline: none;
	margin: 0 4px 4px;
}
.board-comment-input::placeholder {
	color: #94a3b8;
}
.board-comment-submit {
	padding: 5px 10px;
	margin-left: 10px;
	border-radius: 999px;
	border: 0;
	font-size: 11px;
	cursor: pointer;
	background: #f97316;
	color: #fff;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
	transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}
.board-comment-submit:hover {
	transform: translateY(-1px);
	background: #fb923c;
	box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}

.board-feed--full {
	grid-template-columns: minmax(0, 1fr);
}
.board-feed--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.board-feed--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
	.board-feed--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 960px) {
	.board-header {
		flex-direction: column;
		align-items: flex-start;
		margin: 0 10px 10px;
	}
	.board-feed {
		grid-template-columns: 1fr;
	}
	.board-dt {
		font-size: 16px;
		width: 75%;
	}
	.board-comments {
		max-height: 320px;
	}
	.board-comment-author {
		min-width: 20%;
		padding: 0 0 0 5px;
	}
	.board-comment-text {
		min-width: 55%;
		max-width: 60%;
	}
	.board-comment-meta {
		min-width: 17% !important;
	}
	.board-comment-name {
		width: 18%;
	}
}
@media (max-width: 768px) {
	.board-feed--two,
	.board-feed--three,
	.board-feed--full {
		grid-template-columns: minmax(0, 1fr);
	}
}

.board-card-text,
.bbs_text {
	text-indent: 0 !important;
	white-space: normal;
}
.board-card:not(.is-expanded) .bbs_text {
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 1 !important;
	overflow: hidden !important;
	max-height: 1.6em !important;
	background: transparent !important;
	border: none !important;
	padding: 0 0 0 5px !important;
	margin-top: 10px !important;
	font-size: 13px;
}
.board-card:not(.is-expanded) .bbs_text * {
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	font-size: inherit !important;
	font-weight: normal !important;
	box-shadow: none !important;
}
.board-img-preview {
	display: none !important;
	margin: 15px 0;
	text-align: center;
}
.board-img-preview img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}
.board-card.is-expanded .board-img-preview {
	display: block !important;
	animation: edenFadeIn 0.3s ease-in-out;
}
@keyframes edenFadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.feed-temp-loader,
.feed-loader {
	grid-column: 1 / -1 !important;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	clear: both;
	font-weight: bold;
	color: #64748b;
	font-family: "Jua", sans-serif;
}

/* QnA / 앨범 작성 모달 — 라이트 */
.qnaModal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}
.qnaModal.is-open {
	display: block;
}
.qnaModal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.qnaModal__panel {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(520px, calc(100vw - 28px));
	max-height: calc(100vh - 28px);
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}
.qnaModal__panel--wide {
	width: min(880px, calc(100vw - 28px));
}
.qnaModal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px;
	border-bottom: 1px solid #e2e8f0;
}
.qnaModal__title {
	font-size: 14px;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.01em;
}
.qnaModal__close {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #334155;
	cursor: pointer;
	font-weight: 900;
}
.qnaModal__body {
	padding: 16px;
	max-height: calc(100vh - 120px);
	overflow: auto;
}
.qnaModal__desc {
	margin: 0 0 12px;
	font-size: 12.5px;
	line-height: 1.55;
	color: #64748b;
}
.qnaModal__actions {
	margin-top: 14px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
.qnaBtn {
	appearance: none;
	border-radius: 14px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #0f172a;
}
.qnaBtn--ghost:hover {
	background: #f1f5f9;
}
.qnaBtn--accent {
	border-color: rgba(251, 113, 133, 0.45);
	background: rgba(251, 113, 133, 0.12);
	color: #9f1239;
}
.qnaBtn--accent:hover {
	background: rgba(251, 113, 133, 0.2);
}
.qnaInput,
.qnaSelect,
.qnaTextarea {
	width: 100%;
	border-radius: 14px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	padding: 12px;
	font-size: 13px;
	outline: none;
}
.qnaTextarea {
	resize: vertical;
	min-height: 120px;
}
.qnaInput::placeholder,
.qnaTextarea::placeholder {
	color: #94a3b8;
}
.qnaModal__hint {
	margin: 10px 0 0;
	font-size: 12px;
	color: #64748b;
}
.qnaViewMeta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.qnaViewAuthor {
	font-weight: 900;
	color: #0f172a;
}
.qnaViewSub {
	font-size: 12px;
	color: #64748b;
	margin-top: 4px;
}
.qnaStatus {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	border: 1px solid #e2e8f0;
	background: #f1f5f9;
	color: #475569;
	white-space: nowrap;
}
.qnaStatus.is-done {
	border-color: rgba(52, 211, 153, 0.45);
	background: rgba(209, 250, 229, 0.6);
	color: #047857;
}
.qnaBox {
	margin-top: 12px;
	border-radius: 18px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	padding: 14px;
}
.qnaBox__label {
	font-size: 12px;
	font-weight: 900;
	color: #475569;
	margin-bottom: 8px;
}
.qnaBox__content {
	font-size: 13px;
	line-height: 1.7;
	color: #1e293b;
	white-space: pre-wrap;
}
.qnaBox--answer {
	border-color: rgba(52, 211, 153, 0.35);
	background: rgba(236, 253, 245, 0.65);
}
.qnaAnswerMeta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	color: #64748b;
	font-size: 12px;
}
.qnaAnswerAuthor {
	font-weight: 900;
	color: #0f172a;
}
.qnaAnswerDot {
	opacity: 0.6;
}
.qnaForm {
	position: relative;
}
.qnaGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}
.qnaGrid > .qnaField {
	margin-bottom: 0;
}
.qnaField {
	display: block;
	margin-bottom: 12px;
}
.qnaLabel {
	display: block;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 900;
	color: #475569;
}
.qnaCaptcha {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 12px;
	border-radius: 18px;
	border: 1px dashed #cbd5e1;
	background: #f8fafc;
	margin-top: 6px;
}
.qnaCaptcha--inGrid {
	margin-top: 0;
	flex-wrap: wrap;
}
.qnaCaptcha--inGrid .qnaInput {
	min-width: 0;
	flex: 1 1 100px;
}
.qnaCaptcha__q {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #334155;
	font-weight: 900;
	min-width: 150px;
}
.qnaCaptcha__badge {
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	font-size: 11px;
}
.qnaDone {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 16px;
}
.qnaDone__spinner {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 4px solid #e2e8f0;
	border-top-color: #fb7185;
	animation: qnaSpinLight 1s linear infinite;
}
@keyframes qnaSpinLight {
	to {
		transform: rotate(360deg);
	}
}
.qnaDone__text {
	text-align: center;
}
.qnaDone__text strong {
	display: block;
	font-size: 14px;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 6px;
}
.qnaDone__text p {
	margin: 0;
	font-size: 12.5px;
	color: #64748b;
}
@media (max-width: 860px) {
	.qnaGrid {
		grid-template-columns: 1fr;
	}
}

.qnaStatusTag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	background-color: #e2e8f0;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
}
.qnaStatusTag.is-answered {
	background-color: #e0f2fe;
	color: #0284c7;
}

/* 작성 완료 축하 오버레이 (라이트) */
.success-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.35);
	z-index: 99999999;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(2px);
}
.success-box {
	background: #fff;
	padding: 30px 50px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
	animation: popInLight 0.3s ease-out forwards;
	transform: scale(0.8);
	opacity: 0;
}
.success-text {
	margin-top: 15px;
	font-size: 18px;
	font-weight: bold;
	color: #334155;
}
@keyframes popInLight {
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.success-checkmark {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	position: relative;
}
.check-icon {
	width: 80px;
	height: 80px;
	position: relative;
	border-radius: 50%;
	box-sizing: content-box;
	border: 4px solid #4caf50;
}
.check-icon::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: rotate-circle 4.25s ease-in;
}
.check-icon::after {
	content: "";
	position: absolute;
	width: 60px;
	height: 120px;
	background: #fff;
	transform: rotate(45deg);
	top: -20px;
	left: 30px;
	animation: icon-fix 0.7s ease-in;
	opacity: 0;
}
.line-tip {
	top: 46px;
	left: 14px;
	width: 25px;
	transform: rotate(45deg);
	animation: icon-line-tip 0.75s;
}
.line-long {
	top: 38px;
	right: 8px;
	width: 47px;
	transform: rotate(-45deg);
	animation: icon-line-long 0.75s;
}
.icon-line {
	height: 5px;
	background-color: #4caf50;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 10;
}
.icon-circle {
	top: -4px;
	left: -4px;
	z-index: 10;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: absolute;
	box-sizing: content-box;
	border: 4px solid rgba(76, 175, 80, 0.5);
}
.icon-fix {
	top: 8px;
	width: 5px;
	height: 85px;
	position: absolute;
	left: 28px;
	transform: rotate(-45deg);
	z-index: 1;
	background-color: #fff;
	opacity: 0;
}
@keyframes icon-line-tip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}
	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}
	100% {
		width: 25px;
		left: 14px;
		top: 46px;
	}
}
@keyframes icon-line-long {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	84% {
		width: 55px;
		right: 0;
		top: 35px;
	}
	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

/* content 다크 톤 모달 — 라이트 모드에서 패널만 밝게 (이용안내 진료비 검색·갤러리 등) */
[data-theme="light"] .fgModal__panel {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid #e2e8f0;
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}
[data-theme="light"] .fgModal__head {
	border-bottom-color: #e2e8f0;
}
[data-theme="light"] .fgModal__title {
	color: #0f172a;
}
[data-theme="light"] .fgModal__close {
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #334155;
}
[data-theme="light"] .fgModal__body {
	scrollbar-color: #94a3b8 #f1f5f9;
}
[data-theme="light"] .fgModal__alt {
	color: #0f172a;
	border-color: #fde68a;
	background: rgba(254, 243, 199, 0.95);
}
[data-theme="light"] .imgModal__panel {
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}
[data-theme="light"] .imgModal__close {
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #334155;
}
[data-theme="light"] .imgModal__alt {
	color: #475569;
	border-color: #e2e8f0;
	background: #f1f5f9;
}

/* =====================================================================
   menu_02 이용안내 — content 다크 패널 라이트 톤 덮어쓰기
   (content가 main_light 이후 로드되므로 html 특이도로 승리)
   ===================================================================== */

/* --- 진료안내 · 외래진료시간 --- */
html[data-theme="light"] .clinicHours {
	--ch-bg: rgba(255, 255, 255, 0.97);
	--ch-bg-soft: #f1f5f9;
	--ch-line: rgba(148, 163, 184, 0.42);
	--ch-text: #0f172a;
	--ch-sub: #64748b;
	--ch-accent: #0284c7;
	--ch-warn: #e11d48;
	--ch-good: #059669;
	color: var(--ch-text);
	border-color: var(--ch-line);
	background: var(--ch-bg);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .clinicHours::before {
	opacity: 0.28;
	filter: blur(22px);
}
html[data-theme="light"] .clinicCard {
	background: linear-gradient(135deg, rgb(255 184 159 / 22%), rgb(255 234 215 / 45%));
	border-color: var(--ch-line);
}
html[data-theme="light"] .clinicCard__v {
	color: var(--ch-sub);
}
html[data-theme="light"] .clinicHours__notices {
	border-color: rgba(148, 163, 184, 0.45);
	background: #f1f5f9;
}
html[data-theme="light"] .clinicHours__notices li {
	color: #334155;
}
html[data-theme="light"] .chPill {
	border-color: #e2e8f0;
	background: #fff;
	color: #475569;
}
html[data-theme="light"] .chPill--warn {
	border-color: rgba(225, 29, 72, 0.38);
	background: rgba(254, 226, 226, 0.92);
	color: #9f1239;
}
html[data-theme="light"] .deptCard {
	background: #fff;
	border-color: var(--ch-line);
}
html[data-theme="light"] .hoursTable {
	border-color: #e2e8f0;
	background: #f8fafc;
}
html[data-theme="light"] .hoursTable th,
html[data-theme="light"] .hoursTable td {
	border-bottom-color: #e2e8f0;
}
html[data-theme="light"] .hoursTable th {
	color: #334155;
	background: #eef2ff;
}
html[data-theme="light"] .hoursTable td {
	color: #0f172a;
}
html[data-theme="light"] .deptCard__foot {
	border-top-color: #e2e8f0;
	color: #475569;
}
html[data-theme="light"] .deptCard__tel {
	color: #0f172a;
}
html[data-theme="light"] .deptCard__tel i {
	background: rgba(2, 132, 199, 0.12);
	border-color: rgba(2, 132, 199, 0.3);
}
html[data-theme="light"] .deptCard__tel a {
	color: #0284c7;
}
html[data-theme="light"] .clinicHours__divider {
	background: #e2e8f0;
}
html[data-theme="light"] .time_bold {
	color: #c2410c;
}

/* --- 입퇴원안내 --- */
html[data-theme="light"] .adGuide {
	--ag-bg: rgba(255, 255, 255, 0.97);
	--ag-line: rgba(148, 163, 184, 0.42);
	--ag-soft: #f8fafc;
	--ag-text: #0f172a;
	--ag-sub: #64748b;
	--ag-accent: #e11d48;
	--ag-accent2: #0284c7;
	background: var(--ag-bg);
	border-color: var(--ag-line);
	color: var(--ag-text);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .adGuide::before {
	opacity: 0.28;
}
html[data-theme="light"] .adGuide__block {
	background: #f8fafc;
	border-color: var(--ag-line);
}
html[data-theme="light"] .adGuide__blockTitle {
	color: #0f172a;
}
html[data-theme="light"] .adArrow::before {
	border-left-color: #94a3b8;
}
html[data-theme="light"] .adStep span {
	color: #475569;
}
html[data-theme="light"] .adStep--solidGray {
	background: linear-gradient(135deg, rgb(255 99 208 / 55%), rgb(220 178 201 / 45%));
	border-color: #cbd5e1;
	color: #0f172a;
}
html[data-theme="light"] .adStep--ring {
	background: linear-gradient(135deg, rgba(147, 197, 253, 0.55), rgba(249, 168, 212, 0.45));
	border-color: #81aee3;
	color: #0f172a;
}
html[data-theme="light"] .adBullets {
	background: #f1f5f9;
	border-color: rgba(148, 163, 184, 0.45);
}
html[data-theme="light"] .adBullets li {
	color: #334155;
}
html[data-theme="light"] .adGuide__note {
	color: #475569;
}
html[data-theme="light"] .adVisit {
	background: #f8fafc;
	border-color: var(--ag-line);
}
html[data-theme="light"] .adVisit__title {
	color: #0f172a;
}
html[data-theme="light"] .adVisit__desc {
	color: #64748b;
}
html[data-theme="light"] .adVisitTable {
	border-color: #e2e8f0;
	background: #fff;
}
html[data-theme="light"] .adVisitTable th,
html[data-theme="light"] .adVisitTable td {
	border-bottom-color: #e2e8f0;
}
html[data-theme="light"] .adVisitTable th {
	color: #0f172a;
	background: rgba(224, 242, 254, 0.88);
	border-right-color: #e2e8f0;
}
html[data-theme="light"] .adVisitTable td {
	color: #334155;
}

/* --- 오시는길 · 주차 --- */
html[data-theme="light"] .routeGuide {
	--rg-bg: rgba(255, 255, 255, 0.97);
	--rg-line: rgba(148, 163, 184, 0.42);
	--rg-text: #0f172a;
	--rg-sub: #64748b;
	background: var(--rg-bg);
	border-color: var(--rg-line);
	color: var(--rg-text);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .routeGuide::before {
	opacity: 0.28;
}
html[data-theme="light"] .routeGuide__section {
	background: #f8fafc;
	border-color: var(--rg-line);
}
html[data-theme="light"] .routeGuide__sectionTitle {
	color: #0f172a;
}
html[data-theme="light"] .rgCard {
	background: #fff;
	border-color: var(--rg-line);
}
html[data-theme="light"] .rgMapSlot {
	border-color: rgba(148, 163, 184, 0.45);
	background: #f1f5f9;
}
html[data-theme="light"] .rgMapSlot__desc {
	color: #475569;
}
html[data-theme="light"] .rgInfoItem {
	background: #f8fafc;
	border-color: #e2e8f0;
}
html[data-theme="light"] .rgIcon {
	background: rgba(2, 132, 199, 0.1);
	border-color: rgba(2, 132, 199, 0.28);
	color: #0369a1;
}
html[data-theme="light"] .rgInfoText strong {
	color: #64748b;
}
html[data-theme="light"] .rgInfoText span,
html[data-theme="light"] .rgInfoText span a {
	color: #0f172a;
}
html[data-theme="light"] .rgBusRow {
	background: #f8fafc;
	border-color: #e2e8f0;
}
html[data-theme="light"] .rgBusStop {
	color: #0f172a;
}
html[data-theme="light"] .rgPill {
	background: #fff;
	border-color: #e2e8f0;
	color: #334155;
}
html[data-theme="light"] .rgPill--muted {
	border-color: rgba(234, 88, 12, 0.45);
	color: #9a3412;
}
html[data-theme="light"] .rgNotice {
	background: #f1f5f9;
	border-color: rgba(148, 163, 184, 0.45);
}
html[data-theme="light"] .rgNotice p {
	color: #475569;
}
html[data-theme="light"] .rgEm {
	color: #be185d;
}
html[data-theme="light"] .rgDivider {
	background: #e2e8f0;
}
html[data-theme="light"] .rgMapSlot__desc img {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: #e2e8f0;
}

/* --- 전화번호안내 --- */
html[data-theme="light"] .phoneGuide {
	--pg-bg: rgba(255, 255, 255, 0.97);
	--pg-line: rgba(148, 163, 184, 0.42);
	--pg-text: #0f172a;
	--pg-sub: #64748b;
	background: var(--pg-bg);
	border-color: var(--pg-line);
	color: var(--pg-text);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .phoneGuide::before {
	opacity: 0.28;
}
html[data-theme="light"] .pgHero {
	background: #f8fafc;
	border-color: var(--pg-line);
}
html[data-theme="light"] .pgHero__k,
html[data-theme="light"] .pgHero__num {
	color: #0f172a;
}
html[data-theme="light"] .pgHero__desc {
	color: #475569;
}
html[data-theme="light"] .pgIcon {
	background: #fff;
	border-color: #e2e8f0;
	color: #334155;
}
html[data-theme="light"] .pgHero--pink .pgIcon {
	background: rgba(251, 113, 133, 0.12);
	border-color: rgba(251, 113, 133, 0.35);
}
html[data-theme="light"] .pgHero--blue .pgIcon {
	background: rgba(2, 132, 199, 0.1);
	border-color: rgba(2, 132, 199, 0.32);
}
html[data-theme="light"] .pgPill {
	background: #fff;
	border-color: #e2e8f0;
	color: #475569;
}
html[data-theme="light"] .pgPill--pink {
	border-color: rgba(251, 113, 133, 0.4);
	background: rgba(254, 242, 242, 0.9);
	color: #9f1239;
}
html[data-theme="light"] .pgPill--blue {
	border-color: rgba(2, 132, 199, 0.4);
	background: rgba(224, 242, 254, 0.85);
	color: #0369a1;
}
html[data-theme="light"] .pgTable {
	background: #fff;
	border-color: #e2e8f0;
}
html[data-theme="light"] .pgTable thead th {
	color: #0f172a;
	background: #f1f5f9;
	border-bottom-color: #e2e8f0;
}
html[data-theme="light"] .pgTable tbody td {
	color: #334155;
	border-bottom-color: #eef2f6;
}
html[data-theme="light"] .pgTable tbody td:nth-child(1) {
	color: #0f172a;
}
html[data-theme="light"] .pgTable tbody td a {
	color: #0284c7;
}
html[data-theme="light"] .pgNote {
	background: #f1f5f9;
	border-color: rgba(148, 163, 184, 0.45);
	color: #475569;
}
html[data-theme="light"] .pgHot {
	color: #be185d;
}

/* --- 층별안내 --- */
html[data-theme="light"] .floorGuide {
	--fg-bg: rgba(255, 255, 255, 0.97);
	--fg-line: rgba(148, 163, 184, 0.42);
	--fg-text: #0f172a;
	--fg-sub: #64748b;
	background: var(--fg-bg);
	border-color: var(--fg-line);
	color: var(--fg-text);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .floorGuide::before {
	opacity: 0.28;
}
html[data-theme="light"] .fgHero {
	background: #f8fafc;
	border-color: var(--fg-line);
}
html[data-theme="light"] .fgHero__slot {
	border-color: #cbd5e1;
	background: #fff;
}
html[data-theme="light"] .fgTableWrap {
	border-color: #e2e8f0;
	background: #fff;
}
html[data-theme="light"] .fgTable thead th {
	color: #0f172a;
	background: #f1f5f9;
	border-bottom-color: #e2e8f0;
}
html[data-theme="light"] .fgTable tbody td {
	color: #334155;
	border-bottom-color: #f1f5f9;
}
html[data-theme="light"] .fgColFloor {
	color: #0f172a;
	background: rgba(224, 242, 254, 0.65);
	border-left-color: #e2e8f0;
	border-right-color: #e2e8f0;
}
html[data-theme="light"] .fgTagBtn {
	background: #fff;
	border-color: #cbd5e1;
	color: #334155;
}
html[data-theme="light"] .fgTagBtn:hover {
	background: #f8fafc;
	border-color: #94a3b8;
}
html[data-theme="light"] .fgTagBtn.is-linked {
	border-color: rgba(219, 39, 119, 0.35);
	background: rgba(251, 113, 133, 0.1);
}
html[data-theme="light"] .fgToast {
	background: rgba(15, 23, 42, 0.9);
	border-color: #334155;
	color: #f8fafc;
}
html[data-theme="light"] .fgMainImg {
	border-color: #e2e8f0;
	background: #f8fafc;
}
html[data-theme="light"] .fgThumb {
	background: #fff;
	border-color: #e2e8f0;
}

/* --- 증명서발급 --- */
html[data-theme="light"] .certIssue {
	--ci-bg: rgba(255, 255, 255, 0.97);
	--ci-line: rgba(148, 163, 184, 0.42);
	--ci-text: #0f172a;
	--ci-sub: #64748b;
	background: var(--ci-bg);
	border-color: var(--ci-line);
	color: var(--ci-text);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .certIssue::before {
	opacity: 0.28;
}
html[data-theme="light"] .ciFlow {
	background: #f8fafc;
	border-color: var(--ci-line);
}
html[data-theme="light"] .ciFlow__title {
	color: #0f172a;
}
html[data-theme="light"] .ciStep {
	background: linear-gradient(135deg, rgb(111 252 255 / 55%), rgb(255 109 194 / 45%));
	border-color: #e2e8f0;
}
html[data-theme="light"] .ciStep__k {
	color: #334155;
}
html[data-theme="light"] .ciStep__dot {
	background: #2f8dff;
	box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.22);
}
html[data-theme="light"] .ciStep.is-accent .ciStep__dot {
	background: #fb7185;
	box-shadow: 0 0 0 6px rgba(251, 113, 133, 0.2);
}
html[data-theme="light"] .ciStep__desc {
	color: #64748b;
}
html[data-theme="light"] .ciArrow {
	color: #94a3b8;
}
html[data-theme="light"] .ciDownload {
	color: #065f46;
	background: rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.38);
}
html[data-theme="light"] .ciDownload:hover {
	background: rgba(16, 185, 129, 0.2);
}
html[data-theme="light"] .ciDownload__icon {
	background: #f0fdf4;
	border-color: #bbf7d0;
}
html[data-theme="light"] .ciCard {
	background: #fff;
	border-color: #e2e8f0;
}
html[data-theme="light"] .ciCard__h {
	color: #0f172a;
}
html[data-theme="light"] .ciList {
	color: #475569;
}
html[data-theme="light"] .ciHot {
	color: #be185d;
}
html[data-theme="light"] .ciSoft {
	color: #64748b;
}
html[data-theme="light"] .ciTableWrap {
	background: #fff;
	border-color: #e2e8f0;
}
html[data-theme="light"] .ciTableTitle {
	background: #f8fafc;
	border-bottom-color: #e2e8f0;
	color: #0f172a;
}
html[data-theme="light"] .ciBadge {
	background: #fff;
	border-color: #e2e8f0;
	color: #475569;
}
html[data-theme="light"] .ciTable td {
	color: #334155;
	border-bottom-color: #f1f5f9;
}
html[data-theme="light"] .ciColA {
	background: rgba(224, 242, 254, 0.55);
	color: #0f172a;
	border-right-color: #e2e8f0;
}
html[data-theme="light"] .ciColB {
	color: #0f172a;
	border-right-color: #e2e8f0;
}

/* --- 비급여진료비 --- */
html[data-theme="light"] .feeUser {
	--fee-bg: rgba(255, 255, 255, 0.97);
	--fee-line: rgba(148, 163, 184, 0.42);
	--fee-text: #0f172a;
	--fee-sub: #64748b;
	--fee-accent: #0284c7;
	background: var(--fee-bg);
	border-color: var(--fee-line);
	color: var(--fee-text);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .feeUser::before {
	opacity: 0.28;
}
html[data-theme="light"] .feeUser__title {
	color: var(--fee-text);
}
html[data-theme="light"] .feeUser__searchBtn {
	background: rgba(2, 132, 199, 0.12);
	border-color: rgba(2, 132, 199, 0.38);
	color: #0369a1;
}
html[data-theme="light"] .feeUser__searchBtn:hover {
	background: rgba(2, 132, 199, 0.22);
	border-color: rgba(2, 132, 199, 0.55);
	color: #0c4a6e;
}
html[data-theme="light"] .feeUser__tab {
	background: #fff;
	border-color: #e2e8f0;
	color: #475569;
}
html[data-theme="light"] .feeUser__tab:hover {
	background: #f8fafc;
	color: #0f172a;
}
html[data-theme="light"] .feeUser__tab.is-active {
	background: rgba(224, 242, 254, 0.95);
	border-color: rgba(2, 132, 199, 0.45);
	color: #0369a1;
}
html[data-theme="light"] .feeUser__tableWrap {
	border-color: #e2e8f0;
	background: #f8fafc;
	scrollbar-color: #94a3b8 #e2e8f0;
}
html[data-theme="light"] .feeUser__tableWrap::-webkit-scrollbar-thumb {
	background: rgba(100, 116, 139, 0.4);
}
html[data-theme="light"] .feeUser__table th,
html[data-theme="light"] .feeUser__table td {
	border-bottom-color: #e2e8f0;
	color: #334155;
}
html[data-theme="light"] .feeUser__table thead th {
	background: #eef2ff;
	color: #0f172a;
	border-bottom-color: #cbd5e1;
}
html[data-theme="light"] .feeUser__table .feeUser__theadRow2 th {
	color: #475569;
}
html[data-theme="light"] .feeUser__table tbody tr:nth-child(even) td {
	background: rgba(241, 245, 249, 0.75);
}
html[data-theme="light"] .feeUser__table tbody tr:hover td {
	background: rgba(224, 242, 254, 0.5);
}
html[data-theme="light"] .feeUser__table .feeUser__tdCategory {
	color: #0f172a;
}
html[data-theme="light"] .feeUser__empty {
	color: #64748b;
}
html[data-theme="light"] .feeSearchModal__hint {
	color: #64748b;
}
html[data-theme="light"] .feeSearchModal__input {
	background: #fff;
	border-color: #cbd5e1;
	color: #0f172a;
}
html[data-theme="light"] .feeSearchModal__input::placeholder {
	color: #94a3b8;
}
html[data-theme="light"] .feeSearchModal__input:focus {
	border-color: rgba(2, 132, 199, 0.55);
}
html[data-theme="light"] .feeSearchModal__resultCount {
	color: #64748b;
}
html[data-theme="light"] .feeUser__emptyCell {
	color: #94a3b8;
}

/* =====================================================================
   병원소개(menu_03) 통합 검색 모달 — main_light 단독 시트에만 포함
   ===================================================================== */

.search-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
}

.search-modal.is-open {
	display: block;
}

.search-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.search-modal-panel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 40%;
	min-height: 400px;
	height: auto;
	background: #fff;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
	border: 1px solid #e2e8f0;
	overflow: hidden;
}

.search-header {
	padding: 15px;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg, #e0f2fe, #fae8ff, #e0e7ff);
	border-radius: 20px 20px 0 0;
}

.search-input-wrap {
	flex: 1;
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 8px 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #cbd5e1;
}

.search-input-wrap input {
	border: none;
	background: transparent;
	outline: none;
	font-size: 15px;
	width: 100%;
	color: #0f172a;
}

.search-clear {
	font-size: 14px;
	color: #94a3b8;
	cursor: pointer;
}

.search-close-btn {
	font-size: 15px;
	color: #334155;
	font-weight: bold;
	background: none;
	border: none;
	cursor: pointer;
}

.search-body {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	background: #f8fafc;
	border-radius: 0 0 20px 20px;
}

.search-section-title {
	font-size: 14px;
	font-weight: bold;
	color: #0f172a;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
}

.recent-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.recent-tag {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 6px 12px;
	font-size: 13px;
	color: #334155;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: 0.2s;
}

.recent-tag:hover {
	border-color: #0284c7;
	background: #f0f9ff;
	color: #0369a1;
}

.recent-tag .del {
	color: #94a3b8;
	font-size: 16px;
	line-height: 1;
	margin-left: 4px;
}

.recent-tag .del:hover {
	color: #ef4444;
}

.no-recent {
	width: 100%;
	text-align: center;
	color: #64748b;
	font-size: 13px;
	margin-top: 20px;
}

#searchFeed .board-card {
	margin-bottom: 15px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.search-group-title {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
	margin: 50px 0 0;
	padding: 7px 10px;
	border-bottom: 2px dashed #cbd5e1;
	display: flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(90deg, rgba(224, 242, 254, 0.95), rgba(250, 232, 255, 0.9), rgba(226, 232, 240, 0.95));
	border-radius: 10px 10px 0 0;
}

.search-group-title:first-child {
	margin-top: 0;
}

.search-group-title span {
	font-size: 13px;
	color: #64748b;
	font-weight: normal;
	margin-left: auto;
}

.btn-search-trigger {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid rgba(148, 163, 184, 0.55);
	background: #3a3a3a;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	color: #334155;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.btn-search-trigger .icon {
	font-size: 16px;
}

.btn-search-trigger:active {
	background: #f1f5f9;
	transform: scale(0.95);
}

.filter-empty-msg {
	text-align: center;
	color: #64748b;
	width: 100%;
	position: absolute;
	padding-top: 32%;
}

@media (max-width: 960px) {
	.search-modal-panel {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		display: flex;
		flex-direction: column;
		max-width: 100%;
		min-height: 100%;
		transform: none;
		border-radius: 0;
	}

	.search-body {
		border-radius: 0;
	}

	.search-header {
		border-radius: 0;
	}

	.filter-empty-msg {
		padding-top: 35%;
	}
}

/* =====================================================================
   병원소개(menu_03) — 라이트: content의 edenFocus2·오버레이 등 다크 블록 보정
   (content가 main_light 이후 로드되어 .ef2* 기본 다크가 적용되는 경우)
   ===================================================================== */

html[data-theme="light"] .ef2Head {
	border-color: rgba(251, 113, 133, 0.28);
	background: linear-gradient(135deg, rgba(251, 113, 133, 0.12), rgba(255, 255, 255, 0.96));
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .ef2Chip {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

html[data-theme="light"] .ef2Title {
	color: #0f172a;
}

html[data-theme="light"] .ef2Desc {
	color: #64748b;
}

html[data-theme="light"] .ef2Timeline::before {
	background: linear-gradient(to bottom, rgb(234 113 17), rgb(246 24 57 / 85%), rgb(230 100 231 / 85%), rgb(165 33 206 / 85%), rgb(7 50 189 / 82%));
	box-shadow:
		0 0 0 6px rgba(251, 113, 133, 0.06),
		0 0 18px rgba(251, 113, 133, 0.12);
}

html[data-theme="light"] .ef2Year {
	border-color: #e2e8f0;
	background: #fff;
	color: #0f172a;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .ef2Event {
	border-color: #e2e8f0;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .ef2Event::after {
	background: radial-gradient(900px 220px at 0% 0%, rgba(251, 113, 133, 0.06), rgba(255, 255, 255, 0) 55%);
	opacity: 1;
}

html[data-theme="light"] .ef2Event:hover {
	border-color: #cbd5e1;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] .ef2Date {
	color: #475569;
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .ef2Text {
	color: #0f172a;
}

html[data-theme="light"] .ef2Sub {
	color: #64748b;
}

html[data-theme="light"] .ef2Event.ef2Event--presidential {
	border-color: rgba(234, 179, 8, 0.45);
	background: linear-gradient(135deg, rgb(85 98 246 / 90%), rgb(142 0 119 / 98%));
	box-shadow: 0 14px 36px rgba(180, 83, 9, 0.1), 0 0 0 1px rgba(234, 179, 8, 0.2);
}

html[data-theme="light"] .ef2Event.ef2Event--presidential .ef2Text {
	color: #fff;
	text-shadow: none;
}

html[data-theme="light"] .ef2Event.ef2Event--presidential .ef2PresidentialBadge {
	background: linear-gradient(135deg, rgb(85 255 242 / 35%), rgb(240 97 246 / 60%));
	border-color: rgba(202, 138, 4, 0.45);
	color: #ffffff;
}

html[data-theme="light"] .efSwitchOverlay {
	background: rgba(248, 250, 252, 0.88);
}

html[data-theme="light"] .efOverlayCard {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .efOverlayTop {
	border-bottom-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .efOverlayTitle {
	color: #0f172a;
}

html[data-theme="light"] .efOverlayClose {
	border-color: #cbd5e1;
	background: #fff;
	color: #334155;
}

html[data-theme="light"] .efOverlayClose:hover {
	background: #f1f5f9;
}

html[data-theme="light"] .efOverlayBody {
	color: #475569;
}

html[data-theme="light"] .efFloatBtn {
	border-color: rgba(251, 113, 133, 0.35);
	background: rgba(251, 113, 133, 0.12);
	color: #9f1239;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .efFloatBtn:hover {
	background: rgba(251, 113, 133, 0.2);
}

/* =====================================================================
   산후조리원(menu_04) — content 다크 카드·표·갤러리·영양안내 라이트 톤
   ===================================================================== */

html[data-theme="light"] .careCard {
	--ag-bg: linear-gradient(165deg, rgb(255 255 255 / 98%), rgb(255 233 251 / 92%));
	--ag-line: #e2e8f0;
	--ag-soft: #f8fafc;
	--ag-text: #0f172a;
	--ag-sub: #64748b;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .careCard--alert {
	border-color: rgba(251, 113, 133, 0.35);
	background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(255, 255, 255, 0.95));
}

html[data-theme="light"] .careBadge {
	color: #334155;
	border-color: #e2e8f0;
}

html[data-theme="light"] .careBadge--warn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

html[data-theme="light"] .careTitle {
	color: #0f172a;
}

html[data-theme="light"] .careDesc {
	color: #64748b;
}

html[data-theme="light"] .careList li {
	color: #475569;
}

html[data-theme="light"] .careGallery__thumb {
	border-color: #e2e8f0;
	background: #f1f5f9;
}

html[data-theme="light"] .carePoints li {
	border-color: #e2e8f0;
	background: #fff;
}

html[data-theme="light"] .careNum {
	color: #0f172a;
	background: #f1f5f9;
	border-color: #e2e8f0;
}

html[data-theme="light"] .carePoint__body strong {
	color: #0f172a;
}

html[data-theme="light"] .carePoint__body p {
	color: #64748b;
}

html[data-theme="light"] .careCall {
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .careCall__icon {
	background: #fff;
	border-color: #e2e8f0;
	color: #0f172a;
}

html[data-theme="light"] .careCall__label {
	color: #64748b;
}

html[data-theme="light"] .careCall__tel {
	color: #0f172a;
}

html[data-theme="light"] .careCall__btn {
	color: #9f1239;
	border-color: rgba(251, 113, 133, 0.35);
	background: rgba(251, 113, 133, 0.1);
}

html[data-theme="light"] .careCall__btn:hover {
	background: rgba(251, 113, 133, 0.18);
}

html[data-theme="light"] .careMini li {
	border-color: #e2e8f0;
	background: #fff;
}

html[data-theme="light"] .careMini span {
	color: #64748b;
}

html[data-theme="light"] .careMini b {
	color: #0f172a;
}

html[data-theme="light"] .careSubNotice {
	border-color: #cbd5e1;
	background: #f8fafc;
}

html[data-theme="light"] .careSubNotice p {
	color: #334155;
}

html[data-theme="light"] .careMiniList li {
	color: #475569;
}

html[data-theme="light"] .careStep__bubble {
	border-color: #e2e8f0;
	background: #fff;
	color: #334155;
}

html[data-theme="light"] .careStep__bubble small {
	color: #64748b;
}

html[data-theme="light"] .careStep.is-active .careStep__bubble {
	border-color: rgba(59, 130, 246, 0.45);
	background: rgba(239, 246, 255, 0.95);
}

html[data-theme="light"] .careStep.is-accent .careStep__bubble {
	border-color: rgba(251, 113, 133, 0.4);
	background: rgba(254, 242, 242, 0.9);
}

html[data-theme="light"] .careArrow {
	background: #cbd5e1;
}

html[data-theme="light"] .careArrow:after {
	border-left-color: #94a3b8;
}

html[data-theme="light"] .careTerms__header {
	border-color: rgba(251, 113, 133, 0.28);
	background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(255, 255, 255, 0.95));
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .careTerms__chip {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

html[data-theme="light"] .careTerms__title {
	color: #0f172a;
}

html[data-theme="light"] .careTerms__sale {
	color: #db2777;
}

html[data-theme="light"] .careTerms__desc {
	color: #64748b;
}

html[data-theme="light"] .ctCard {
	--ag-bg: linear-gradient(165deg, rgb(255 255 255 / 64%), rgb(255 233 251 / 60%));
	--ag-line: #e2e8f0;
	--ag-soft: #f8fafc;
	--ag-text: #0f172a;
	--ag-sub: #64748b;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .ctCard--accent {
	border-color: rgba(251, 113, 133, 0.3);
	background: rgba(254, 242, 242, 0.92);
}

html[data-theme="light"] .ctCard__title {
	color: #0f172a;
}

html[data-theme="light"] .ctCard__sub {
	color: #64748b;
}

html[data-theme="light"] .ctHint {
	color: #475569;
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .ctTerms__item {
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .ctTerms__title {
	color: #0f172a;
}

html[data-theme="light"] .ctList li {
	color: #475569;
}

html[data-theme="light"] .ctFootnote {
	border-color: #cbd5e1;
	background: #f8fafc;
}

html[data-theme="light"] .ctFootnote__p {
	color: #64748b;
}

html[data-theme="light"] .ctTableWrap {
	border-color: #e2e8f0;
	background: #f8fafc;
	scrollbar-color: rgba(148, 163, 184, 0.55) #f1f5f9;
}

html[data-theme="light"] .ctTableWrap::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.45);
}

html[data-theme="light"] .ctTable th,
html[data-theme="light"] .ctTable td {
	border-bottom-color: #e2e8f0;
	color: #334155;
}

html[data-theme="light"] .ctTable thead th {
	background: #f1f5f9;
	color: #0f172a;
	border-bottom-color: #e2e8f0;
}

html[data-theme="light"] .ctTable td b {
	color: #0f172a;
}

html[data-theme="light"] .boldText {
	color: #b45309;
}

html[data-theme="light"] .ctNote {
	border-color: #cbd5e1;
	background: #fff;
}

html[data-theme="light"] .ctNote p {
	color: #64748b;
}

html[data-theme="light"] .ctStrong {
	color: #0f172a;
}

html[data-theme="light"] .ctCTA {
	border-color: #e2e8f0;
	background: linear-gradient(165deg, rgb(219 237 255 / 98%), rgb(255 233 251 / 92%));
}

html[data-theme="light"] .ctCTA__label {
	color: #64748b;
}

html[data-theme="light"] .ctCTA__tel {
	color: #0f172a;
}

html[data-theme="light"] .ctCTA__sub {
	color: #64748b;
}

html[data-theme="light"] .ctCTA__btn {
	color: #9f1239;
	border-color: rgba(251, 113, 133, 0.35);
	background: rgba(251, 113, 133, 0.1);
}

html[data-theme="light"] .ctCTA__btn:hover {
	background: rgba(251, 113, 133, 0.18);
}

html[data-theme="light"] .ccHero__img {
	border-color: #e2e8f0;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] .ccHero__tag {
	color: #334155;
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .ccHero__title {
	color: #0f172a;
}

html[data-theme="light"] .ccHero__desc {
	color: #64748b;
}

html[data-theme="light"] .ngTop {
	border-color: rgba(251, 113, 133, 0.25);
	background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(255, 255, 255, 0.95));
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .ngTop__chip {
	color: #fff;
}

html[data-theme="light"] .ngTop__title {
	color: #0f172a;
}

html[data-theme="light"] .ngTop__desc,
html[data-theme="light"] .ngTop__mini {
	color: #64748b;
}

html[data-theme="light"] .ngHero2 {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .ngHero2__badge {
	border-color: #e2e8f0;
	background: linear-gradient(165deg, rgb(219 237 255 / 98%), rgb(255 233 251 / 92%));
	color: #0f172a;
}

html[data-theme="light"] .ngIco {
	background: #f1f5f9;
	color: #334155;
}

html[data-theme="light"] .ngStat {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.2);
}

html[data-theme="light"] .ngStat__ico {
	background: rgba(255, 255, 255, 0.25);
}

html[data-theme="light"] .ngPoint {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .ngPoint h4 {
	color: #0f172a;
}

html[data-theme="light"] .ngPoint p {
	color: #64748b;
}

html[data-theme="light"] .ngPanel {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .ngPanel__chip {
	color: #334155;
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .ngPanel__title {
	color: #0f172a;
}

html[data-theme="light"] .ngPanel__desc,
html[data-theme="light"] .ngPanel__hint {
	color: #64748b;
}

html[data-theme="light"] .ngImg2 {
	border-color: #e2e8f0;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .ngImg2__cap {
	border-color: #e2e8f0;
	background: rgba(255, 255, 255, 0.95);
	color: #0f172a;
}

html[data-theme="light"] .ngCard {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .ngSectionTitle {
	color: #0f172a;
}

html[data-theme="light"] .ngList li {
	border-bottom-color: #e2e8f0;
	color: #475569;
}

html[data-theme="light"] .ngList p {
	color: #64748b;
}

html[data-theme="light"] .ngModal2__dialog {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
}

html[data-theme="light"] .ngModal2__close {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: #334155;
}

html[data-theme="light"] .imgModal__panel {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.15);
}

html[data-theme="light"] .imgModal__close {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: #334155;
}

html[data-theme="light"] .imgModal__alt {
	color: #334155;
	border-color: #e2e8f0;
	background: #f8fafc;
}

html[data-theme="light"] .edenFacilityGalleryHead {
	border-color: rgba(251, 113, 133, 0.25);
	background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(255, 255, 255, 0.96));
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .edenFacilityGalleryChip {
	color: #fff;
}

html[data-theme="light"] .edenFacilityGalleryTitle {
	color: #0f172a;
}

html[data-theme="light"] .edenFacilityGalleryHint {
	color: #64748b;
}

html[data-theme="light"] .edenFacilityGalleryCounter {
	border-color: #e2e8f0;
	background: #f8fafc;
	color: #334155;
}

html[data-theme="light"] .edenFacilityGalleryViewport {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .edenFacilityGalleryCaption {
	background: rgb(255 255 255 / 55%);
	border-color: #e2e8f0;
}

html[data-theme="light"] .edenFacilityGalleryCaption span {
	color: #0f172a;
}

html[data-theme="light"] .edenFacilityGalleryNav {
	border-color: #e2e8f0;
	background: #fff;
	color: #334155;
}

html[data-theme="light"] .edenFacilityGalleryNav:hover {
	background: #f8fafc;
}

html[data-theme="light"] .edenFacilityGalleryThumbWrap {
	border-color: #e2e8f0;
	background: linear-gradient(165deg, rgb(255 255 255 / 64%), rgb(255 233 251 / 60%));
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .edenFacilityGalleryThumb {
	border-color: #e2e8f0;
	background: #fff;
}

html[data-theme="light"] .edenFacilityGalleryThumbNav {
	border-color: #e2e8f0;
	background: #fff;
	color: #334155;
}

html[data-theme="light"] .edenFacilityGalleryThumbNav:hover {
	background: #f1f5f9;
}

html[data-theme="light"] .edenFacilityGalleryLightboxPanel {
	border-color: #e2e8f0;
	background: #fff;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}

html[data-theme="light"] .edenFacilityGalleryLightboxCap {
	border-color: #e2e8f0;
	background: #f8fafc;
	color: #334155;
}

html[data-theme="light"] .edenFacilityGalleryLightboxClose,
html[data-theme="light"] .edenFacilityGalleryLightboxNav {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: #334155;
}

html[data-theme="light"] .edenFacilityGalleryLightboxClose:hover,
html[data-theme="light"] .edenFacilityGalleryLightboxNav:hover {
	background: #f1f5f9;
}
.mobile_menu_focus{
    margin: 0 0 0 10px;
    border-radius: 15px;
    padding: 5px 10px 3px;
    background: linear-gradient(135deg, #60a5fa, #fb7185);
    color: #fff;
    box-shadow: 4px 3px 10px rgb(187 192 202 / 90%);
    font-family: "Jua", sans-serif;
}

#lookupResultContent tr th,
#lookupResultContent tr td {
    color: #666666 !important;
    text-align: center;
}