/* 삼성미래여성병원 - 메인 스타일 */
:root {
	--primary: #5ec4c4;
	--primary-dark: #3aabaa;
	--primary-light: #e8f6f6;
	--accent-pink: #e57399;
	--accent-purple: #9b7fd4;
	--text-main: #1a2b3c;
	--text-soft: #6b7c8d;
	--text-muted: #94a3b8;
	--card-bg: #ffffff;
	--bg-page: #dff0ef;
	--nav-h: 72px;
	--panel-w: 330px;
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--shadow-soft: 0 20px 50px rgba(26, 43, 60, 0.08);
	--shadow-card: 0 8px 30px rgba(26, 43, 60, 0.06);
	--shadow-hover: 0 16px 40px rgba(94, 196, 196, 0.18);
	--gradient-reserve: linear-gradient(135deg, #5ec4c4 0%, #9b7fd4 55%, #e57399 100%);
	--transition: 0.25s ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-padding-top: var(--nav-h);
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Noto Sans KR", sans-serif;
	font-size: 18px;
	letter-spacing: -0.02em;
	color: var(--text-main);
	background: var(--bg-page);
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

img {
	max-width: 100%;
	display: block;
}

/* ===== 전체 래퍼 ===== */
.screen {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.2); }
}

/* ===== 헤더 ===== */
.header {
	position: relative;
	z-index: 10;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 28px;
	flex-shrink: 0;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.header-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-img {
	height: 52px;
	width: auto;
	display: block;
	flex-shrink: 0;
}

.logo-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.logo-text {
	font-size: 20px;
	font-weight: 800;
	color: var(--text-main);
	line-height: 1.2;
	white-space: nowrap;
}

.header-center {
	display: flex;
	align-items: center;
	gap: 6px;
    background: #f3fdfc;
    border-radius: 200px;
}

.nav-item {
	position: relative;
}

.nav-item-title {
	display: block;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-main);
	border-radius: 999px;
	transition: background var(--transition), color var(--transition);
}

.nav-item-title:hover,
.nav-item.is-active .nav-item-title {
	background: var(--primary);
	color: #fff;
}

.nav-sub {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 180px;
	padding: 10px;
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	z-index: 100;
}

.nav-item:hover .nav-sub {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav-sub a {
	display: block;
	padding: 8px 12px;
	font-size: 15px;
	color: var(--text-soft);
	border-radius: 8px;
	transition: background var(--transition), color var(--transition);
}

.nav-sub a:hover {
	background: var(--primary-light);
	color: var(--primary-dark);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.header-login {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: var(--text-soft);
	transition: color var(--transition);
}

.header-login:hover {
	color: var(--primary-dark);
}

.header-login svg,
.header-login img {
	width: 18px;
	height: 18px;
	display: block;
	flex-shrink: 0;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-main);
}

.header-phone svg,
.header-phone img {
	width: 18px;
	height: 18px;
	display: block;
	flex-shrink: 0;
	color: var(--primary);
}

.mobile-menu-btn {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--text-main);
}

/* ===== 메인 그리드 ===== */
.main {
	position: relative;
	z-index: 1;
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--panel-w);
	grid-template-rows: minmax(0, 1fr);
	gap: 18px;
	padding: 0 28px 16px;
	align-items: stretch;
}

.dashboard,
.sub-body,
.side-panel {
	height: 100%;
	max-height: 100%;
	min-height: 0;
	align-self: stretch;
}

/* ===== 대시보드 (왼쪽) ===== */
.dashboard {
	position: relative;
	border-radius: var(--radius-lg);
	background: #edf7f6;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	/* overflow: hidden; */
	gap: 20px;
	min-height: 0;
	animation: fadeInUp 0.6s ease both;
}

.dashboard-lower {
	position: relative;
	flex-shrink: 0;
	/* padding: 16px; */
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dashboard-lower::before {
	content: "";
	position: absolute;
	top: 0;
	right: 16px;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle at 100% 0%, transparent 20px, #edf7f6 20.5px);
	z-index: 2;
}

/* 히어로 슬라이더 */
.hero-slider {
	position: relative;
	min-height: 0;
	flex: 1;
	margin: 16px 16px 0;
	border-radius: 20px;
	overflow: hidden;
}

.hero-slides {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1s ease, transform 7s ease-out;
}

.hero-slide.active {
	opacity: 1;
	transform: scale(1.1);
}

.hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 36px 40px;
	height: 100%;
	min-height: 280px;
}

.hero-text-slide {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	max-width: 520px;
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
	pointer-events: none;
}

.hero-text-slide.active {
	opacity: 1;
	transform: translateY(-50%);
	pointer-events: auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(94, 196, 196, 0.15);
	border: 1px solid rgba(94, 196, 196, 0.35);
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-dark);
	margin-bottom: 16px;
}

.hero-text-slide h1 {
	margin: 0 0 8px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--text-main);
}

.hero-text-slide h1 .highlight {
	display: block;
	font-size: 40px;
	font-weight: 800;
	color: var(--primary-dark);
	margin-top: 4px;
}

.hero-text-slide p {
	margin: 30px 0 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-soft);
}

.hero-controls {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #edf7f6;
	border-top-left-radius: 28px;
	padding: 10px 14px 12px 38px;
}

.hero-controls::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle at 0% 100%, transparent 20px, #edf7f6 20.5px);
}

.hero-pagination {
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 6px 0 4px;
	border-radius: 999px;
	background: #5ec4c4;
	color: #fff;
	box-shadow: none;
}

.hero-nav-btn {
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.hero-nav-btn svg,
.hero-nav-btn img {
	width: 14px;
	height: 14px;
	display: block;
}

.hero-nav-btn img {
	filter: brightness(0) invert(1);
}

.hero-arrow--prev {
	transform: rotate(180deg);
}

.hero-nav-btn:hover {
	background: rgba(255, 255, 255, 0.18);
}

.hero-page-info {
	min-width: 44px;
	padding: 0 50px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
	line-height: 1;
}

.hero-pause {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	padding: 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #5ec4c4;
	color: #fff;
	box-shadow: none;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.hero-pause svg {
	width: 14px;
	height: 14px;
}

.hero-pause img.play-icon {
	width: 40px;
	height: 40px;
	display: none;
	object-fit: contain;
}

.hero-pause:hover {
	transform: scale(1.04);
	background: #4db8b8;
}

.hero-pause.is-paused {
	background: transparent;
	box-shadow: none;
}

.hero-pause.is-paused:hover {
	background: transparent;
	transform: scale(1.04);
}

.hero-pause.is-paused img.play-icon {
	display: block;
}

.hero-pause.is-paused svg.pause-icon {
	display: none;
}

/* 퀵 링크 카드 */
.quick-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.quick-tile {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 12px;
	border-radius: 16px;
	background: #fff;
	border: none;
	box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
	cursor: pointer;
	transition: transform var(--transition), box-shadow var(--transition);
	animation: fadeInUp 0.6s ease both;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.quick-tile:nth-child(1) { animation-delay: 0.1s; }
.quick-tile:nth-child(2) { animation-delay: 0.15s; }
.quick-tile:nth-child(3) { animation-delay: 0.2s; }
.quick-tile:nth-child(4) { animation-delay: 0.25s; }

.quick-tile:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(94, 196, 196, 0.18);
}

.quick-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0;
	background: transparent;
}

.quick-icon svg,
.quick-icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.quick-icon.teal { background: #5ec4c4; }
.quick-icon.purple { background: #9b7fd4; }
.quick-icon.pink { background: #e57399; }
.quick-icon.blue { background: #6ba3e0; }

.quick-tile-body {
	flex: 1;
	min-width: 0;
}

.quick-arrow {
	flex-shrink: 0;
	font-size: 20px;
	line-height: 1;
	color: #b0bec5;
	font-weight: 300;
	transition: color var(--transition), transform var(--transition);
}

.quick-tile:hover .quick-arrow {
	color: var(--primary-dark);
	transform: translateX(2px);
}

.quick-tile-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 3px;
	line-height: 1.3;
}

.quick-tile-desc {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 찾아오시는 길 바 */
.location-bar {
	position: relative;
	display: flex;
	align-items: stretch;
	border-radius: 16px;
	background: #f5f9f9;
	border: 1px solid rgba(94, 196, 196, 0.12);
	overflow: hidden;
	min-height: 40px;
}

.location-bar-content {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	min-width: 0;
}

.location-heading {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--text-main);
}

.location-pin {
	display: flex;
	color: var(--primary);
}

.location-pin svg,
.location-pin img {
	width: 20px;
	height: 20px;
	display: block;
}

.location-address {
	/* flex: 1; */
	font-size: 14px;
	color: var(--text-soft);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.location-map-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px 9px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--primary);
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-dark);
	transition: background var(--transition), transform var(--transition);
}

.location-map-btn span {
	font-size: 16px;
	line-height: 1;
}

.location-map-btn:hover {
	background: var(--primary-light);
	transform: translateX(2px);
}

.location-deco {
	flex-shrink: 0;
	width: 100px;
	background: url('../icon/smh_img_location.svg') right center / contain no-repeat;
	opacity: 0.9;
	mask-image: linear-gradient(90deg, transparent, #000 40%);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 40%);
}

/* ===== 오른쪽 패널 (고정 사이즈) — CSS 변수로 panel-fit.js 조절 ===== */
.side-panel {
	position: relative;
	width: var(--panel-w);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: var(--panel-area-gap, 10px);
	min-height: 0;
	overflow: hidden;
	animation: fadeInUp 0.6s ease 0.15s both;

	--panel-area-gap: 10px;
	--panel-card-py: 12px;
	--panel-card-px: 14px;
	--panel-header-mb: 10px;
	--panel-title-icon: 22px;
	--panel-title-icon-h: 17px;
	--panel-social-icon: 32px;
	--panel-social-btn-w: calc(var(--panel-social-icon) * 1.46875);
	--panel-dots-mt: 8px;
}

.panel-card {
	background: var(--card-bg);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: var(--panel-card-py) var(--panel-card-px);
	flex-shrink: 0;
	border: 1px solid rgba(94, 196, 196, 0.1);
}

.panel-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--panel-header-mb);
}

.panel-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-main);
}

.panel-card-title .icon {
	width: var(--panel-title-icon);
	height: var(--panel-title-icon);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	padding: 0;
	background: transparent;
}

.panel-card-title .icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.panel-card-title .icon.teal { background: rgba(94, 196, 196, 0.15); }
.panel-card-title .icon.pink { background: rgba(229, 115, 153, 0.15); }
.panel-card-title .icon.purple { background: rgba(155, 127, 212, 0.15); }

button.panel-card-link {
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	font-family: inherit;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: inherit;
	color: #5ec4c4;
}

.panel-card-link {
	font-size: 11px;
	/* color: var(--text-muted); */
	color: #5ec4c4;
	transition: color var(--transition);
}

.panel-card-link:hover {
	color: var(--primary-dark);
}

.panel-status {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	font-size: 11px;
	font-weight: 600;
	color: #16a34a;
}

.panel-status .dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #22c55e;
	animation: pulse-dot 1.5s ease infinite;
}

.panel-hours-slide {
	display: none;
}

.panel-hours-slide.active {
	display: block;
}

.panel-hours-list {
	font-size: 12px;
}

.panel-hours-row {
	display: flex;
	justify-content: space-between;
	padding: 3px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.panel-hours-row:last-child {
	border-bottom: none;
}

.panel-hours-row .label {
	color: var(--text-muted);
}

.panel-hours-row .value {
	font-weight: 600;
	color: var(--text-main);
}

.panel-hours-row .value.closed {
	color: var(--accent-pink);
}

.panel-hours-row .value.highlight {
	color: var(--accent-pink);
}

.panel-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: var(--panel-dots-mt);
	flex-shrink: 0;
	min-height: 12px;
}

.panel-dot {
	flex: 0 0 auto;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(94, 196, 196, 0.25);
	cursor: pointer;
	transition: background var(--transition), transform var(--transition);
}

.panel-dot.active {
	background: var(--primary);
	transform: scale(1.2);
}

.panel-doctor-slide {
	display: none;
}

.panel-doctor-slide.active {
	display: block;
}

.panel-doctor-date {
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.panel-doctor-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.panel-doctor-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	background: rgba(94, 196, 196, 0.12);
	border: 1px solid rgba(94, 196, 196, 0.15);
}

.panel-doctor-name {
	font-size: 13px;
	font-weight: 700;
}

.panel-doctor-dept {
	font-size: 11px;
	color: var(--text-muted);
}

.panel-doctor-status {
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
}

.panel-doctor-status--surgery {
	background: #e53935;
}

.panel-doctor-empty {
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	background: rgba(94, 196, 196, 0.08);
	border: 1px solid rgba(94, 196, 196, 0.12);
	font-size: 12px;
	line-height: 1.45;
	color: var(--text-muted);
}

.panel-social {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
}

.panel-social-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	width: var(--panel-social-btn-w);
	padding: 0;
	background: transparent;
	transition: transform var(--transition);
}

.panel-social-btn:hover {
	transform: translateY(-2px);
}

.panel-social-btn .social-icon {
	width: var(--panel-social-icon);
	height: var(--panel-social-icon);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0;
	background: transparent;
	box-shadow: 0 3px 10px rgba(26, 43, 60, 0.08);
}

.panel-social-btn .social-icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.panel-social-btn .social-icon.kakao { background: #fee500; color: #3c1e1e; }
.panel-social-btn .social-icon.blog { background: #03c75a; color: #fff; }
.panel-social-btn .social-icon.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.panel-social-btn .social-icon.youtube { background: #ff0000; color: #fff; }

.panel-social-btn span {
	font-size: 10px;
	color: var(--text-muted);
	text-align: center;
	line-height: 1.2;
	white-space: nowrap;
}

.panel-media-header {
	display: block;
	position: relative;
}

.panel-media-header-set {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
}

.panel-media-header-set.active {
	display: flex;
}

.panel-media-header-set .panel-card-title {
	margin: 0;
}

.panel-news-slide {
	display: none;
}

.panel-news-slide.active {
	display: block;
}

.panel-widget-slides {
	position: relative;
	flex-shrink: 0;
}

.side-panel[data-panel-locked="1"] .panel-widget-slides {
	overflow: hidden;
}

.side-panel[data-panel-locked="1"] .panel-news-slide {
	min-height: var(--widget-slide-h, auto);
}

.side-panel[data-panel-locked="1"] #panelHoursWidget,
.side-panel[data-panel-locked="1"] #panelDoctorWidget {
	flex: 1 1 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.side-panel[data-panel-locked="1"] #panelHoursWidget .panel-card-header,
.side-panel[data-panel-locked="1"] #panelDoctorWidget .panel-card-header {
	flex-shrink: 0;
}

.side-panel[data-panel-locked="1"] #panelHoursWidget .panel-widget-slides,
.side-panel[data-panel-locked="1"] #panelDoctorWidget .panel-widget-slides {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.side-panel[data-panel-locked="1"] #panelHoursWidget .panel-hours-slide.active,
.side-panel[data-panel-locked="1"] #panelDoctorWidget .panel-doctor-slide.active {
	display: block;
}

.side-panel[data-panel-locked="1"] #panelHoursWidget .panel-dots,
.side-panel[data-panel-locked="1"] #panelDoctorWidget .panel-dots {
	flex: 0 0 auto;
}

#panelNewsWidget .panel-widget-slides {
	position: relative;
}

#panelNewsWidget .panel-card-header.panel-media-header {
	margin-bottom: var(--panel-header-mb);
}

#panelNewsWidget .panel-widget-slides > .panel-news-slide.active {
	display: flex;
	flex-direction: column;
	height: 100%;
}

#panelNewsWidget .panel-widget-slides > .panel-news-slide.active[data-media-header="tv"] {
	display: block;
}

#panelNewsWidget .panel-news-banner {
	flex: 1;
	display: block;
	width: 100%;
	min-height: 72px;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
	background: transparent;
}

#panelNewsWidget .panel-news-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.panel-youtube-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.panel-youtube-cell {
	min-width: 0;
}

.panel-youtube-item {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	text-decoration: none;
}

.panel-youtube-item::after {
	content: "";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.25) url('../icon/smh_icon_play.svg') center / 32px no-repeat;
	opacity: 0;
	transition: opacity var(--transition);
}

.panel-youtube-item:hover::after {
	opacity: 1;
}

.panel-youtube-title {
	font-size: 10px;
	color: var(--text-muted);
	margin-top: 4px;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.panel-scroll-area {
	flex: 1;
	min-height: 0;
	overflow-y: hidden;
	display: flex;
	flex-direction: column;
	gap: var(--panel-area-gap, 10px);
	scrollbar-width: none;
}

.side-panel[data-fit-active="1"] .panel-scroll-area {
	overflow-y: hidden;
}

@media (max-width: 960px) {
	.panel-scroll-area {
		overflow-y: visible;
		max-height: none !important;
	}
}

.side-reserve-btn {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: var(--panel-reserve-h, auto);
	padding: var(--panel-reserve-pad, 16px);
	/* border-radius: var(--radius-md); */
	border-radius: 15px;
	background: var(--gradient-reserve);
	color: #fff;
	font-size: var(--panel-reserve-font, 16px);
	font-weight: 700;
	/* box-shadow: 0 8px 24px rgba(94, 196, 196, 0.35); */
	transition: transform var(--transition), box-shadow var(--transition);
	cursor: pointer;
}

.side-reserve-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(94, 196, 196, 0.45);
}

.side-reserve-btn svg,
.side-reserve-btn img {
	width: 18px;
	height: 18px;
	display: block;
	flex-shrink: 0;
}

.side-panel[data-panel-compact="1"] .panel-youtube-title {
	display: none;
}

/* ===== 예약 모달 ===== */
.res-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(26, 43, 60, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.res-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.res-modal-container {
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transform: translateY(20px) scale(0.97);
	transition: transform 0.3s ease;
}

.res-modal-overlay.active .res-modal-container {
	transform: translateY(0) scale(1);
}

.res-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background: var(--gradient-reserve);
	color: #fff;
}

.res-modal-header h3 {
	margin: 0;
	font-size: 20px;
}

.res-modal-header small {
	display: block;
	font-size: 14px;
	font-weight: 400;
	opacity: 0.9;
	margin-top: 4px;
}

.res-close-modal {
	font-size: 30px;
	line-height: 1;
	color: #fff;
	opacity: 0.8;
	transition: opacity var(--transition);
}

.res-close-modal:hover {
	opacity: 1;
}

.res-modal-body {
	padding: 24px;
	max-height: calc(90vh - 120px);
	overflow-y: auto;
}

.res-step-section {
	display: none;
}

.res-step-section.active {
	display: block;
}

.res-msg-box p {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-soft);
}

.res-msg-box strong {
	color: var(--accent-pink);
}

.res-form-group {
	margin-bottom: 16px;
}

.res-form-group label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--text-main);
}

.res-form-group input,
.res-form-group select,
.res-form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(94, 196, 196, 0.3);
	border-radius: var(--radius-sm);
	font-size: 16px;
	transition: border-color var(--transition);
}

.res-form-group input:focus,
.res-form-group select:focus,
.res-form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
}

.res-btn-row {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.res-btn {
	flex: 1;
	padding: 14px;
	border-radius: var(--radius-sm);
	font-size: 16px;
	font-weight: 700;
	transition: transform var(--transition), opacity var(--transition);
}

.res-btn-primary {
	background: var(--gradient-reserve);
	color: #fff;
}

.res-btn-secondary {
	background: var(--primary-light);
	color: var(--primary-dark);
}

.res-btn:hover {
	transform: translateY(-1px);
}

/* ===== 모바일 네비 ===== */
.mobile-nav {
	display: none;
	position: relative;
	z-index: 9;
	padding: 0 16px 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
	display: none;
}

.mobile-nav-scroll {
	display: flex;
	gap: 8px;
}

.mobile-nav-item {
	flex-shrink: 0;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-main);
	border: 1px solid rgba(94, 196, 196, 0.2);
	transition: background var(--transition), color var(--transition);
}

.mobile-nav-item.is-active,
.mobile-nav-item:hover {
	background: var(--primary);
	color: #fff;
}

.mobile-submenu-panel {
	display: none;
	position: relative;
	z-index: 8;
	padding: 0 16px 8px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-submenu-panel.open {
	display: block;
	max-height: 200px;
	padding-bottom: 12px;
}

.mobile-submenu-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mobile-submenu-link {
	padding: 6px 12px;
	border-radius: 999px;
	background: #fff;
	font-size: 14px;
	color: var(--text-soft);
	border: 1px solid rgba(94, 196, 196, 0.15);
}

/* ===== 반응형 ===== */
@media (max-width: 1200px) {
	:root {
		--panel-w: 300px;
	}

	.hero-text-slide h1 {
		font-size: 26px;
	}

	.hero-text-slide h1 .highlight {
		font-size: 30px;
	}

	.quick-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	body {
		overflow: auto;
	}

	.screen {
		height: auto;
		min-height: 100vh;
		overflow: visible;
	}

	.main {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		padding: 0 16px 20px;
	}

	.main--sub {
		grid-template-rows: auto 1fr auto;
		overflow-y: auto;
	}

	.side-panel {
		width: 100%;
		height: auto !important;
		max-height: none !important;
	}

	.header-center {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.mobile-nav {
		display: block;
	}

	.hero-slider {
		min-height: 320px;
	}

	.hero-text-slide {
		left: 24px;
		right: 24px;
		max-width: none;
		top:40%;
	}

	.hero-content {
		min-height: 350px;
	}


	.hero-text-slide h1 {
		font-size: 24px;
	}

	.hero-text-slide h1 .highlight {
		font-size: 28px;
	}

	.location-deco {
		display: none;
	}

	.location-bar-content {
		flex-wrap: wrap;
	}

	.location-address {
		white-space: normal;
		flex-basis: 100%;
		padding-left: 24px;
	}
}

@media (max-width: 600px) {
	.header {
		padding: 0 16px;
	}

	.logo-text {
		font-size: 17px;
	}

	.header-phone span {
		display: none;
	}

	.quick-row {
		grid-template-columns: 1fr;
	}

	.hero-slider {
		min-height: 320px;
	}

	.hero-controls {
		right: 0;
		bottom: 0;
		padding: 8px 10px 10px 32px;
	}

	.hero-pagination {
		height: 36px;
	}

	.hero-nav-btn {
		width: 28px;
		height: 28px;
	}

	.hero-page-info {
		font-size: 15px;
		min-width: 40px;
	}

	.hero-pause {
		width: 36px;
		height: 36px;
	}

	.panel-youtube-grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   Hero V2 — 레이어드 마스크 방식 (index2.html)
   ============================================= */

.dashboard--v2 .hero-area {
	position: relative;
	flex: 1;
	min-height: 0;
	/* margin: 16px 16px 0; */
	z-index: 1;
}

.dashboard--v2 .hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	border-radius: 20px;
}

.dashboard--v2 .hero-window {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	box-shadow: 0 0 0 9999px var(--hero-mint, #edf7f6);
	z-index: 1;
	pointer-events: none;
}

.dashboard--v2 .hero-content {
	position: relative;
	z-index: 2;
	padding: 36px 40px;
	height: 100%;
	min-height: 280px;
}

@media (max-width: 960px) {
	.dashboard--v2 .hero-content {
		min-height: 350px;
	}
}

.dashboard--v2 .hero-controls-wrap {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--hero-mint, #edf7f6);
	border-top-left-radius: 28px;
	padding: 15px 14px 12px 20px;
}

.dashboard--v2 .hero-controls-wrap::before {
	content: "";
	position: absolute;
	left: -27px;
	bottom: 0px;
	width: 28px;
	height: 28px;
	background: radial-gradient(circle at 0% 0%, transparent 28px, var(--hero-mint, #edf7f6) 28.5px);
}

.dashboard--v2 .hero-controls-wrap::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 100%;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle at 0% 0%, transparent 20px, var(--hero-mint, #edf7f6) 20.5px);
}

.dashboard--v2 .dashboard-lower {
	position: relative;
	z-index: 2;
}

.dashboard--v2 .dashboard-lower::before {
	display: none;
}

/* =============================================================================
   menu_01 — 진료과 · 의료진 서브페이지
   ============================================================================= */

/* ===== 1층: 왼쪽+가운데 공통 민트 배경 ===== */
.sub-body {
	display: flex;
	min-width: 0;
	min-height: 0;
	border-radius: var(--radius-lg);
	background: #edf7f6;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(94, 196, 196, 0.12);
	overflow: hidden;
	animation: fadeInUp 0.5s ease both;
}

/* ===== 왼쪽 컬럼 (1층 민트가 비치는 영역) ===== */
.subnav-col {
	position: relative;
	flex: 0 0 240px;
	width: 240px;
	min-height: 100%;
	align-self: stretch;
	padding: 16px 0 16px 16px;
	box-sizing: border-box;
}

/* ===== 2층: 1층 위 흰색 패널 (안쪽 배치) ===== */
.subnav-panel {
	position: absolute;
	top: 16px;
	right: 0;
	bottom: 16px;
	left: 16px;
	z-index: 0;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 6px 24px rgba(26, 43, 60, 0.05);
	pointer-events: none;
}

/* ===== 3층: 메뉴 ===== */
.subnav {
	position: relative;
	z-index: 1;
	height: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	padding: 28px 17px 24px 17px;
	background: transparent;
}

.subnav-eyebrow {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--text-muted);
}

.subnav-title {
	margin: 0 0 22px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	color: var(--text-main);
}

.subnav-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.subnav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 40px;
	padding: 6px 16px;
	box-sizing: border-box;
	border-radius: 16px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	background: #edf9f9;
	color: var(--primary-dark);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.subnav-item:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-hover);
	transform: translateY(-1px);
}

.subnav-item.is-active {
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 10px 28px rgba(94, 196, 196, 0.35);
}

.subnav-item__icon {
	position: relative;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.subnav-item__icon img,
.subnav-item__icon svg,
.subnav-item__icon-img {
	width: 22px;
	height: 22px;
}

.subnav-item__icon-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.subnav-item__icon-img--default {
	display: block;
}

.subnav-item__icon-img--active {
	display: none;
}

.subnav-item.is-active .subnav-item__icon-img--default {
	display: none;
}

.subnav-item.is-active .subnav-item__icon-img--active {
	display: block;
}

/* ===== 가운데 콘텐츠 (1층 민트 배경) ===== */
.sub-content {
	flex: 1;
	min-width: 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	background: transparent;
	overflow: hidden;
}

.sub-panels {
	position: relative;
	flex: 1;
	min-height: 0;
}

.sub-panel {
	position: absolute;
	inset: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 28px 28px 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.34s ease, visibility 0.34s ease;
	scrollbar-width: thin;
}

.sub-panel.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.sub-panel.is-exiting {
	opacity: 0;
	visibility: visible;
	pointer-events: none;
}

.sub-panel-head {
	margin-bottom: 18px;
}

.sub-panel-head h1 {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 800;
	color: var(--text-main);
}

.sub-panel-head p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-soft);
}

/* 히어로 카드 — 시안: 민트 그라데이션 + 우측 일러스트 */
.dept-hero {
	margin-bottom: 14px;
	border-radius: 24px;
	background: linear-gradient(90deg, #f7fcfc 0%, #f0f9f9 42%, #eaf6f6 100%);
	border: 1px solid rgba(94, 196, 196, 0.16);
	overflow: hidden;
}

.dept-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(200px, 36%);
	align-items: stretch;
	min-height: 292px;
}

.dept-hero__content {
	display: flex;
	flex-direction: column;
	padding: 32px 16px 28px 32px;
}

.dept-hero__content h2 {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.5;
	color: #48c4c3;
}

.dept-hero__content p {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.9;
	color: #5f6f7d;
}

.dept-hero__content p:last-of-type {
	margin-bottom: 0;
}

.dept-hero__visual {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 0 8px 0 0;
	pointer-events: none;
}

.dept-hero__visual img {
	width: 100%;
	max-width: 280px;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: right bottom;
}

.dept-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
}

.dept-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border-radius: 8px;
	border: 1px solid #e3eaec;
	background: #fff;
	font-size: 12px;
	font-weight: 600;
	color: #4f6570;
	white-space: nowrap;
}

.dept-tag__icon {
	width: 28px;
	height: 28px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: transparent;
}

.dept-tag__icon img {
	width: 28px;
	height: 28px;
	display: block;
}

/* 센터 그리드 */
.dept-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.dept-card {
	position: relative;
	min-height: 124px;
	padding: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(94, 196, 196, 0.12);
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform var(--transition), box-shadow var(--transition);
}

.dept-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.dept-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center right;
	opacity: 0.5;
}

.dept-card__body {
	position: relative;
	z-index: 1;
	max-width: 58%;
	min-height: 124px;
	padding: 18px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 68%, rgba(255, 255, 255, 0.15) 100%);
}

.dept-card__title {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 800;
	color: #3aabaa;
}

.dept-card__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--text-soft);
}

.dept-card__title--rose {
	color: #e86b9a;
}

/* ===== 소아·청소년과 ===== */
.ped-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.ped-tab {
	padding: 9px 18px;
	border-radius: 22px;
	border: 1px solid #efb8b0;
	background: #fafcfc;
	font-size: 13px;
	font-weight: 600;
	color: #6a7a84;
	transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.ped-tab:hover {
	border-color: #e8a498;
	background: #fff;
}

.ped-tab.is-active {
	background: #fff;
	border-color: #e8a498;
	color: #3d4f58;
	box-shadow: 0 2px 8px rgba(232, 164, 152, 0.12);
}

.ped-tab-panel {
	display: none;
}

.ped-tab-panel.is-active {
	display: block;
}

.ped-hero-banner {
	position: relative;
	min-height: 156px;
	margin-bottom: 20px;
	border-radius: 20px;
	overflow: hidden;
	background: #fcfefe;
	border: 1px solid rgba(94, 196, 196, 0.08);
}

.ped-hero-banner__bg {
	position: absolute;
	inset: 0;
	top: -180px;
	pointer-events: none;
	overflow: hidden;
}

.ped-hero-banner__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.14);
	pointer-events: none;
	z-index: 1;
}

.ped-hero-banner__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 52% center;
	left: 170px;
	filter: brightness(1.1) contrast(0.94) saturate(0.9);
	opacity: 0.9;
}

.ped-hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		#fff 0%,
		#fff 40%,
		rgba(255, 255, 255, 0.99) 46%,
		rgba(255, 255, 255, 0.95) 52%,
		rgba(255, 255, 255, 0.78) 60%,
		rgba(255, 255, 255, 0.42) 68%,
		rgba(255, 255, 255, 0.12) 76%,
		rgba(255, 255, 255, 0) 84%
	);
	pointer-events: none;
}

.ped-hero-banner__content {
	position: relative;
	z-index: 1;
	width: 46%;
	max-width: 46%;
	min-height: 156px;
	padding: 24px 12px 24px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.ped-hero-banner .ped-section-head {
	margin-bottom: 0;
	align-items: center;
}

.ped-hero-banner .ped-section-head__bar {
	min-height: 18px;
	background: linear-gradient(180deg, #7ecde0 0%, #b08ad4 100%);
}

.ped-hero-banner .ped-section-head h2 {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	color: #52d4d3;
}

.ped-hero-banner .ped-lead {
	margin: 8px 0 0;
	padding-left: 14px;
	font-size: 12px;
	line-height: 1.8;
	color: #7a8a94;
}

.ped-section-head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.ped-section-head__bar {
	width: 4px;
	min-height: 20px;
	border-radius: 4px;
	background: linear-gradient(180deg, #c98fd4 0%, #9b7fd4 100%);
	flex-shrink: 0;
	margin-top: 3px;
}

.ped-section-head h2 {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.55;
	color: #3d4f58;
}

.ped-lead {
	margin: 0 0 20px;
	font-size: 12px;
	line-height: 1.85;
	color: #6a7a84;
}

.ped-table-title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 800;
	color: #48c4c3;
}

.ped-table-wrap {
	margin-bottom: 12px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(94, 196, 196, 0.14);
	background: #fff;
}

.ped-checkup-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.ped-checkup-table thead th {
	padding: 11px 12px;
	background: #5ec4c4;
	color: #fff;
	font-weight: 700;
	text-align: center;
	font-size: 13px;
}

.ped-checkup-table td {
	padding: 12px 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	vertical-align: middle;
	color: #5f6f7d;
	line-height: 1.65;
}

.ped-checkup-table tbody tr:nth-child(odd) {
	background: #fff;
}

.ped-checkup-table tbody tr:nth-child(even) {
	background: #fffaf7;
}

.ped-checkup-table__phase {
	width: 96px;
	text-align: center;
	vertical-align: middle;
	background: #fffaf7 !important;
	border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.ped-checkup-table__item {
	width: 24%;
	font-weight: 700;
	color: #4a5c68;
}

.ped-checkup-table__item strong {
	font-weight: 700;
	color: #4a5c68;
}

.ped-checkup-table ul {
	margin: 0;
	padding-left: 14px;
}

.ped-checkup-table li {
	margin-bottom: 3px;
}

.ped-checkup-table li:last-child {
	margin-bottom: 0;
}

.ped-round {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
}

.ped-round__num {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.ped-round__age {
	font-size: 10px;
	font-weight: 600;
	line-height: 1.35;
	opacity: 0.95;
}

.ped-round--1 {
	background: linear-gradient(145deg, #f5b8a8 0%, #eea08e 100%);
}

.ped-round--2 {
	background: linear-gradient(145deg, #f0b078 0%, #e89658 100%);
}

.ped-round--3 {
	background: linear-gradient(145deg, #e8c96a 0%, #d4b24a 100%);
}

.ped-round--4 {
	background: linear-gradient(145deg, #a8cda7 0%, #90b98f 100%);
}

.ped-round--5 {
	background: linear-gradient(145deg, #6fbb9b 0%, #5aa887 100%);
}

.ped-round--6 {
	background: linear-gradient(145deg, #8baee0 0%, #739ad4 100%);
}

.ped-round--7 {
	background: linear-gradient(145deg, #c9a8e0 0%, #b08ad4 100%);
}

.ped-round--8 {
	background: linear-gradient(145deg, #dd9bcd 0%, #c980b8 100%);
}

.ped-round--oral {
	background: linear-gradient(145deg, #5ec4c6 0%, #35b5b8 100%);
	width: 78px;
	height: 78px;
}

.ped-booking {
	margin-top: 16px;
	padding: 20px 22px 22px;
	border-radius: 20px;
	border: 1px solid rgba(72, 196, 195, 0.32);
	background: linear-gradient(180deg, #f6fcfc 0%, #edf7f8 100%);
}

.ped-booking__title {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 800;
	color: #48c4c3;
}

.ped-booking__info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 11px 16px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(72, 196, 195, 0.38);
}

.ped-booking__info-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	display: block;
}

.ped-booking__info p {
	margin: 0;
	font-size: 12px;
	line-height: 1.55;
	color: #5f6f7d;
}

.ped-booking__info a {
	color: #48c4c3;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ped-booking__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: 14px;
	align-items: stretch;
}

.ped-booking__col {
	padding: 16px 16px 14px;
	border-radius: 16px;
	border: 1px solid rgba(72, 196, 195, 0.28);
	background: linear-gradient(145deg, #f9fdfd 0%, #eef9fa 52%, #e6f5f6 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ped-booking__col-title {
	position: relative;
	margin: 0 0 10px;
	padding-bottom: 7px;
	font-size: 13px;
	font-weight: 800;
	color: #48c4c3;
}

.ped-booking__col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: #48c4c3;
}

.ped-booking__col-title--timing::after {
	background: linear-gradient(90deg, #48c4c3 0%, #c98fd4 52%, #b08ad4 100%);
}

.ped-booking__desc {
	margin: 0 0 12px;
	font-size: 12px;
	line-height: 1.75;
	color: #5f6f7d;
}

.ped-booking__desc strong {
	font-weight: 700;
	color: #d4568a;
}

.ped-vaccine-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ped-vaccine-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid rgba(72, 196, 195, 0.24);
	background: linear-gradient(90deg, #ffffff 0%, #f4fcfc 52%, #eaf8f8 100%);
	box-shadow: 0 1px 4px rgba(72, 196, 195, 0.08);
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.45;
	color: #4f6570;
}

.ped-vaccine-list li:nth-child(2) {
	background: linear-gradient(90deg, #ffffff 0%, #f2fbfb 52%, #e8f7f7 100%);
}

.ped-vaccine-list li:nth-child(3) {
	background: linear-gradient(90deg, #ffffff 0%, #f0fafa 52%, #e5f6f6 100%);
}

.ped-vaccine-list__icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	display: block;
}

.ped-booking__col--timing {
	background: linear-gradient(145deg, #f8fdfd 0%, #edf8f9 52%, #e5f4f5 100%);
}

.ped-timing-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 12px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(72, 196, 195, 0.26);
	background: linear-gradient(180deg, #f7fcfc 0%, #edf8f9 100%);
	box-shadow: 0 1px 4px rgba(72, 196, 195, 0.06);
}

.ped-timing-table th,
.ped-timing-table td {
	padding: 13px 14px;
	border-bottom: 1px solid rgba(72, 196, 195, 0.14);
	vertical-align: middle;
}

.ped-timing-table th {
	width: 48%;
	color: #3aaeb0;
	font-weight: 700;
	text-align: left;
	line-height: 1.45;
}

.ped-timing-table td {
	color: #5f6f7d;
	line-height: 1.45;
}

.ped-timing-table tbody tr:first-child th {
	background: linear-gradient(135deg, #ecfafa 0%, #dff4f4 55%, #d6efef 100%);
}

.ped-timing-table tbody tr:first-child td {
	background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 55%, #f0fafa 100%);
}

.ped-timing-table tbody tr:last-child th {
	background: linear-gradient(135deg, #e6f7f7 0%, #d9f1f1 55%, #d0ecec 100%);
}

.ped-timing-table tbody tr:last-child td {
	background: linear-gradient(135deg, #fcfdfd 0%, #f3fbfb 55%, #ebf8f8 100%);
}

.ped-timing-table tr:last-child th,
.ped-timing-table tr:last-child td {
	border-bottom: none;
}

.ped-simple-card {
	padding: 20px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.ped-simple-card p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.8;
	color: #5f6f7d;
}

.ped-simple-card__tel {
	margin-bottom: 0 !important;
}

.ped-simple-card__tel a {
	color: #48c4c3;
	font-weight: 700;
	text-decoration: none;
}

.ped-bullet-list {
	margin: 0;
	padding-left: 16px;
	font-size: 12px;
	line-height: 1.75;
	color: #5f6f7d;
}

.ped-bullet-list li {
	margin-bottom: 4px;
}

/* ===== 의료진 소개 ===== */
.staff-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.staff-filter {
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid #dfe8ea;
	background: #fff;
	font-size: 12px;
	font-weight: 600;
	color: #5f6f7d;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.staff-filter.is-active {
	background: #48c4c3;
	border-color: #48c4c3;
	color: #fff;
}

.staff-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	opacity: 1;
	transition: opacity 0.34s ease;
}

.staff-grid.is-exiting {
	opacity: 0;
	pointer-events: none;
}

.staff-card {
	text-align: center;
}

.staff-card.is-hidden {
	display: none;
}

.staff-card__photo {
	position: relative;
	margin-bottom: 10px;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 3 / 3.6;
	background: #eef4f5;
}

.staff-card__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.staff-card__badges {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: flex-end;
}

.staff-card__badges span {
	padding: 3px 7px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	font-size: 10px;
	font-weight: 600;
	color: #fff;
}

.staff-card__name {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 800;
	color: var(--text-main);
}

.staff-card__name em {
	font-style: normal;
	font-weight: 700;
}

.staff-card__dept {
	margin: 0;
	font-size: 11px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* 의료진 소개 — 프로필 카드 (menu_01 #doctors) */
.staff-grid--profile {
	gap: 14px;
}

.staff-grid--profile .staff-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.14);
	box-shadow: 0 8px 24px rgba(26, 43, 60, 0.06);
	transform: scale(1);
	transform-origin: center center;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.staff-grid--profile .staff-card:hover {
	transform: scale(1.035);
	box-shadow: 0 14px 32px rgba(26, 43, 60, 0.12);
}

.staff-grid--profile .staff-card.is-hidden {
	display: none;
}

.staff-grid--profile .staff-card__photo {
	margin-bottom: 0;
	border-radius: 0;
	aspect-ratio: 3 / 3.35;
	background: #eef4f5;
}

.staff-grid--profile .staff-card__photo-img {
	transform: scale(1.02);
}

.staff-grid--profile .staff-card__fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 46%;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.45) 42%,
		rgba(255, 255, 255, 0.88) 72%,
		#fff 100%
	);
}

.staff-grid--profile .staff-card__photo::after {
	content: "";
	position: absolute;
	left: -4%;
	right: -4%;
	bottom: 12%;
	height: 28%;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	mask-image: linear-gradient(180deg, transparent 0%, #000 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 100%);
	pointer-events: none;
}

.staff-grid--profile .staff-card__badges {
	top: 10px;
	right: 10px;
	gap: 5px;
	z-index: 3;
}

.staff-grid--profile .staff-card__badges span,
.staff-grid--profile .staff-card__badge-btn {
	position: relative;
	z-index: 0;
	padding: 5px 10px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(322deg, #343434, transparent);
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.staff-grid--profile .staff-card__badge-btn {
	cursor: pointer;
	font-family: inherit;
}

.staff-grid--profile .staff-card__badges span::before,
.staff-grid--profile .staff-card__badge-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.4px;
	pointer-events: none;
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
}

.staff-grid--profile .staff-card__badges span:first-child::before,
.staff-grid--profile .staff-card__badge-btn:first-child::before {
	background: linear-gradient(135deg, #9ef0ea 0%, #48c4c3 55%, #2f9e9d 100%);
}

.staff-grid--profile .staff-card__badges span:last-child::before,
.staff-grid--profile .staff-card__badge-btn:last-child::before {
	background: linear-gradient(135deg, #ffb8d4 0%, #e87aa8 55%, #c45b9a 100%);
}

.staff-grid--profile .staff-card__body {
	position: relative;
	z-index: 1;
	margin-top: -2px;
	padding: 2px 12px 14px;
	background: #fff;
	text-align: center;
}

.staff-grid--profile .staff-card__name {
	margin: 0 0 5px;
	font-size: 14px;
	font-weight: 800;
	color: var(--text-main);
}

.staff-grid--profile .staff-card__dept {
	font-size: 11px;
	color: #6b7c89;
}

/* 스케줄 */
.schedule-hours-card,
.schedule-box {
	padding: 22px;
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(94, 196, 196, 0.1);
}

.schedule-box--staff {
	position: relative;
	margin-top: 14px;
	overflow: hidden;
}

.schedule-box--staff > .schedule-hours-card__head {
	position: relative;
	z-index: 3;
}

.schedule-box__mask {
	position: absolute;
	top: 42px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: inherit;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
}

.schedule-box__mask-text {
	margin: 0;
	padding: 0 24px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.55;
	letter-spacing: -0.02em;
	color: #e53935;
	text-align: center;
}

.schedule-hours-card__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.schedule-hours-card__head img {
	width: 28px;
	height: 28px;
	display: block;
	flex-shrink: 0;
}

.schedule-hours-card__head h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main);
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.schedule-table th,
.schedule-table td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	text-align: left;
}

.schedule-table th {
	font-weight: 700;
	color: var(--text-main);
	background: rgba(94, 196, 196, 0.08);
}

.schedule-table td {
	color: var(--text-soft);
}

.schedule-table tr:last-child td {
	border-bottom: none;
}

.schedule-note {
	margin: 14px 0 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(94, 196, 196, 0.08);
	font-size: 12px;
	line-height: 1.6;
	color: var(--text-soft);
}

@media (max-width: 1200px) {
	.subnav-col {
		flex-basis: 204px;
		width: 204px;
		padding-left: 12px;
	}

	.subnav-panel {
		left: 12px;
		top: 12px;
		bottom: 12px;
	}

	.dept-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.dept-hero__content {
		padding: 24px 20px 20px;
	}

	.dept-hero__visual {
		display: none;
	}

	.dept-card__body {
		max-width: 100%;
	}

	.staff-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	body {
		overflow: auto;
	}

	.screen {
		height: auto;
		min-height: 100vh;
		overflow: auto;
	}

	.sub-body {
		flex-direction: column;
	}

	.subnav-col {
		flex: 0 0 auto;
		width: 100%;
		min-height: 0;
		padding: 12px 12px 0;
	}

	.subnav-panel {
		left: 12px;
		right: 12px;
		top: 12px;
		bottom: auto;
		height: auto;
		min-height: calc(100% - 12px);
		border-radius: 16px;
	}

	.subnav {
		padding: 16px 12px 12px;
		min-height: 0;
		height: auto;
	}

	.subnav-list {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.subnav-item {
		flex: 1 1 calc(50% - 6px);
		min-height: 40px;
		padding: 6px 12px;
		font-size: 14px;
	}

	.sub-panels {
		min-height: 480px;
	}

	.dept-hero__visual {
		display: none;
	}

	.staff-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dept-grid {
		grid-template-columns: 1fr;
	}

	.ped-hero-banner {
		min-height: 0;
	}

	.ped-hero-banner__content {
		width: 100%;
		max-width: 100%;
		min-height: 0;
		padding: 22px 18px;
	}

	.ped-hero-banner__bg {
		position: relative;
		left: 0;
		height: 140px;
		margin-top: -8px;
	}

	.ped-hero-banner__overlay {
		background: linear-gradient(
			180deg,
			#fff 0%,
			rgba(255, 255, 255, 0.92) 28%,
			rgba(255, 255, 255, 0.35) 52%,
			rgba(255, 255, 255, 0) 72%
		);
	}

	.ped-booking__grid {
		grid-template-columns: 1fr;
	}

	.ped-checkup-table {
		font-size: 11px;
	}
}

/* =============================================================================
   menu_02 — 센터소개 (로봇 복강경센터)
   ============================================================================= */

.sub-content.sub-content--center {
	flex: 1;
	min-width: 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
}

.sub-content.sub-content--center .center-panels {
	position: relative;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 28px 28px 24px;
	scrollbar-width: thin;
}

.center-panel {
	display: none;
}

.center-panel.is-active {
	display: block;
}

.center-panel-head h1 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 800;
	color: var(--text-main);
}

.center-panel-head p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-soft);
}

.robot-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.robot-tab {
	padding: 8px 16px;
	border-radius: 999px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	color: #5f6f7d;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.robot-tab:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.robot-tab.is-active {
	background: #fff;
	border-color: #48c4c3;
	color: #48c4c3;
	box-shadow: 0 4px 14px rgba(94, 196, 196, 0.15);
}

.robot-tab-panel {
	display: none;
}

	.robot-tab-panel.is-active {
	display: block;
}

.center-coming-soon {
	padding: 48px 24px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.14);
	box-shadow: var(--shadow-card);
	text-align: center;
	font-size: 14px;
	color: var(--text-soft);
}

/* 복강경센터 */
.lap-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.lap-tab {
	flex: 0 1 auto;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	color: #5f6f7d;
	white-space: nowrap;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.lap-tab:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.lap-tab.is-active {
	border-color: #48c4c3;
	color: #48c4c3;
	box-shadow: 0 4px 14px rgba(94, 196, 196, 0.15);
}

.lap-tab-panel {
	display: none;
}

.lap-tab-panel.is-active {
	display: block;
}

.lap-intro-block {
	margin-bottom: 16px;
}

.lap-intro-hero__slogan {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.55;
	color: var(--text-main);
}

.lap-intro-hero__highlight {
	margin: 0;
}

.lap-intro-hero__highlight em {
	font-style: normal;
	font-weight: 700;
	color: #e57399;
}

.lap-doctors-grid {
	margin-top: 4px;
}

.lap-staff-card {
	position: relative;
}

.lap-staff-card__actions {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	display: flex;
	gap: 6px;
}

.lap-staff-card__btn {
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid rgba(20, 28, 36, 0.55);
	background: rgba(20, 28, 36, 0.78);
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background var(--transition), transform var(--transition);
}

.lap-staff-card__btn:hover {
	background: rgba(20, 28, 36, 0.92);
	transform: translateY(-1px);
}

.lap-doctors-grid .staff-card__body {
	gap: 4px;
}

.lap-schedule {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(94, 196, 196, 0.16);
}

.lap-schedule__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	background: #fff;
}

.lap-schedule__table th,
.lap-schedule__table td {
	padding: 8px 6px;
	border: 1px solid rgba(94, 196, 196, 0.1);
	text-align: center;
	line-height: 1.4;
	min-width: 36px;
	min-height: 32px;
}

.lap-schedule__table thead th {
	background: rgba(94, 196, 196, 0.1);
	font-weight: 700;
	color: var(--text-main);
}

.lap-schedule__table tbody th {
	background: rgba(94, 196, 196, 0.06);
	font-weight: 700;
	color: #48c4c3;
}

.lap-schedule__mask {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.lap-schedule__mask span {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(20, 28, 36, 0.82);
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}

.lap-schedule__cell--surgery {
	color: #e57373;
	font-weight: 700;
}

.lap-schedule__cell--off {
	color: #48c4c3;
	font-weight: 700;
}

.lap-schedule__note {
	margin: 8px 0 0;
	font-size: 11px;
	color: #48c4c3;
}

.lap-schedule__date {
	display: block;
	margin-top: 2px;
	font-size: 10px;
	font-weight: 600;
	color: #8a9aa6;
}

.lap-doctor-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.lap-doctor-tab {
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid rgba(94, 196, 196, 0.28);
	background: #f7fcfc;
	font-size: 11px;
	font-weight: 700;
	color: #5f6f7d;
}

.lap-doctor-tab.is-active {
	background: #48c4c3;
	border-color: #48c4c3;
	color: #fff;
}

.lap-doctor-tab-panel {
	display: none;
}

.lap-doctor-tab-panel.is-active {
	display: block;
}

.lap-doctor-list {
	margin: 0;
	padding: 0 0 0 16px;
	font-size: 12px;
	line-height: 1.75;
	color: #5f6f7d;
}

.lap-clinic-block {
	padding: 24px 22px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.14);
	box-shadow: var(--shadow-card);
}

.lap-clinic-block h2 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: var(--text-main);
}

.lap-clinic-block__note {
	margin: 0;
	font-size: 12px;
	color: var(--text-muted);
}

/* 주산기센터 — 분만클리닉 */
.per-delivery-benefits {
	margin-top: 4px;
}

.per-clinic-section {
	margin-top: 4px;
}

.per-clinic-callout {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	margin-bottom: 12px;
	border-radius: 12px;
	background: #f8fbfb;
	border: 1px solid rgba(94, 196, 196, 0.14);
}

.per-clinic-callout__icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border-radius: 50%;
	background: #e57373;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	font-style: italic;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 18px;
	text-align: center;
}

.per-clinic-callout p {
	margin: 0;
	font-size: 12px;
	line-height: 1.75;
	color: #5f6f7d;
}

.per-clinic-callout strong {
	font-weight: 800;
	color: var(--text-main);
}

.per-clinic-em {
	font-style: normal;
	font-weight: 700;
	color: #48c4c3;
}

.per-clinic-text {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 1.8;
	color: #5f6f7d;
}

.per-clinic-text:last-child {
	margin-bottom: 0;
}

/* 유방 · 갑상선센터 */
.breast-clinic-tabs {
	margin-bottom: 16px;
}

.breast-clinic-panel {
	display: none;
}

.breast-clinic-panel.is-active {
	display: block;
}

.breast-split {
	display: grid;
	grid-template-columns: minmax(120px, 20%) minmax(0, 80%);
	gap: 16px;
	align-items: start;
}

.breast-split__nav {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(94, 196, 196, 0.18);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.breast-split__nav-item {
	width: 100%;
	padding: 12px 14px;
	border: none;
	border-bottom: 1px solid rgba(94, 196, 196, 0.12);
	background: #fff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	color: #5f6f7d;
	text-align: left;
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}

.breast-split__nav-item:last-child {
	border-bottom: none;
}

.breast-split__nav-item:hover {
	background: #f7fcfc;
	color: var(--primary-dark);
}

.breast-split__nav-item.is-active {
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	color: #fff;
}

.breast-split__body {
	min-width: 0;
}

.breast-topic-panel {
	display: none;
}

.breast-topic-panel.is-active {
	display: block;
}

.breast-topic-placeholder {
	margin: 0;
}

.breast-topic-feature {
	position: relative;
}

.breast-topic-feature__visual {
	position: relative;
	height: 290px;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
	background: linear-gradient(135deg, #dceef0 0%, #b8e4e8 100%);
}

.breast-topic-feature__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(26, 43, 60, 0.04) 0%,
		rgba(26, 43, 60, 0.18) 100%
	);
	pointer-events: none;
}

.breast-topic-feature__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 80%;
}

.breast-topic-feature__card {
	position: relative;
	z-index: 1;
	margin-top: -22px;
	padding: 20px 22px 22px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.2);
	box-shadow: 0 12px 32px rgba(26, 43, 60, 0.1);
}

.breast-topic-feature__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.4;
	color: var(--text-main);
}

.breast-topic-feature__bar {
	width: 4px;
	height: 18px;
	border-radius: 4px;
	background: linear-gradient(180deg, #5ec4c4 0%, #48c4c3 100%);
	flex-shrink: 0;
}

.breast-topic-feature__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.breast-topic-feature__list li {
	position: relative;
	padding: 10px 12px 10px 28px;
	border-radius: 10px;
	background: #f7fcfc;
	font-size: 13px;
	line-height: 1.7;
	color: #4a5c6a;
}

.breast-topic-feature__list li::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 1.05em;
	width: 6px;
	height: 6px;
	border-radius: 2px;
	background: #48c4c3;
	transform: translateY(-50%);
}

.breast-topic-feature__text {
	margin: 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: #f7fcfc;
	font-size: 13px;
	line-height: 1.85;
	color: #4a5c6a;
}

.lap-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lap-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.lap-modal__dim {
	position: absolute;
	inset: 0;
	background: rgba(26, 43, 60, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.lap-modal__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	max-height: 86vh;
	overflow: auto;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow-soft);
	transform: translateY(12px) scale(0.98);
	transition: transform 0.28s ease;
}

.lap-modal.is-open .lap-modal__box {
	transform: translateY(0) scale(1);
}

.lap-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: rgba(20, 28, 36, 0.06);
	font-size: 22px;
	line-height: 1;
	color: #5f6f7d;
}

.lap-modal__close:hover {
	background: rgba(20, 28, 36, 0.1);
}

.lap-modal__head {
	padding: 20px 22px 12px;
	border-bottom: 1px solid rgba(94, 196, 196, 0.12);
}

.lap-modal__title {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 800;
	color: var(--text-main);
}

.lap-modal__subtitle {
	margin: 0;
	font-size: 12px;
	color: #5f6f7d;
}

.lap-modal__body {
	padding: 16px 22px 22px;
}

.robot-intro-block {
	margin-bottom: 16px;
	padding: 20px 22px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.robot-intro-block__head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
}

.robot-intro-block__bar {
	width: 4px;
	min-height: 18px;
	border-radius: 4px;
	background: linear-gradient(180deg, #7ecde0 0%, #b08ad4 100%);
	flex-shrink: 0;
	margin-top: 3px;
}

.robot-intro-block__head h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
	color: var(--text-main);
}

.robot-intro-block__brand {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 800;
	color: #48c4c3;
}

.robot-intro-block__text {
	margin: 0;
	font-size: 12px;
	line-height: 1.85;
	color: #5f6f7d;
}

.robot-intro-block--hero {
	padding: 0;
	overflow: hidden;
}

/* 프로젝트 공통 히어로 배너: robot-intro-block--hero + robot-intro-hero */
.robot-doctors-hero {
	margin-bottom: 18px;
}

.robot-intro-hero {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 30 / 7;
	min-height: 168px;
	background: #fff;
}

.robot-intro-hero__media {
	position: absolute;
	top: -180px;
	right: 0;
	bottom: 0;
	left: 10%;
	overflow: hidden;
}

.robot-intro-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	display: block;
	filter: blur(1px);
	transform: scale(1.04);
}

.robot-intro-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 36%,
		rgba(255, 255, 255, 0.82) 44%,
		rgba(255, 255, 255, 0.35) 52%,
		rgba(255, 255, 255, 0) 60%
	);
	pointer-events: none;
}

.robot-intro-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 22px 28px;
	max-width: 60%;
}

.robot-intro-block--hero .robot-intro-block__head {
	margin-bottom: 10px;
}

.robot-intro-block--hero .robot-intro-block__brand {
	margin-bottom: 8px;
}

.robot-intro-block__visual {
	margin-top: 14px;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 16 / 7;
	background: linear-gradient(135deg, #dceef0 0%, #c5e0e4 100%);
}

.robot-intro-block__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.robot-benefits {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 34%);
	gap: 16px;
	align-items: center;
}

.robot-benefits__title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 800;
	color: var(--text-main);
}

.robot-benefits__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.robot-benefits__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.robot-benefits__num {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(145deg, #5ec4c4 0%, #4ab8b8 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.robot-benefits__list strong {
	display: block;
	margin-bottom: 2px;
	font-size: 13px;
	font-weight: 800;
	color: #48c4c3;
}

.robot-benefits__list span {
	font-size: 12px;
	line-height: 1.65;
	color: #5f6f7d;
}

.robot-benefits__visual {
	border-radius: 14px;
	overflow: hidden;
	background: #f4fbfb;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
}

.robot-benefits__visual img {
	width: 100%;
	max-height: 240px;
	object-fit: contain;
	display: block;
}

.robot-highlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(120px, 28%);
	gap: 14px;
	align-items: center;
}

.robot-highlight__badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(94, 196, 196, 0.12);
	font-size: 12px;
	font-weight: 800;
	color: #48c4c3;
}

.robot-point-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.robot-point-card {
	text-align: center;
}

.robot-point-card__thumb {
	margin: 0 auto 10px;
	width: 100%;
	max-width: 110px;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(145deg, #eef9f9 0%, #dcefee 100%);
	border: 2px solid rgba(94, 196, 196, 0.2);
}

.robot-point-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.robot-point-card__label {
	margin: 0;
	padding: 8px 10px;
	border-radius: 12px;
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.45;
	color: #fff;
}

.robot-compare-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 12px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(94, 196, 196, 0.18);
}

.robot-compare-table th,
.robot-compare-table td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(94, 196, 196, 0.1);
	vertical-align: middle;
	line-height: 1.55;
}

.robot-compare-table thead th {
	background: rgba(94, 196, 196, 0.08);
	font-weight: 800;
	color: var(--text-main);
	text-align: center;
}

.robot-compare-table thead th:last-child {
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	color: #fff;
}

.robot-compare-table tbody th {
	width: 18%;
	background: rgba(94, 196, 196, 0.06);
	font-weight: 700;
	color: #48c4c3;
	text-align: left;
}

.robot-compare-table tbody td {
	color: #5f6f7d;
	text-align: center;
	background: #fff;
}

.robot-compare-table tbody td:last-child {
	background: rgba(94, 196, 196, 0.05);
	font-weight: 600;
	color: #3d8f90;
}

.robot-compare-table tr:last-child th,
.robot-compare-table tr:last-child td {
	border-bottom: none;
}

.robot-cases {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.robot-case-card {
	text-align: center;
}

.robot-case-card__icon {
	margin: 0 auto 10px;
	width: 100%;
	max-width: 100px;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(145deg, #f8ecec 0%, #f0d8d8 100%);
	border: 2px solid rgba(229, 115, 153, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.robot-case-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.robot-case-card__name {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	color: var(--text-main);
}

.robot-doctors-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.robot-doctors-grid.staff-grid--profile .staff-card__photo {
	aspect-ratio: 3 / 3.35;
}

@media (max-width: 1200px) {
	.robot-point-grid,
	.robot-cases {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.robot-benefits {
		grid-template-columns: 1fr;
	}

	.robot-benefits__visual {
		min-height: 180px;
	}
}

@media (max-width: 960px) {
	.sub-content--center .center-panels {
		padding: 20px 16px;
	}

	.robot-highlight {
		grid-template-columns: 1fr;
	}

	.robot-doctors-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lap-doctors-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.breast-split {
		grid-template-columns: 1fr;
	}

	.breast-topic-feature__visual {
		height: 128px;
	}

	.robot-intro-hero__media {
		left: 0;
	}

	.robot-intro-hero__content {
		max-width: 100%;
		padding: 18px 20px;
	}

	.robot-intro-hero__overlay {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.95) 50%,
			rgba(255, 255, 255, 0.55) 68%,
			rgba(255, 255, 255, 0) 82%
		);
	}
}

/* =============================================================================
   menu_03 — 이용안내 (진료안내 · 오시는길 · 주차안내)
   ============================================================================= */

.sub-content.sub-content--info .sub-panels {
	position: relative;
	flex: 1;
}

.sub-content.sub-content--info .sub-panel {
	padding: 28px 28px 24px;
}

.info-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.info-tab {
	padding: 8px 16px;
	border-radius: 999px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	color: #5f6f7d;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.info-tab:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.info-tab.is-active {
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 14px rgba(94, 196, 196, 0.2);
}

.info-tab-panel {
	display: none;
}

.info-tab-panel.is-active {
	display: block;
}

.fee-block__head {
	margin-bottom: 14px;
}

.fee-block__head h2 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 800;
	color: var(--text-main);
}

.fee-block__meta {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: #48c4c3;
}

.fee-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.fee-cat {
	padding: 8px 16px;
	border-radius: 999px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	color: #5f6f7d;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.fee-cat:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.fee-cat.is-active {
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 14px rgba(94, 196, 196, 0.2);
}

.fee-cat-panel {
	display: none;
}

.fee-cat-panel.is-active {
	display: block;
}

.fee-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.fee-scroll-hint {
	margin: 0 0 8px;
	font-size: 11px;
	color: #8a9aa8;
}

.fee-table {
	min-width: 640px;
}

.parking-fee-table.fee-table {
	font-size: 13px;
}

.fee-table .fee-table__name {
	text-align: left;
	font-weight: 600;
	color: var(--text-main);
}

.guide-hours-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.guide-hours-card {
	padding: 18px 20px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.guide-hours-card--wide {
	grid-column: 1 / -1;
}

.guide-hours-card__title {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main);
}

.guide-hours-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.guide-hours-table th,
.guide-hours-table td {
	padding: 7px 0;
	border-bottom: 1px solid rgba(94, 196, 196, 0.1);
	vertical-align: middle;
}

.guide-hours-table th {
	width: 34%;
	font-weight: 700;
	color: #48c4c3;
	text-align: left;
}

.guide-hours-table td {
	color: #5f6f7d;
}

.guide-hours-table tr:last-child th,
.guide-hours-table tr:last-child td {
	border-bottom: none;
}

.guide-hours-closed {
	color: var(--accent-pink);
	font-weight: 700;
}

.guide-hours-card__note {
	margin: 12px 0 0;
	font-size: 12px;
	line-height: 1.65;
	color: var(--accent-pink);
}

.guide-hours-card__phone {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 700;
	color: #48c4c3;
}

.guide-hours-card__phone img {
	width: 14px;
	height: 14px;
	opacity: 0.85;
}

.info-placeholder {
	padding: 28px 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.info-placeholder h2 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: var(--text-main);
}

.info-placeholder p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #5f6f7d;
}

.info-placeholder a {
	color: #48c4c3;
	font-weight: 700;
}

.cert-docs-table tbody th {
	vertical-align: top;
	line-height: 1.6;
}

.cert-table__sub {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 600;
	color: #7a8794;
	line-height: 1.5;
}

.cert-doc-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cert-doc-list li {
	position: relative;
	padding-left: 12px;
	margin-bottom: 6px;
	font-size: 13px;
	line-height: 1.65;
	color: #5f6f7d;
}

.cert-doc-list li:last-child {
	margin-bottom: 0;
}

.cert-doc-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background: #5ec4c4;
}

.cert-doc-list__warn {
	color: #e85d5d;
	font-weight: 700;
}

.cert-doc-list__warn::before {
	background: #e85d5d;
}

.care-guide-text--note {
	margin-bottom: 0;
	font-size: 12px;
	color: #8a96a3;
}

.cert-download-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.cert-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	padding: 12px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.cert-download-btn--light {
	background: #f3f5f7;
	border: 1px solid #e2e8ee;
	color: #3d4f58;
}

.cert-download-btn--light:hover {
	background: #e9eef2;
	border-color: #d5dde5;
}

.cert-download-btn--dark {
	background: #1f2a35;
	border: 1px solid #1f2a35;
	color: #fff;
	box-shadow: 0 4px 14px rgba(31, 42, 53, 0.18);
}

.cert-download-btn--dark:hover {
	background: #2c3a48;
	border-color: #2c3a48;
}

.map-block {
	margin-bottom: 16px;
}

.map-block__title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main);
}

.map-block__top {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
	gap: 14px;
	align-items: stretch;
}

.map-embed {
	border-radius: 16px;
	overflow: hidden;
	min-height: 280px;
	background: #e8f4f4;
	border: 1px solid rgba(94, 196, 196, 0.15);
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
	display: block;
}

.map-quick-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.map-quick-info__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.map-quick-info__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.map-quick-info__icon img {
	width: 36px;
	height: 36px;
	display: block;
}

.map-quick-info__item p {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: #5f6f7d;
	font-weight: 600;
}

.map-quick-info__item a {
	color: #48c4c3;
	font-weight: 700;
	text-decoration: none;
}

.transport-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.transport-card {
	padding: 16px 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.transport-card__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.transport-card__head h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	color: var(--text-main);
}

.transport-card__icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: transparent;
}

.transport-card__icon img {
	width: 36px;
	height: 36px;
	display: block;
}

.transport-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.transport-card__list li strong {
	display: block;
	font-size: 12px;
	font-weight: 800;
	color: #48c4c3;
	margin-bottom: 2px;
}

.transport-card__list li span {
	font-size: 12px;
	color: #5f6f7d;
}

.transport-card__addr {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.65;
	font-weight: 700;
	color: #5f6f7d;
}

.transport-card__text {
	margin: 0;
	font-size: 12px;
	line-height: 1.65;
	color: #5f6f7d;
}

.transport-card__bullets {
	margin: 0;
	padding: 0 0 0 14px;
	font-size: 12px;
	line-height: 1.7;
	color: #5f6f7d;
}

.parking-block {
	padding: 20px 22px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.parking-block__title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main);
}

.parking-block__intro {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.75;
	color: #5f6f7d;
}

.parking-block__warn {
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 1.65;
	color: #c45c5c;
}

.parking-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(160px, 28%);
	gap: 16px;
	align-items: start;
}

.parking-detail__table-wrap h3 {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 800;
	color: var(--text-main);
}

.parking-fee-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 11px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(94, 196, 196, 0.15);
}

.parking-fee-table th,
.parking-fee-table td {
	padding: 10px 8px;
	border-bottom: 1px solid rgba(94, 196, 196, 0.1);
	text-align: center;
	vertical-align: middle;
	line-height: 1.45;
}

.parking-fee-table thead th {
	background: rgba(94, 196, 196, 0.1);
	font-weight: 800;
	color: var(--text-main);
}

.parking-fee-table tbody th {
	background: rgba(94, 196, 196, 0.06);
	font-weight: 700;
	color: #48c4c3;
}

.parking-fee-table tbody td {
	color: #5f6f7d;
	background: #fff;
}

.parking-fee-table tr:last-child th,
.parking-fee-table tr:last-child td {
	border-bottom: none;
}

.parking-footnotes {
	margin: 10px 0 0;
	padding: 0 0 0 14px;
	font-size: 11px;
	line-height: 1.65;
	color: #48c4c3;
}

.parking-detail__diagram {
	text-align: center;
	padding: 10px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
}

.parking-detail__diagram img {
	width: 100%;
	max-width: 220px;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media (max-width: 1200px) {
	.transport-grid {
		grid-template-columns: 1fr;
	}

	.map-block__top {
		grid-template-columns: 1fr;
	}

	.parking-detail {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.sub-content--info .sub-panel {
		padding: 20px 16px;
	}

	.sub-content--info .care-guide-hero.robot-intro-hero {
		aspect-ratio: auto;
		min-height: 0;
		height: auto;
	}

	.sub-content--info .care-guide-hero .robot-intro-hero__media {
		top: 0;
		left: 0;
	}

	.sub-content--info .care-guide-hero__content {
		max-width: 100%;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding: 16px;
	}

	.cert-download-actions {
		justify-content: stretch;
	}

	.cert-download-btn {
		flex: 1;
		min-width: 0;
	}

	.guide-hours-grid {
		grid-template-columns: 1fr;
	}

	.guide-hours-card--wide {
		grid-column: auto;
	}
}

/* =============================================================================
   menu_04 — 병원소개 (병원둘러보기 갤러리)
   ============================================================================= */

.sub-content.sub-content--about .sub-panels {
	position: relative;
	flex: 1;
}

.sub-content.sub-content--about .sub-panel {
	padding: 28px 28px 24px;
}

.about-intro-block {
	padding: 24px 26px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.12);
	box-shadow: var(--shadow-card);
}

.about-intro-block h2 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 800;
	color: var(--text-main);
}

.about-intro-block > p {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.8;
	color: #5f6f7d;
}

.about-intro-list {
	margin: 0;
	padding: 0 0 0 16px;
	font-size: 13px;
	line-height: 1.85;
	color: #48c4c3;
	font-weight: 600;
}

.tour-gallery {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tour-gallery__stage {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #dceef0;
	aspect-ratio: 16 / 9;
	min-height: 320px;
	box-shadow: var(--shadow-card);
}

.tour-gallery__main {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tour-gallery__caption {
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(26, 43, 60, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.tour-gallery__controls {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 6px;
	border-radius: 999px;
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	box-shadow: 0 8px 20px rgba(94, 196, 196, 0.35);
}

.tour-gallery__nav {
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition);
}

.tour-gallery__nav:hover {
	background: rgba(255, 255, 255, 0.18);
}

.tour-gallery__counter {
	min-width: 52px;
	text-align: center;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
}

.tour-gallery__thumbs-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tour-gallery__thumb-nav {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	border-radius: 50%;
	background: #fff;
	color: #48c4c3;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
}

.tour-gallery__thumb-nav:hover {
	border-color: var(--primary);
	background: #f0fbfb;
}

.tour-gallery__thumbs {
	flex: 1;
	min-width: 0;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 2px 0;
}

.tour-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.tour-gallery__thumb {
	flex: 0 0 88px;
	width: 88px;
	height: 62px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	background: #e8f4f4;
	cursor: pointer;
	opacity: 0.72;
	transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
}

.tour-gallery__thumb:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.tour-gallery__thumb.is-active {
	border-color: #48c4c3;
	opacity: 1;
	box-shadow: 0 6px 16px rgba(94, 196, 196, 0.25);
}

.tour-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 960px) {
	.sub-content--about .sub-panel {
		padding: 20px 16px;
	}

	.tour-gallery__stage {
		min-height: 220px;
	}

	.tour-gallery__thumb {
		flex: 0 0 72px;
		width: 72px;
		height: 52px;
	}
}

/* =============================================================================
   menu_05 — 산후조리원
   ============================================================================= */
.sub-content.sub-content--care .sub-panels {
	position: relative;
	flex: 1;
}

.sub-content.sub-content--care .sub-panel {
	padding: 28px 28px 24px;
}

.care-intro-block {
	margin-bottom: 18px;
}

.care-intro-hero .robot-intro-hero__media img {
	object-fit: cover;
	object-position: center right;
	filter: none;
	transform: none;
}

@media (min-width: 961px) {
	.care-intro-hero .robot-intro-hero__content {
		max-width: 58%;
	}
}

.care-intro-hero .robot-intro-block__head h2 {
	min-width: 0;
}

.care-policy {
	margin-bottom: 20px;
}

.care-policy__title,
.care-directions__title {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main);
}

.care-policy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.care-policy-card {
	padding: 16px 18px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.14);
	box-shadow: 0 6px 18px rgba(26, 43, 60, 0.05);
}

.care-policy-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	margin-bottom: 10px;
	border-radius: 999px;
	background: rgba(94, 196, 196, 0.12);
	font-size: 12px;
	font-weight: 800;
	color: #48c4c3;
}

.care-policy-card__title {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.55;
	color: var(--text-main);
}

.care-policy-card__list {
	margin: 0;
	padding: 0 0 0 14px;
	font-size: 12px;
	line-height: 1.75;
	color: #5f6f7d;
}

.care-directions {
	padding: 18px 20px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(94, 196, 196, 0.14);
	box-shadow: var(--shadow-card);
}

.care-directions__map {
	margin-bottom: 16px;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #eef4f5;
}

.care-directions__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.care-directions__list {
	display: grid;
	gap: 12px;
}

.care-directions__item h3 {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 800;
	color: #48c4c3;
}

.care-directions__item p,
.care-directions__item ul {
	margin: 0;
	font-size: 12px;
	line-height: 1.7;
	color: #5f6f7d;
}

.care-directions__item ul {
	padding-left: 14px;
}

.care-guide-hero-block {
	margin-bottom: 24px;
}

.care-guide-hero.robot-intro-hero {
	aspect-ratio: auto;
	min-height: 220px;
}

.care-guide-hero__media {
	top: 0;
}

.care-guide-hero .robot-intro-hero__media img {
	object-fit: cover;
	object-position: center right;
	filter: none;
	transform: none;
}

.care-guide-hero__content {
	max-width: 62%;
}

.care-guide-hero__lead,
.care-guide-text {
	margin: 0 0 30px 0;
	font-size: 13px;
	line-height: 1.85;
	color: #5f6f7d;
}

.care-guide-section {
	margin-bottom: 22px;
}

.care-guide__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main);
}

.care-guide__title--hero {
	margin-bottom: 12px;
}

.care-guide__bar {
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #5ec4c4 0%, #48c4c3 100%);
	flex-shrink: 0;
}

.care-guide__subtitle {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	color: #48c4c3;
}

.care-guide__subtitle--plain {
	color: var(--text-main);
}

.care-guide__subtitle + .care-guide-list {
	margin-bottom: 14px;
}

.care-guide__arrow {
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	opacity: 0.7;
}

.care-guide-list {
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}

.care-guide-list li {
	position: relative;
	padding-left: 14px;
	font-size: 13px;
	line-height: 1.8;
	color: #5f6f7d;
}

.care-guide-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background: #48c4c3;
	transform: translateY(-50%);
}

.care-guide-list--hero li {
	color: #5f6f7d;
}

.care-guide-list__account {
	color: #3d8fd4 !important;
	font-weight: 700;
}

.care-guide-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.care-guide-steps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.care-guide-steps__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #e85d5d;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.care-guide-steps p {
	margin: 0;
	padding-top: 2px;
	font-size: 13px;
	line-height: 1.8;
	color: #5f6f7d;
}

.care-guide-em {
	font-style: normal;
	color: #e85d5d;
	font-weight: 700;
}

.care-guide-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid rgba(94, 196, 196, 0.16);
	background: #fff;
}

.care-guide-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: 12px;
}

.care-guide-table thead th {
	padding: 12px 10px;
	background: #f3f7f8;
	border-bottom: 1px solid rgba(94, 196, 196, 0.16);
	font-weight: 800;
	color: var(--text-main);
	text-align: center;
}

.care-guide-table tbody th,
.care-guide-table tbody td {
	padding: 11px 10px;
	border-bottom: 1px solid rgba(94, 196, 196, 0.1);
	color: #5f6f7d;
	text-align: center;
	vertical-align: middle;
	line-height: 1.65;
}

.care-guide-table tbody tr:last-child th,
.care-guide-table tbody tr:last-child td {
	border-bottom: none;
}

.care-guide-table tbody th {
	background: #fafcfc;
	font-weight: 800;
	color: var(--text-main);
}

.care-guide-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.care-guide-section-head .care-guide__title {
	margin-bottom: 0;
}

.care-program__fee {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: #e85d5d;
	white-space: nowrap;
}

.care-program-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f5f8f9;
	border: 1px solid rgba(94, 196, 196, 0.12);
}

.care-program-notice__icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 1.5px solid #9aa8b5;
	color: #9aa8b5;
	font-size: 14px;
	font-weight: 800;
	font-style: italic;
	font-family: Georgia, "Times New Roman", serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.care-program-notice p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: #5f6f7d;
}

.care-guide-list--notes {
	margin-top: 14px;
	margin-bottom: 0;
}

.care-program-table {
	min-width: 560px;
}

.bf-tabs {
	display: flex;
	margin-bottom: 20px;
}

.bf-tab {
	flex: 1;
	padding: 14px 12px;
	border: 1.5px solid rgba(94, 196, 196, 0.35);
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	color: #5f6f7d;
	text-align: center;
	transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.bf-tab:first-child {
	border-radius: 8px 0 0 8px;
}

.bf-tab:last-child {
	border-radius: 0 8px 8px 0;
	border-left: none;
}

.bf-tab:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.bf-tab.is-active {
	background: linear-gradient(135deg, #5ec4c4 0%, #4ab8b8 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 14px rgba(94, 196, 196, 0.2);
}

.bf-tab-panel {
	display: none;
}

.bf-tab-panel.is-active {
	display: block;
}

.care-guide-text--emphasis {
	font-weight: 700;
	color: #e85d5d;
}

.bf-benefits-table {
	min-width: 520px;
}

.bf-benefits-table thead th {
	text-align: center;
	background: #f3f8f8;
}

.bf-benefits-table tbody td {
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 1.65;
}

@media (max-width: 960px) {
	.sub-content--care .sub-panel {
		padding: 20px 16px;
	}

	.care-policy-grid {
		grid-template-columns: 1fr;
	}

	.care-intro-block.robot-intro-block--hero {
		max-width: 100%;
		overflow: hidden;
	}

	.care-intro-hero.robot-intro-hero {
		aspect-ratio: auto;
		min-height: 0;
		height: auto;
		max-width: 100%;
	}

	.care-intro-hero .robot-intro-hero__media {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	.care-intro-hero .robot-intro-hero__media img {
		transform: none;
		object-position: center;
	}

	.care-intro-hero .robot-intro-hero__content {
		max-width: 100%;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		height: auto;
		min-height: 168px;
		padding: 16px;
	}

	.care-intro-hero .robot-intro-block__head {
		min-width: 0;
	}

	.care-intro-hero .robot-intro-block__head h2,
	.care-intro-hero .robot-intro-block__text {
		overflow-wrap: break-word;
		word-break: keep-all;
	}

	.sub-content--care .sub-panel {
		overflow-x: hidden;
		max-width: 100%;
	}

	.care-guide-hero.robot-intro-hero {
		aspect-ratio: auto;
		min-height: 0;
		height: auto;
	}

	.care-guide-hero .robot-intro-hero__media {
		top: 0;
		left: 0;
	}

	.care-guide-hero__content {
		max-width: 100%;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding: 16px;
	}

	.bf-tabs {
		flex-direction: column;
	}

	.bf-tab,
	.bf-tab:first-child,
	.bf-tab:last-child {
		border-radius: 8px;
		border-left: 1.5px solid rgba(94, 196, 196, 0.35);
	}

	.bf-tab + .bf-tab {
		margin-top: 8px;
	}

	.bf-tab.is-active + .bf-tab,
	.bf-tab + .bf-tab.is-active {
		border-left-color: rgba(94, 196, 196, 0.35);
	}
}

@media (max-width: 960px) {
	.sub-content.sub-content--info,
	.sub-content.sub-content--about,
	.sub-content.sub-content--care {
		flex: 1 1 auto;
		width: 100%;
		min-height: 480px;
		overflow-x: hidden;
		overflow-y: visible;
	}

	.sub-content.sub-content--info .sub-panels,
	.sub-content.sub-content--about .sub-panels,
	.sub-content.sub-content--care .sub-panels {
		min-height: 480px;
	}
}
