:root {
	--primary: #2563eb;
	--accent: #fb7185;
	--bg-dark: #020617;
	--text-main: #0f172a;
	--text-soft: #6b7280;
	--card-bg: #ffffff;
	--nav-h: 72px;
	--radius-lg: 26px;
	--radius-md: 18px;
	--shadow-soft: 0 24px 55px rgba(15, 23, 42, 0.42);
	--shadow-card: 0 18px 40px rgba(15, 23, 42, 0.26);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-padding-top: var(--nav-h);
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, system-ui, "Noto Sans KR", sans-serif;
	letter-spacing: -0.02em;
	color: var(--text-main);
	background: #020617;
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
}

img {
	max-width: 100%;
	display: block;
    border-radius: 10px;
}

/* 전체 래퍼 */
.screen {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	color: #fff;
}

/* 움직이는 배경 */
.bg-animated {
	position: absolute;
	inset: -20%;
	background:
		radial-gradient(circle at 0% 0%, #c42da6, transparent 55%), radial-gradient(circle at 100% 0%, #61e93f, transparent 55%), radial-gradient(circle at 50% 100%, #96a3eb, transparent 60%);
	filter: blur(0.6px);
	opacity: 0.9;
	animation: bgMove 40s ease-in-out infinite alternate;
	z-index: 0;
}

.floating-circle {
	position: absolute;
	border-radius: 999px;
	mix-blend-mode: screen;
	opacity: 0.45;
	filter: blur(1px);
	z-index: 0;
}

.floating-circle.c1 {
	width: 260px;
	height: 260px;
	left: -80px;
	top: 18%;
	background: radial-gradient(circle at 30% 30%, #ffffff, #93c5fd);
	animation: float1 6s ease-in-out infinite alternate;
}

.floating-circle.c2 {
	width: 220px;
	height: 220px;
	right: -60px;
	top: 55%;
	background: radial-gradient(circle at 70% 10%, #ffffff, #fecaca);
	animation: float2 3s ease-in-out infinite alternate;
}

.floating-circle.c3 {
	width: 150px;
	height: 150px;
	right: 28%;
	top: -60px;
	background: radial-gradient(circle at 40% 0%, #f9fafb, #a5f3fc);
	animation: float3 10s ease-in-out infinite alternate;
}

/* 헤더 */
.header {
	position: relative;
	/* z-index: 2; */
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	background: linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.1), transparent);
}

.header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-mark {
	width: 40px;
	height: 40px;
	/* border-radius: 16px;
	background: radial-gradient(circle at 30% 0, #ffffff, #c7d2fe); */
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 18px;
	color: #1d4ed8;
	/* box-shadow: 0 16px 34px rgba(37,99,235,0.6); */
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

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

.logo-text small {
	font-size: 11px;
	color: #cbd5f5;
}

.header-center {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 14px;
	color: #cbd5f5;
}

.header-center a {
	position: relative;
	padding-bottom: 3px;
}

.header-center a::after {
	content: "";
	position: absolute;
	left: 0;
	top: -23%;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #93c5fd, #fecaca);
	transition: width 0.16s ease-out;
}

.header-center .nav-sub a::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #93c5fd, #fecaca);
	transition: width 0.16s ease-out;
}

.header-center a:hover::after {
	width: 100%;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

/* 드롭다운 컨테이너 */
.nav-item {
	position: relative;
}

.nav-item-title {
	font-size: 20px !important;
}

.nav-item > a {
	display: inline-block;
	padding-inline: 4px;
	font-family: "Black Han Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.1rem;
	color: #dce9ff;
}

.nav-sub {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 140px;
	border-radius: 14px;
	background: rgba(15,23,42,0.96);
	box-shadow: 0 18px 40px rgba(15,23,42,0.9);
	padding: 6px 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 30;
}

.nav-sub a {
	display: block;
	padding: 7px 14px;
	font-size: 12px;
	color: #e5e7eb;
	white-space: nowrap;
}

.nav-sub a:hover {
	background: rgba(148,163,184,0.35);
}

.nav-item:hover .nav-sub {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(4px);
}
.nav-sub-addon{
    font-size: 10px;
    font-weight: bold;
	font-family: "Diphylleia", serif;
    background: linear-gradient(135deg, #8ebffb, #fea0ae);
    padding: 1px 7px;
    margin-left: 5px;
    border-radius: 999px;
    color: #212121;
}
.btn {
	border-radius: 999px;
	border: 1px solid transparent;
	padding: 6px 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	font-size: 12px;
}

.btn-status {
	border-color: rgba(148,163,184,0.8);
	background: rgba(15,23,42,0.85);
	color: #e5e7eb;
}

.btn-status span.dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #22c55e;
	display: inline-block;
}
.btn-status span.dot.dot-open {
	background: #22c55e;
}
.btn-status span.dot.dot-close {
	background: #ef4444;
}

/* 헤더 외래진료 버튼 반사광 (OPEN일 때만, 버튼 전체 오른쪽→왼쪽 부드럽게) */
#headerOutpatientStatus {
	position: relative;
	overflow: hidden;
}
#headerOutpatientStatus.header-outpatient-open::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(
		320deg,
		transparent 0%,
		rgba(255, 255, 255, 0.12) 25%,
		rgba(255, 255, 255, 0.32) 50%,
		rgba(255, 255, 255, 0.12) 75%,
		transparent 100%
	);
	pointer-events: none;
	animation: header-status-shimmer 3s ease-in-out infinite;
}
@keyframes header-status-shimmer {
	0%   { transform: translateX(120%); }
	42%  { transform: translateX(-120%); }
	100% { transform: translateX(-120%); }
}

.btn-call {
	background: linear-gradient(135deg, #60a5fa, #fb7185);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(15,23,42,0.6);
}

.btn-call:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(15,23,42,0.8);
}

/* 메인 영역 - 행 높이 제한으로 내부 스크롤 가능 */
.main {
	position: relative;
	z-index: 1;
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) 310px;
	grid-template-rows: minmax(0, 1fr);
	gap: 18px;
	padding: 0 32px 20px;
	align-items: stretch;
}

/* 중앙 대시보드 카드 */
.dashboard {
	position: relative;
	border-radius: 32px;
	background: rgba(248,250,252,0.96);
	box-shadow: var(--shadow-soft);
	padding: 22px 24px 22px;
	color: var(--text-main);
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 16px;
	overflow: hidden;
}

/* 대시보드 내부 배경 슬라이드 레이어 */
.dashboard-bg {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	overflow: hidden;
	z-index: 0;
}

.dashboard-bg-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.05);
	transition:
		opacity 1s ease-in-out,
		transform 7s ease-out;
}

.dashboard-bg-slide.active {
	opacity: 1;
	transform: scale(1.12);
}

/* 기존 밝은 그라디언트 오버레이 */
.dashboard::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at -10% -10%, rgba(191,219,254,0.9), transparent 55%),
		linear-gradient(to bottom, rgba(248,250,252,0.4), rgba(248,250,252,0.4));
	pointer-events: none;
	z-index: 1;
}

.dash-top,
.dash-main,
.dash-bottom {
	position: relative;
	z-index: 2;
}

.dash-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 12px;
}

.dash-pill {
	border-radius: 999px;
	padding: 4px 11px;
	background: #0f172a;
	color: #e5e7eb;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
    box-shadow: 5px 3px 12px 2px rgb(51 53 57 / 42%);
}

.dash-pill span.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #22c55e;
	display: inline-block;
}

.dash-sub {
	/* color: var(--text-soft); */
	color:#161b439c;
	white-space: nowrap;
	font-family: "Jua", sans-serif;
	font-weight: 400;
	font-style: normal;
    background: #ff7e2569;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 5px 3px 12px 2px rgb(51 53 57 / 42%);

}

.dash-main {
	display: grid;
	/* grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.15fr); */
	gap: 20px;
	align-items: center;
}

.dash-copy {
	position: relative;
	min-height: 400px;
}

/* 텍스트 슬라이드 */
.dash-text-slide {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
	padding: 0 30px;

}

.dash-text-slide.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.dash-text-slide h1 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.25;
	word-break: keep-all;
}

.dash-text-slide h1 strong {
	background: linear-gradient(120deg, #2563eb, #fb7185);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dash-text-slide p {
	margin: 0 0 18px;
	font-size: 14px;
	color: var(--text-soft);
	max-width: 450px;
	word-break: keep-all;
}

.dash-ctas {
	margin-top: 130px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dash-btn-main {
	border-radius: 999px;
	padding: 8px 16px;
	border: none;
	background: #0f172a;
	color: #f9fafb;
	font-size: 13px;
	cursor: pointer;
}

.dash-btn-sub {
	border-radius: 999px;
	padding: 8px 14px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	color: var(--text-soft);
	font-size: 13px;
	cursor: pointer;
}

.dash-metrics {
	position: relative;
	border-radius: 24px;
	background: radial-gradient(circle at 0 0, #eff6ff, #fdf2ff);
	padding: 14px 14px 12px;
	box-shadow: 0 16px 34px rgba(148,163,184,0.4);
	overflow: hidden;
}

.dash-metrics-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	color: var(--text-soft);
	margin-bottom: 8px;
}

.dash-metrics-header strong {
	font-size: 12px;
	color: var(--text-main);
}

.dash-metrics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	font-size: 11px;
}

.metric {
	border-radius: 14px;
	padding: 7px 8px;
	background: rgba(255,255,255,0.9);
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.metric-label {
	color: var(--text-soft);
}

.metric-value {
	font-weight: 600;
	font-size: 13px;
}

.metric-note {
	font-size: 10px;
	color: #9ca3af;
}

.dash-bottom {
	margin-top: 4px;
}

.quick-row-title {
	font-size: 12px;
	color: var(--text-soft);
	margin-bottom: 8px;
}

.quick-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.quick-tile {
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(148,163,184,0.5);
	padding: 10px 10px 9px;
	font-size: 11px;
	color: var(--text-soft);
	cursor: pointer;
	transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, background 0.14s ease-out;
}

.quick-tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(148,163,184,0.7);
	background: radial-gradient(circle at 0 0, #eff6ff, #ffffff);
}

.quick-tile-title {
	font-size: 13px;
	font-weight: bold;
	color: var(--text-main);
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 20px;
	  font-family: "Jua", sans-serif;
	  font-weight: 400;
	  font-style: normal;
}

.quick-icon {
	position:absolute;
	font-size: 14px;
}
.quick-tile-tag {
	margin-top: 5px;
	display: inline-block;
	border-radius: 999px;
	padding: 2px 7px;
	background: #f3f4ff;
	color: #4b5563;
	font-size: 10px;
}

@media (max-width: 720px) {
	.dash-top {
		/* flex-direction: column; */
	}
	.dash-pill {
		font-size: 13px;
		width: 50%;
        text-align: center;
        word-break: keep-all;
	}

	.dash-pill span.dot {
		width: 8px;
		height: 6px;
	}

	.dash-sub {
		font-size:14.5px;
		width: 50%;
		white-space: normal;
        text-align: center;
        word-break: keep-all;
	}
	.dash-text-slide{
		padding: 0 15px;
	}
}
/* 오른쪽 세로 패널 */
.side-panel {
	position: relative;
	border-radius: 28px;
	background: rgba(15,23,42,0.92);
	box-shadow: 0 22px 50px rgba(15,23,42,0.8);
	padding: 16px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: hidden;
}

.side-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 12px;
	color: #e5e7eb;
}

.side-header h2 {
	margin: 0;
	font-size: 14px;
}

.side-tag {
	border-radius: 999px;
	padding: 3px 8px;
	font-size: 10px;
	background: rgba(15,23,42,0.9);
	border: 1px solid rgba(148,163,184,0.7);
	color: #cbd5f5;
}

.side-section-title {
	font-size: 11px;
	color: #94a3b8;
	margin-bottom: 4px;
	margin-top: 6px;
}

.side-today {
	border-radius: 18px;
	padding: 9px 9px 7px;
	background: rgba(15,23,42,0.8);
	border: 1px solid rgba(148,163,184,0.35);
	font-size: 11px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.side-today-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.side-today-top strong {
	font-size: 12px;
	color:#57a6fe;
}

.side-today-date {
	font-size: 11px;
	color: #9ca3af;
}

.side-today-num {
	font-size: 11px;
	color: #9ca3af;
}

.side-today-num span {
	color: #e5e7eb;
	font-weight: 600;
}

.side-list {
	margin-top: 2px;
	display: grid;
	gap: 4px;
}

.side-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 6px;
	font-size: 11px;
}

.side-item-label {
	color: #cbd5f5;
}

.side-item-value {
	color: #9ca3af;
	font-size: 10px;
}

.side-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(148,163,184,0.3), transparent);
	margin: 4px 0;
}

.side-sub-area {
	position:relative;
	display:flex;
    justify-content: center;
}

.side-badge {
	border-radius: 999px;
	padding: 5px 8px;
	margin: 5px 0;
	background: rgba(22,163,74,0.2);
	font-size: 10px;
	color: #bbf7d0;
	align-self: flex-start;
    width: 100%;
    text-align: center;
}

.side-reserve-btn {
    position: absolute;
    bottom: 170px;
    width: 90%;
    text-align: center;
    border-radius: 999px;
    background: #ff9513;
    color: #292939;
    font-family: "Black Han Sans", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.side-reserve-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #292939;
	z-index: -1;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.side-reserve-btn:hover::before {
	transform: scaleX(1);
}

.side-reserve-btn:hover {
	color: #ff9513;
}

/* 에덴병원 블로그 바로가기 버튼 */
.side-blog-btn-wrap {
	cursor: pointer;
	width: 100%;
	z-index: 0;
}

.side-blog-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 0 0 16px;
	background: linear-gradient(135deg, #1636b2 0%, #31b449 50%, #1636b2 100%);
	background-size: 200% 200%;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border-radius: 16px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(22, 54, 178, 0.4);
	transition: box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}
.side-notice-btn-wrap{
	text-align: center;
    background: linear-gradient(91deg, #f5f5f500 0%, #365358 50%, #ffffff00 100%);
    padding: 10px 0 7px;
    border-radius: 10px;
	z-index: 0;
}
.side-notice-btn-wrap .side-notice-btn-text{
	font-family: "Jua", sans-serif;
	font-weight: 400;
	position: relative;
	z-index: 1;
	font-size: 14px;
	border-radius: 16px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(22, 54, 178, 0.4);
	transition: box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}
.side-blog-btn .side-blog-btn-text {
	font-family: "Jua", sans-serif;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.side-blog-btn .side-blog-btn-img {
	width: 50px;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

/* 호버: 반짝이는 쉬머 + 배경 그라데이션 이동 */
.side-blog-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 0%,
		transparent 40%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 60%,
		transparent 100%
	);
	background-size: 200% 100%;
	background-position: 200% 0;
	pointer-events: none;
	z-index: 0;
}

.side-blog-btn:hover {
	box-shadow: 0 6px 20px rgba(22, 54, 178, 0.5);
	animation: side-blog-bg-move 1.2s ease-in-out infinite;
}

.side-blog-btn:hover::before {
	animation: side-blog-shine 0.7s ease-out forwards;
}

@keyframes side-blog-shine {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@keyframes side-blog-bg-move {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.side-photo {
	margin-top: auto;
	border-radius: 20px;
	background: radial-gradient(circle at 0 0, #111827, #020617);
	overflow: hidden;
	position: relative;
	height: 140px;
}

.side-photo-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.04);
	transition:
		opacity 1.2s ease-in-out,
		transform 7s ease-out;
}

.side-photo-slide.show {
	opacity: 1;
	transform: scale(1.14);
}

.side-photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15,23,42,0.75), rgba(15,23,42,0.1));
}

.side-photo-label {
	position: absolute;
	left: 10px;
	bottom: 8px;
	font-size: 10px;
	color: #e5e7eb;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.side-photo-label.fade-out {
	opacity: 0;
	transform: translateY(6px);
}

.side-photo-label strong {
	display: block;
	font-size: 11px;
}


/* 하단 작은 툴바 */
.bottom-bar {
	position: relative;
	/* z-index: 2; */
	height: 42px;
	padding: 0 24px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: #9ca3af;
	background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
}

.bottom-left span + span {
	margin-left: 14px;
}

.bottom-right {
	display: flex;
	gap: 10px;
}

.bottom-pill {
	border-radius: 999px;
	padding: 3px 9px;
	border: 1px solid rgba(148,163,184,0.6);
	color: #e5e7eb;
	cursor: pointer;
}

/* 애니메이션 */
@keyframes bgMove {
	0% { transform: translate3d(0,0,0) scale(1); }
	100% { transform: translate3d(-40px,40px,0) scale(1.08); }
}

/* 원형 배경 1 */
@keyframes float1 {
	0% {
		transform: translate3d(0,0,0) scale(1);
	}
	50% {
		transform: translate3d(20px,20px,0) scale(1.08);
	}
	100% {
		transform: translate3d(40px,40px,0) scale(0.98);
	}
}

/* 원형 배경 2 */
@keyframes float2 {
	0% {
		transform: translate3d(0,0,0) scale(1);
	}
	50% {
		transform: translate3d(-15px,-20px,0) scale(1.06);
	}
	100% {
		transform: translate3d(-30px,-40px,0) scale(0.97);
	}
}

/* 원형 배경 3 */
@keyframes float3 {
	0% {
		transform: translate3d(0,0,0) scale(1);
	}
	50% {
		transform: translate3d(-10px,12px,0) scale(1.05);
	}
	100% {
		transform: translate3d(-20px,25px,0) scale(0.97);
	}
}

/* 팝업 오버레이 */
.popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	backdrop-filter: blur(4px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

/* 팝업 활성화 */
.popup-overlay.show {
	opacity: 1;
	pointer-events: auto;
}

/* 팝업 박스 */
.popup-box {
	width: 520px;
	max-width: 90%;
	max-height: 80vh;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* 팝업 헤더 */
.popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	background: #0f172a;
	color: #ffffff;
}

.popup-header h3 {
	margin: 0;
	font-size: 17px;
}

/* 닫기 버튼 */
.popup-close {
	background: none;
	border: none;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
}

/* 내용 */
.popup-content {
	padding: 18px 22px;
	overflow-y: auto;
	color: #444;
	font-size: 14px;
	line-height: 1.55;
}

/* 하단 아이콘 상세 정보 박스 */
.bottom-detail {
	position: fixed;
	left: 50%;
	bottom: 60px;
	transform: translateX(-50%);
	min-width: 260px;
	max-width: 90vw;
	background: rgba(15,23,42,0.96);
	color: #e5e7eb;
	padding: 10px 25px;
	border-radius: 999px;
	box-shadow: 0 18px 40px rgba(15,23,42,0.9);
	font-size: 11px;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	gap: 2px;
	z-index: 9998;
	opacity: 1;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.bottom-detail.hidden {
	opacity: 0;
	transform: translate(-50%, 80px);
	pointer-events: none;
}

.bottom-detail-title {
	font-weight: 600;
	font-size: 11px;
	color: #bfdbfe;
}

.bottom-detail-body {
	font-size: 11px;
}

/* 모바일 상단 가로 스크롤 메뉴 바 */
.mobile-nav {
	display: none;
	position: relative;
	/* z-index: 2; */
	background: #020617;
	border-top: 1px solid rgba(15,23,42,0.9);
	border-bottom: 1px solid rgba(30,64,175,0.7);
}

.mobile-nav-scroll {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px 10px;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
    justify-content: center;
}

.mobile-nav-scroll::-webkit-scrollbar {
	display: none;
}

.mobile-nav-item {
	border: none;
	outline: none;
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 13px;
	background: #111827;
	color: #e5e7eb;
	cursor: pointer;
	white-space: nowrap;
}

.mobile-nav-item.active {
	background: linear-gradient(135deg, #60a5fa, #fb7185);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(15,23,42,0.9);
}

/* 모바일 하위메뉴 패널 */
.mobile-submenu-panel {
	display: none;
	position: relative;
	z-index: 1;
	background: #020617;
	border-bottom: 1px solid rgba(30,64,175,0.7);
}

.mobile-submenu-panel.open {
	display: block;
}

.mobile-submenu-inner {
	padding: 8px 14px 12px;
}

.mobile-submenu-link {
	display: block;
	padding: 8px 6px;
	font-size: 13px;
	color: #e5e7eb;
	border-radius: 10px;
}

.mobile-submenu-link + .mobile-submenu-link {
	margin-top: 4px;
}

.mobile-submenu-link:hover {
	background: rgba(15,23,42,0.9);
}

.mobile_menu_focus{
    margin: 0 0 0 10px;
    border-radius: 15px;
    padding: 5px 10px 3px;
    background: linear-gradient(135deg, #60a5fa, #fb7185);
    color: #313131;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.9);
    font-family: "Jua", sans-serif;
}

/* 하단 아이콘 스타일 */
.bottom-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bottom-icon {
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(15,23,42,0.85);
	border: 1px solid rgba(148,163,184,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	color: #e5e7eb;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.bottom-icon:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #2563eb, #fb7185);
	border-color: transparent;
	box-shadow: 0 10px 22px rgba(15,23,42,0.8);
}

@media (max-width: 720px) {
	.bottom-detail {
		bottom: 72px;
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.popup-box {
		width: 92%;
		max-height: 82vh;
	}
	.popup-content {
		font-size: 13px;
	}
	.dash-copy {
		min-height: 230px;
	}
}

@media (max-width: 960px) {
	body {
		overflow: auto;
		background: #020617;
	}
	.btn {
		padding: 3px 5px;
		gap: 3px;
	}
	.screen {
		height: auto;
	}
	.dashboard{
		gap: 30px;
	}
    .dash-copy {
        min-height: 320px;
    }
	.main {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto;
		padding: 12px 16px 20px;
	}
	.side-panel {
		height: auto;
		min-height: 660px;
	}
	.dash-text-slide h1 {
		font-size: 24px;
	}
	.dashboard-bg-slide{
		background-position: 70%;	
	}
	.side-reserve-btn{
		width:93%;
	}
	.logo-text strong {
		font-size: 15px;
	}
	.btn-status span{
		font-size: 10px;
	}
	.btn-call a{
		font-size: 10px;
	}
	.header-center {
        display: none;
    }
	.mobile-nav {
		display: block;
	}
}

@media (max-width: 720px) {
	.header {
		padding-inline: 18px;
	}
	.dashboard {
		padding: 18px 18px 18px;
		grid-template-rows: auto auto auto;
	}
	.dash-main {
		grid-template-columns: minmax(0, 1fr);
	}
	.quick-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.bottom-bar {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		padding-bottom: 14px;
		gap: 4px;
	}
	.dash-ctas {
		margin-top: 140px;
	}
	.mobile-nav {
		display: block;
	}
}



/*가운데 박스: 병원소개 카드 레이아웃*/

.about-card {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	max-height: 85vh;
	max-width: 2000px;
	margin: auto;
	border-radius: 32px;
	background: rgba(248,250,252,0.96);
	box-shadow: 0 24px 55px rgba(15, 23, 42, 0.42);
	display: grid;
	grid-template-columns: 3fr 7fr;
	grid-template-rows: minmax(0, 1fr);
	align-items: stretch;
	overflow: hidden;
}

/* 카드 안쪽 전체에 은은한 배경 */
.about-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at -10% -10%, rgba(254,226,226,0.9), transparent 55%),
		radial-gradient(circle at 110% 110%, rgba(219,234,254,0.85), transparent 55%);
	opacity: 0.9;
	z-index: 0;
}

.about-left,
.about-right {
	position: relative;
	z-index: 1;
}

/* 왼쪽 세로 메뉴 영역 */
.about-left {
	padding: 22px 18px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	border-right: 1px solid rgba(148,163,184,0.35);
	background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.85));
	color: #e5e7eb;
}

.about-left-title {
	font-size: 18px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about-left-title span.sub {
	font-size: 11px;
	color: #9ca3af;
}

.about-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}

/* 메뉴 버튼 기본 스타일 */
.about-menu-item {
	--menu-bg: none;

	position: relative;
	border-radius: 18px;
	padding: 10px 12px;
	font-size: 13px;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 10px;
	background: radial-gradient(circle at 0 0, rgba(248,250,252,0.1), rgba(15,23,42,0.9));
	border: 1px solid rgba(148,163,184,0.4);
	transition:
		background 0.16s ease-out,
		transform 0.14s ease-out,
		box-shadow 0.14s ease-out,
		border-color 0.14s ease-out;
}

/* 메뉴 버튼 안 배경이미지 */
.about-menu-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--menu-bg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.2;
	mix-blend-mode: screen;
	z-index: -1;
}

.about-menu-item span.icon {
	font-size: 16px;
}

.about-menu-item span.text-main {
	font-weight: 500;
}

.about-menu-item span.text-sub {
	display: block;
	font-size: 11px;
	color: #cbd5f5;
}

.about-menu-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(15,23,42,0.9);
	border-color: transparent;
	background:
		linear-gradient(135deg, rgba(96,165,250,0.3), rgba(248,113,113,0.45));
}

.about-menu-item.active {
	border-color: transparent;
	background:
		linear-gradient(135deg, rgba(96,165,250,0.45), rgba(248,113,113,0.7));
	box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

/* 오른쪽 내용 영역 전체 - min-height:0으로 그리드 안에서 높이 제한 후 스크롤 가능 */
.about-right {
	position: relative;
	overflow: hidden;
	min-height: 0;
}

/* 오른쪽 큰 배경 (이미지 변경되는 부분) */
.about-bg-menu01 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom right, rgba(15,23,42,0.35), rgba(15,23,42,0.85)),
		url('/images/main01.jpg') center/cover no-repeat;
	filter: saturate(1.05);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}
.about-bg-menu02 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom right, rgba(15,23,42,0.35), rgba(15,23,42,0.85)),
		url('/images/bg_img_full_06.jpg') center/cover no-repeat;
	filter: saturate(1.05);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}
.about-bg-menu03 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom right, rgba(15,23,42,0.35), rgba(15,23,42,0.85)),
		url('/images/bg_img_full_10.jpg') center/cover no-repeat;
	filter: saturate(1.05);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}
.about-bg-menu04 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom right, rgba(15,23,42,0.35), rgba(15,23,42,0.85)),
		url('/images/food_img_01.jpg') center/cover no-repeat;
	filter: saturate(1.05);
	z-index: 0;
	transition: background-image 0.4s ease-out;
}


/* 초기 인트로 영역 */
.about-intro {
	position: absolute;
	inset: 0;
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	text-shadow: 0 18px 40px rgba(15,23,42,0.9);
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.4s ease-out,
		transform 0.4s ease-out;
	color: #f9fafb;
}

.about-intro.hidden {
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
}

.about-intro h2 {
	margin: 0;
	font-size: 30px;
	font-family: "Diphylleia", serif;
    font-style: italic;
	margin:0 0 10px;
}

.about-intro h2 strong {
	color: #fecaca;
}

.about-intro p {
	margin: 0;
	font-size: 14px;
	color: #e5e7eb;
    font-family: "Jua", sans-serif;
}

.about-intro-note {
	font-size: 20px !important;
	color: #dbeafe;
	margin-top:13px !important;
	font-family: "Dongle", sans-serif !important;
	font-weight: 400;
	font-style: normal;
}

.about-detail {
	position: absolute;
	inset: 0;
	padding: 26px 28px 26px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0;
	transform: translateX(24px);
	pointer-events: none;
	transition:
		opacity 0.35s ease-out,
		transform 0.35s ease-out;
	color: #f9fafb;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

/* 스크롤바 항상 보이게 + 두껍고 대비 높게 */
.about-detail::-webkit-scrollbar {
	width: 10px;
}

.about-detail::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	margin: 6px 0;
}

.about-detail::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.45);
	border-radius: 10px;
	border: 2px solid rgba(0, 0, 0, 0.15);
}

.about-detail::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.65);
}

.about-detail::-webkit-scrollbar-thumb:active {
	background: rgba(255, 255, 255, 0.85);
}

@supports (scrollbar-width: thin) {
	.about-detail {
		scrollbar-width: thin;
		scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.25);
	}
}


.about-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-slider-inner {
	position: relative;
	min-height: 300px;
	flex: 1;
	padding: 0 64px;
}

.about-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(40px);
	transition:
		opacity 0.5s ease-out,
		transform 0.5s ease-out;
	pointer-events: none;
	word-break: keep-all;
}

.about-slide.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.about-slider-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 12px;
	z-index: 20;
}

.about-slider-btn {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-inline: 0;
	pointer-events: auto;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	z-index: 21;
}

.about-slider-btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.about-slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
	margin-top: 0;
    padding-bottom: 10px;
}
.about-slider-dots2 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
	margin-top: 0;
    padding-bottom: 10px;
}

.about-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.4);
	outline: 0;
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-dot.is-active {
	width: 22px;
	background: #ffffff;
	transform: translateY(-1px);
}


@media (max-width: 980px){
	.about-menu{
		display:none;
	}
}

/*의료진*/

.doctor-filter{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin: 6px 0 18px;
}

.dept-btn{
	border:1px solid rgba(255,255,255,.25);
	background: rgba(15,23,42,.18);
	backdrop-filter: blur(10px);
	color:#fff;
	padding:10px 14px;
	border-radius: 999px;
	font-size: 14px;
	cursor:pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.dept-btn:hover{
	transform: translateY(-2px);
}

.dept-btn.is-active{
	background: rgba(35,166,182,.28);
	border-color: rgba(35,166,182,.45);
}

/* 카드 */
.doctor-grid{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.doctor-text{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
	width: 100%;
}
.doctor-item{
	display:flex;
	gap: 22px;
	padding: 22px;
	border-radius: 22px;
	background: rgba(255,255,255,.88);
	box-shadow: 0 14px 40px rgba(15,23,42,.15);
	border: 1px solid rgba(15,23,42,.08);
	transition: transform .25s ease, box-shadow .25s ease, opacity .35s ease, transform .35s ease;
}

.doctor-item:hover{
	transform: translateY(-6px);
	box-shadow: 0 22px 60px rgba(15,23,42,.22);
}

.doctor-photo{
	flex: 0 0 120px;
	height: 150px;
	border-radius: 16px;
	overflow:hidden;
	background:#e5e7eb;
}

.doctor-photo img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position: center 10%;
}

.doctor-role{
	display:inline-block;
	font-size: 15px;
	font-weight: 800;
	color: #23a6b6;
	margin-left:10px;
	margin-bottom: 6px;
    font-family: "Jua", sans-serif;
}

.doctor-name{
    font-size: 25px;
    letter-spacing: 5px;
	font-weight: 400;
	color: #0f172a;
	margin-left:10px;
	margin-bottom: 10px;
	/* font-family: "Diphylleia", serif;
    font-style: italic; */
    display: flex;
    flex-direction: row;
    align-items: baseline;
}
.doctor-name-sub{
	margin-left:5px;
	display:block;
	font-size: 16px;
	font-weight: 400;
	color: #0f172a;
	margin-bottom: 10px;
	/* font-family: "Diphylleia", serif; */
}


.doctor-actions{
	margin-top: 8px;
    display: flex;
    flex-direction: row;
	width: 100%;
}

.doctor-bio-btn{
	border: 1px solid rgba(15,23,42,.16);
	background: rgba(255,255,255,.70);
	color: #0f172a;
	padding: 8px 8px;
	margin: 3px 10px 0 0;
	width: 50%;
    height: 40px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 900;
	cursor:pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.doctor-bio-btn:hover{
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(15,23,42,.12);
	background: #ff9513;
}

.doctor-schedule-btn{
	border: 1px solid rgba(15,23,42,.16);
	background: rgba(255,255,255,.70);
	color: #0f172a;
	padding: 8px 8px;
	margin: 3px 0;
	width: 50%;
    height: 40px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 900;
	cursor:pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.doctor-schedule-btn:hover{
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(15,23,42,.12);
	background: #292939;
	color:#f7f7f7;
}

.doctor-item.is-hidden{ display:none; }

.doctor-item.is-reveal-ready{
	opacity: 0;
	transform: translateY(16px);
}

.doctor-item.is-revealed{
	opacity: 1;
	transform: translateY(0);
}

.doctor-modal{
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.doctor-modal.is-open{
	display: block;
}

.doctor-modal-dim{
	position: fixed;
	inset: 0;
	z-index: 0;
	background: rgba(2,6,23,.62);
	backdrop-filter: blur(10px);
}
.doctor-modal-dim{
	position: absolute;
	inset: 0;
	background: rgba(2,6,23,.62);
	backdrop-filter: blur(10px);
}

.doctor-modal-box{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) !important;
	max-width: calc(100vw - 40px);
	max-height: calc(100vh - 40px);
	overflow: auto;

	z-index: 1;

	width: min(550px, calc(100vw - 32px));
	max-height: min(78vh, 720px);
	overflow: hidden;

	border-radius: 22px;
	border: 1px solid rgba(255,255,255,.18);
	background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
	box-shadow: 0 30px 90px rgba(15,23,42,.42);

	animation: doctorModalIn .22s ease both;
}
@keyframes doctorModalIn{
	from { opacity: 0; transform: translateY(12px) scale(.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.doctor-modal-close{
	position:absolute;
	right: 14px;
	top: 14px;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	border: 1px solid rgba(15,23,42,.12);
	background: rgba(255,255,255,.75);
	cursor:pointer;
	font-size: 18px;
	font-weight: 900;
}

.doctor-modal-head{
	display:flex;
	gap: 14px;
	align-items:center;
	padding: 18px 18px 12px;
	border-bottom: 1px solid rgba(15,23,42,.10);
}

.doctor-modal-avatar{
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(35,166,182,.18);
	border: 1px solid rgba(35,166,182,.25);
	background-size: cover;
	background-position: center 10%;
}

.doctor-modal-role{
	font-size: 13px;
	font-weight: 900;
	color: #23a6b6;
}

.doctor-modal-name{
	font-size: 20px;
	font-weight: 900;
	color: #0f172a;
}

.doctor-modal-body{
	padding: 14px 18px 18px;
	overflow:auto;
	max-height: calc(min(78vh, 720px) - 86px);
    scrollbar-width: thin;
    scrollbar-color: rgb(255 255 255) rgb(219 219 219);
}

.doctor-modal-body ul{
	margin:0;
	padding-left: 16px;
	color:#334155;
	font-size: 14px;
	line-height: 1.75;
}

body.modal-lock{
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}

@media (max-width: 980px){
	.doctor-grid{ grid-template-columns: 1fr; }
	.doctor-photo{ flex-basis: 110px; height: 140px; }
	.doctor-text{ width:100%; }
	.doctor-actions{
		flex-direction: column;
	}
	.doctor-bio-btn{
		padding: 3px 12px;
		margin: 3px 10px 3px 0;
        width: 100%;
		height: 30px;
	}
	.doctor-schedule-btn{
		padding: 3px 12px;
		margin: 3px 10px 0 0;
        width: 100%;
		height: 30px;
	}
}






/* 미션/비전 세로 슬라이드 */
.eden-mv-wrapper {
	position: relative;
	padding: 16px;
	box-sizing: border-box;
}

.eden-mv-header {
	text-align: center;
	margin-bottom: 5px;
	font-family: "Diphylleia", serif;
	font-weight: 400;
	font-style: normal;
}

.eden-mv-kicker {
	color: #fefefe;
	font-size: 18px;
	margin-bottom: 4px;
}

.eden-mv-title {
	color: #f29286;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 6px;
}

.eden-mv-sub {
	color: #fefefe;
	font-size: 14px;
	margin: 0;
}

.eden-mv-slider {
	position: relative;
    max-width: 550px;
    margin: 0 auto;
    height: 370px;
    overflow: hidden;
}

.eden-mv-slider-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.6s ease;
	will-change: transform;
}

.eden-mv-slide {
	min-height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
}

.eden-mv-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.eden-mv-circle {
	width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	word-break: keep-all;
	font-family: "Dongle", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.eden-mv-circle h4 {
	font-family: "Jua", sans-serif;
	font-size: 25px;
	margin: 0 0 10px;
}

.eden-mv-circle .underline {
	width: 40px;
	height: 2px;
	margin-bottom: 14px;
}

.eden-mv-circle p,
.eden-mv-circle ul {
	font-size: 24px;
	line-height: 1.7;
	margin: 0;
	padding: 0;
}

.eden-mv-circle.mission {
	background: #f37c3d;
}

.eden-mv-circle.mission .underline {
	background: rgba(255,255,255,0.8);
}

.eden-mv-circle.vision {
	background: #2ca197;
}

.eden-mv-circle.vision .underline {
	background: rgba(255,255,255,0.8);
}

.eden-mv-circle.vision ul {
	list-style: none;
}

.eden-mv-dots {
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.eden-mv-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 2px solid rgb(255 255 255 / 35%);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.eden-mv-dot.is-active {
	background: #e25c4b;
	border-color: #e25c4b;
	transform: scale(1.2);
}

@media (max-width: 768px) {
	.eden-mv-header {
		margin-bottom: 8px;
	}
	.eden-mv-kicker {
		font-size: 16px;
	}
	.eden-mv-title {
		font-size: 22px;
	}
	.eden-mv-sub {
		font-size: 13px;
	}
	.eden-mv-slider {
		height: 320px;
	}
	.eden-mv-circle {
		width: 260px;
		height: 260px;
		padding: 28px 22px;
	}
	.eden-mv-circle p,
	.eden-mv-circle ul {
		font-size: 20px;
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	.eden-mv-wrapper {
		padding: 12px 12px 16px;
	}
	.eden-mv-slider {
		height: 300px;
	}
	.eden-mv-circle {
		width: 240px;
		height: 240px;
		padding: 24px 18px;
	}
	.eden-mv-circle h4 {
		font-size: 22px;
		margin-bottom: 8px;
	}
	.eden-mv-circle p,
	.eden-mv-circle ul {
		font-size: 18px;
		line-height: 1.4;
	}
}

@media (max-width: 768px) {
	.about-detail-main {
		padding-right: 0;
	}
	.about-slider-controls {
		display: none;
	}
	.about-slider-inner {
		padding: 0 48px;
	}
	.about-slider-btn {
		width: 28px;
		height: 28px;
	}
	.about-slider-dots {
		bottom: 12px;
	}
}

.about-detail.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.about-detail-main {
	max-width: 100%;
	/* padding: 30px 70px; */
	word-break: keep-all;
}

.about-slider-inner .about-detail-main img{
	margin-bottom: 20px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 10px;
}

.about-caption {
	font-size: 20px;
	color: #bfdbfe;
	margin-bottom: 4px;
	font-family: "Dongle", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.about-detail-title {
	font-size: 22px;
	margin: 0 0 10px;
	font-family: "Diphylleia", serif;
	font-weight: 400;
	font-style: normal;
}

.about-detail-title strong {
	color: #fecaca;
}

.about-detail-list {
	margin: 0;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.8;
	color: #e5e7eb;
	font-family: "Jua", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.about-detail-list li {
	margin-bottom: 4px;
}

.about-detail-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: #cbd5f5;
    padding-bottom: 30px;
}

.tag-pill {
	border-radius: 999px;
	padding: 4px 10px;
	border: 1px solid rgba(191,219,254,0.8);
	background: rgba(15,23,42,0.7);
	font-size: 11px;
}
@media (max-width: 768px) {
	.about-detail-footer {
		flex-direction: column;
		gap: 10px;
	}
}
@media (max-width: 960px) {
	.about-card {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
	}

	.about-right {
		min-height: 600px;
	}
		
}


/* 게시판형 보드 레이아웃 */
.board-panel {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 18px;
	overflow-y: auto;
	overflow-x: hidden;
}

.board-panel::-webkit-scrollbar {
	width: 8px;
}

.board-panel::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border-radius: 8px;
}

.board-panel::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(6px);
	border-radius: 8px;
	border: 2px solid rgba(255,255,255,0.1);
}

.board-panel::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.4);
}


.board-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 15px;
}

.board-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(15,23,42,0.85);
	color: #e5e7eb;
	border: 1px solid rgba(148,163,184,0.6);
}

.board-title {
	margin: 6px 0 4px;
	font-size: 20px;
}

.board-desc {
	margin: 0;
	font-size: 13px;
	color: #e5e7eb;
	opacity: 0.86;
}

.board-header-tools {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* 신생아앨범 검색 */
.board-header--album {
	align-items: center;
}
.board-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}
.album-search-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
}
.album-search-input {
	padding: 6px 10px;
	border-radius: 6px;
	border: 1px solid rgba(148,163,184,0.5);
	background: rgba(15,23,42,0.4);
	color: #e5e7eb;
	font-size: 13px;
	width: 160px;
	outline: none;
}
.album-search-input::placeholder {
	color: rgba(229,231,235,0.6);
}
.album-search-btn {
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid rgba(148,163,184,0.5);
	background: rgba(15,23,42,0.6);
	color: #e5e7eb;
	font-size: 12px;
	cursor: pointer;
	transition: background 0.18s ease;
}
.album-search-btn:hover {
	background: rgba(15,23,42,0.85);
}
.album-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: rgba(15,23,42,0.4);
	color: #e5e7eb;
	cursor: pointer;
	transition: background 0.18s ease;
}
.album-search-toggle:hover {
	background: rgba(15,23,42,0.7);
}
.album-search-toggle svg {
	flex-shrink: 0;
}

.board-filter {
	padding: 6px 10px;
	border-radius: 999px;
	border: 0;
	font-size: 11px;
	cursor: pointer;
	background: rgba(15,23,42,0.35);
	color: #e5e7eb;
	border: 1px solid rgba(148,163,184,0.5);
	transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.board-filter:hover {
	transform: translateY(-1px);
	background: rgba(15,23,42,0.65);
}

.board-filter.is-active {
	background: #f97316;
	color: #111827;
	border-color: transparent;
}

.board-write-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 11px;
	text-decoration: none;
	background: #f9fafb;
	color: #111827;
	border: 1px solid rgba(148,163,184,0.6);
	box-shadow: 0 6px 16px rgba(15,23,42,0.25);
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.18s ease;
}

.board-write-btn:hover {
	transform: translateY(-1px);
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(15,23,42,0.35);
}

.board-feed {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 18px;
	align-items: start;
	grid-auto-rows: auto;
}

.board-feed-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px 20px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	line-height: 1.6;
}

.board-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px 14px 12px;
	border-radius: 18px;
	background: rgba(15,23,42,0.78);
	border: 1px solid rgba(148,163,184,0.55);
	text-decoration: none;
	color: #f9fafb;
	box-shadow: 0 18px 35px rgba(15,23,42,0.6);
	transition:
		transform 0.16s ease-out,
		box-shadow 0.16s ease-out,
		border-color 0.16s ease-out,
		background 0.18s ease-out;
}

.board-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 50px rgba(15,23,42,0.85);
	border-color: rgba(251,191,36,0.9);
	background: radial-gradient(circle at top left, rgba(251,191,36,0.26), rgba(15,23,42,0.92));
}

.board-card-top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}

.board-card-top > div:nth-child(2){
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.board-avatar {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	background: radial-gradient(circle at 0 0, #f97316, #fb7185);
	color: #111827;
}

.board-author {
	font-size: 12px;
	font-weight: 600;
}

.board-meta {
	font-size: 11px;
	color: #cbd5f5;
}
.board-dt {
	font-size: 18px;
	font-weight: 600;
	margin: 0 5px;
	font-family: "Diphylleia", serif;
}
.board-feed--two .board-dt {
	width: 85%;
}

.board-file {
	margin-left: auto;
    border: 1px solid #dd770d;
    padding: 3px 10px;
    border-radius: 20px;
    background: #dd770d;
	white-space: nowrap;
	cursor:pointer;
	color:#333;
}


.board-card-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.board-card-body img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	margin-bottom: 10px;
	cursor:pointer;
}

.board-card-title {
	font-size: 12px;
	font-weight: 600;
    display: flex;
    justify-content: space-between;
}
.board-card-title--split {
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.board-card-title--split .board-card-title-text {
	flex: 1 1 0%;
	min-width: 0;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.board-card-title--split .board-meta {
	flex-shrink: 0;
	white-space: nowrap;
	align-self: flex-start;
}
.board-card-text {
	word-break: keep-all;
	font-size: 12px;
	color: #e5e7eb;
	opacity: 0.9;
	line-height: 1.5;
	max-height: 3.6em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


.bbs_text{
	position: relative;
	margin: 0;
	padding: 18px 18px 18px 35px;

	border-radius: 22px;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(15, 23, 42, 0.32);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 18px 50px rgba(0,0,0,0.28);

	color: rgba(255,255,255,0.78);
	font-size: 13px;
	line-height: 1.85;
	letter-spacing: -0.01em;

	white-space: pre-line;

	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bbs_text::before{
	content: "";
	position: absolute;
	left: 12px;
	top: 14px;
	bottom: 14px;
	width: 4px;
	border-radius: 999px;
	background: rgba(251,113,133,0.85);
	box-shadow: 0 0 0 6px rgba(251,113,133,0.12);
}

.bbs_text::first-line{
	font-weight: 900;
	color: rgba(255,255,255,0.92);
}

.bbs_text span{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 8px;
	margin: 0 2px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.86);
	font-size: 11px;
	font-weight: 900;
	vertical-align: baseline;
}

.bbs_text a{
	color: rgba(251,113,133,0.92);
	text-decoration: none;
	border-bottom: 1px solid rgba(251,113,133,0.35);
}
.bbs_text a:hover{
	border-bottom-color: rgba(251,113,133,0.65);
}


.board-card-footer {
	margin-top: 4px;
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: #cbd5f5;
	opacity: 0.9;
}

@media (max-width: 960px) {
	.board-header {
		flex-direction: column;
		align-items: flex-start;
		margin: 0 10px 10px;
	}

	.board-feed {
		grid-template-columns: 1fr;
	}
	
	.board-dt {
		font-size: 16px;
		width:75%;
	}

}

.board-card {
	cursor: pointer;
}

.board-card.is-open .board-card-text {
	-webkit-line-clamp: unset;
	max-height: none;
}

.board-card.is-open {
	border-color: rgba(251,191,36,1);
	background: radial-gradient(circle at top left, rgba(251,191,36,0.36), rgba(15,23,42,0.96));
	transform: translateY(-2px);
}



.board-comments {
	margin: 6px;
	padding-top: 8px;
	border-top: 1px solid rgba(148,163,184,0.5);
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		opacity 0.25s ease;
}

.board-card.is-open .board-comments {
	max-height: 260px;
	opacity: 1;
}

.board-comments-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 6px;
}

.board-comment {
	display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
	gap: 4px;
	font-size: 11px;
	color: #e5e7eb;
    border-top: 1px solid #87867e33;
    padding-top: 5px;
    padding-bottom: 2px;
}
.board-comments-list .board-comment:first-child {
    border-top: none;
    padding-top: 0;
}


.board-comment-reply {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
	font-size: 11px;
	color: #e5e7eb;
	margin-left: 3px;
	position: relative;
	padding-left: 12px;
}

.board-comment-reply::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 6px;
	height: 6px;
	border-left: 1.5px solid rgba(148,163,184,0.7);
	border-bottom: 1.5px solid rgba(148,163,184,0.7);
	border-radius: 2px;
	transform: translateY(1px);
}


.board-comment-author {
	min-width: 12%;
	font-weight: 600;
	letter-spacing :0.5px;
	padding:0 15px;
}

.board-comment-text {
	width: 79%;
	opacity: 0.95;
    margin: 0 10px;
	word-break: break-all;
}

.board-comment-meta {
    min-width: 6%;
    text-align: right;
	padding-right: 10px;
	font-size: 10px;
	opacity: 0.7;
}

.board-feed--two .board-comment-author {
    min-width: 20%;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

.board-feed--two .board-comment-text {
    width: 65%;
    opacity: 0.95;
    margin: 0 10px;
	word-break: break-all;
}

.board-feed--two .board-comment-meta {
    min-width: 7%;
    text-align: right;
    font-size: 10px;
    opacity: 0.7;
}

.board-comment-form {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-top: 6px;
	border-top: 1px dashed rgba(148,163,184,0.6);
	margin-top: 2px;
	flex-wrap: nowrap;
}

.board-comment-name {
	width: 10%;
	padding: 6px 8px;
	border-radius: 999px;
	border: 1px solid rgba(148,163,184,0.7);
	background: rgba(15,23,42,0.7);
	color: #f9fafb;
	font-size: 11px;
	outline: none;
	flex: 0 0 auto;
	margin: 0 4px 4px;
}
.board-feed--two .board-comment-name{
	width: 17%;
}

.board-comment-name::placeholder {
	color: rgba(148,163,184,0.9);
}

.board-comment-input {
	flex: 1;
	min-width: 0;
	padding: 6px 8px;
	border-radius: 999px;
	border: 1px solid rgba(148,163,184,0.7);
	background: rgba(15,23,42,0.7);
	color: #f9fafb;
	font-size: 11px;
	outline: none;
	margin: 0 4px 4px;
}

.board-comment-input::placeholder {
	color: rgba(148,163,184,0.9);
}



.board-comment-submit {
	padding: 5px 10px;
	margin-left: 10px;
	border-radius: 999px;
	border: 0;
	font-size: 11px;
	cursor: pointer;
	background: #f97316;
	color: #fff;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(15,23,42,0.65);
	transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.board-comment-submit:hover {
	transform: translateY(-1px);
	background: #fdba74;
	box-shadow: 0 6px 14px rgba(15,23,42,0.8);
}

@media (max-width: 960px) {
	.board-comments {
		max-height: 320px;
	}
	
	.board-comment-author {
        min-width: 20%;
        padding: 0 0 0 5px;
	}

	.board-comment-text {
        min-width: 55%;
        max-width: 60%;
	}

	.board-comment-meta {
		min-width: 17% !important;
	}

	.board-comment-name {
		width: 18%;
	}
}


.board-feed {
	display: grid;
	gap: 18px;
	align-items: start;
}

.board-feed--full {
	grid-template-columns: minmax(0, 1fr);
}

.board-feed--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-feed--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
	.board-feed--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.board-feed--two,
	.board-feed--three,
	.board-feed--full {
		grid-template-columns: minmax(0, 1fr);
	}
}

.board-card {
	align-self: start;
}
.board-card-text {
	margin: 4px 0 0;
	font-size: 12px;
	color: #e5e7eb;
	opacity: 0.92;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 4.6em;
}

.board-card.is-open .board-card-text {
	-webkit-line-clamp: unset;
	max-height: none;
}

.board-feed--full .board-card-text {
	-webkit-line-clamp: unset;
	max-height: none;
	display: block;
}

.board-comments {
	margin-top: 6px;
	padding-top: 8px;
	border-top: 1px solid rgba(148,163,184,0.5);
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.25s ease;
}

.board-card.is-open .board-comments {
	max-height: 260px;
	opacity: 1;
}

.board-feed--full .board-card .board-comments {
	max-height: none;
	opacity: 1;
}

.board-feed--full .board-card {
	cursor: default;
}

/* index접근시 최초 노출하는 웰컴 오버레이 - 지금은 안쓰지만 나중에 쓸지도 모름 */
.welcome-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: radial-gradient(circle at 10% 0%, #75b8ff 0%, #f297ef 55%, #f87272 100%);
	color: #f9fafb;
	font-family: "Jua", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	opacity: 1;
	pointer-events: auto;

	clip-path: circle(140% at 50% 50%);
}

.welcome-bg-gradient {
	position: absolute;
	inset: -40%;
	background:
		radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.46) 0%, transparent 50%),
		radial-gradient(circle at 100% 0%, rgba(244, 114, 182, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 50% 100%, rgba(45, 212, 191, 0.45) 0%, transparent 55%);
	filter: blur(2px);
	opacity: 0.9;
}

.welcome-decoration {
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba(248, 250, 252, 0.16);
	mix-blend-mode: screen;
}

.welcome-decoration.d1 {
	width: 180px;
	height: 180px;
	top: 12%;
	left: 10%;
	background: radial-gradient(circle at 30% 10%, rgba(248, 250, 252, 0.4) 0%, transparent 60%);
	animation: welcomeFloat1 16s ease-in-out infinite;
}

.welcome-decoration.d2 {
	width: 260px;
	height: 260px;
	bottom: 8%;
	right: 18%;
	background: radial-gradient(circle at 80% 90%, rgba(248, 250, 252, 0.25) 0%, transparent 60%);
	animation: welcomeFloat2 20s ease-in-out infinite;
}

.welcome-decoration.d3 {
	width: 120px;
	height: 120px;
	bottom: 22%;
	left: 26%;
	background: radial-gradient(circle at 10% 50%, rgba(248, 250, 252, 0.35) 0%, transparent 60%);
	animation: welcomeFloat3 18s ease-in-out infinite;
}

@keyframes welcomeFloat1 {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50%      { transform: translate3d(18px, 14px, 0); }
}

@keyframes welcomeFloat2 {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50%      { transform: translate3d(-22px, -10px, 0); }
}

@keyframes welcomeFloat3 {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50%      { transform: translate3d(-10px, 18px, 0); }
}

.welcome-inner {
	position: relative;
	z-index: 1;
	padding: 33px 50px 30px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 0% 0%, rgb(0 246 255 / 37%) 0%, transparent 60%),
		linear-gradient(135deg, rgb(89 113 173 / 96%), rgb(0 7 81 / 88%));
	border: 1px solid rgba(148, 163, 184, 0.5);
	box-shadow:
		0 32px 80px rgba(15, 23, 42, 0.9),
		0 0 0 1px rgba(15, 23, 42, 0.6);

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 32px;

	min-width: min(560px, 96vw);
	overflow: hidden;

	animation: welcomeCardIntro 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
	transform-origin: center center;
}

@keyframes welcomeCardIntro {
	0% {
		opacity: 0;
		transform: translateY(12px) scale(0.97);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.welcome-logo-wrapper {
	position: relative;
	flex: 0 0 auto;
}

.welcome-logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 10px;
	border-radius: 999px;
	background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.22) 0%, transparent 60%);
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(248, 250, 252, 0.25);
}

.welcome-logo .logo-mark img {
	display: block;
	height: 32px;
	width: auto;
}

.welcome-logo span {
	font-size: 15px;
	font-weight: 600;
}

.welcome-text {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;

	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;

	color: #e5e7eb;
	opacity: 0;
	transform: translateY(12px);
	animation: welcomeTextIn 1s ease-out forwards;
	animation-delay: 0.5s;
}

@keyframes welcomeTextIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.welcome-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.6);
	color: #e5e7eb;
	margin-bottom: 10px;
	align-self: flex-end;
}

.welcome-tag::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, #bef264 0%, #22c55e 40%, #16a34a 100%);
	box-shadow: 0 0 14px rgba(22, 163, 74, 0.7);
}

.welcome-title {
	font-family: "Diphylleia", "Noto Sans KR", system-ui, sans-serif;
	font-size: 28px;
	line-height: 1.4;
	color: #f9fafb;
	margin: 0 0 6px;
	text-align: right;
}

.welcome-sub {
	margin: 0;
	font-size: 18px;
	color: #cbd5f5;
	margin-top: 20px;
	text-align: right;
}

.welcome-skip {
	position: absolute;
	right: 32px;
	bottom: 32px;
	z-index: 2;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.8);
	background: rgba(15, 23, 42, 0.85);
	color: #e5e7eb;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.12s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
}

.welcome-skip::after {
	content: "↗";
	font-size: 12px;
}

.welcome-skip:hover {
	background: rgba(15, 23, 42, 0.96);
	border-color: rgba(248, 250, 252, 0.9);
	color: #f9fafb;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
	transform: translateY(-1px);
}

.welcome-overlay.exit .welcome-inner {
	animation: welcomeCardBurst 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes welcomeCardBurst {
	0% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
	40% {
		opacity: 1;
		transform: translateY(-4px) scale(1.06);
		filter: blur(1px);
	}
	100% {
		opacity: 0;
		transform: translateY(-10px) scale(1.2);
		filter: blur(16px);
	}
}

.welcome-overlay.exit {
	animation: welcomeOverlayIrisOut 1.1s ease-in-out forwards;
}

@keyframes welcomeOverlayIrisOut {
	0% {
		opacity: 1;
		clip-path: circle(140% at 50% 50%);
	}
	60% {
		opacity: 1;
		clip-path: circle(0% at 50% 50%);
	}
	100% {
		opacity: 0;
		clip-path: circle(0% at 50% 50%);
	}
}

.welcome-overlay.is-hidden {
	opacity: 0;
	pointer-events: none;
}

/* 반응형 최소 */
@media (max-width: 640px) {
	.welcome-inner {
		min-width: 90vw;
		padding: 24px 18px 30px;
		border-radius: 22px;
		gap: 20px;
	}
	.welcome-title {
		font-size: 20px;
	}
	.welcome-sub {
		font-size: 15px;
	}
	.welcome-skip {
		right: 18px;
		bottom: 20px;
	}
}

/* 타이핑 커서 효과 */
.typing-cursor::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 1.2em;
	background: #ffffff;
	margin-left: 4px;
	animation: typingCursorBlink 0.8s infinite;
}

@keyframes typingCursorBlink {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0; }
}





/* ===== QnA 모달 공통 ===== */
.qnaModal{
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}
.qnaModal.is-open{ display:block; }

.qnaModal__backdrop{
	position:absolute;
	inset:0;
	background: rgba(0,0,0,0.60);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.qnaModal__panel{
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%,-50%);
	width: min(520px, calc(100vw - 28px));
	max-height: calc(100vh - 28px);
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(15, 23, 42, 0.86);
	box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}
.qnaModal__panel--wide{
	width: min(880px, calc(100vw - 28px));
}

.qnaModal__head{
	display:flex;
	align-items:center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.10);
}
.qnaModal__title{
	font-size: 14px;
	font-weight: 900;
	color: rgba(255,255,255,0.92);
	letter-spacing: -0.01em;
}
.qnaModal__close{
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.92);
	cursor:pointer;
	font-weight: 900;
}

.qnaModal__body{
	padding: 16px;
	max-height: calc(100vh - 120px);
	overflow: auto;
}

.qnaModal__desc{
	margin: 0 0 12px;
	font-size: 12.5px;
	line-height: 1.55;
	color: rgba(255,255,255,0.72);
}

.qnaModal__actions{
	margin-top: 14px;
	display:flex;
	justify-content:flex-end;
	gap: 10px;
}

.qnaBtn{
	appearance:none;
	border-radius: 14px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 900;
	cursor:pointer;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.92);
}
.qnaBtn--ghost:hover{ background: rgba(255,255,255,0.10); }

.qnaBtn--accent{
	border-color: rgba(251,113,133,0.30);
	background: rgba(251,113,133,0.14);
}
.qnaBtn--accent:hover{ background: rgba(251,113,133,0.18); }

.qnaInput, .qnaSelect, .qnaTextarea{
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.14);
    background: rgb(56 55 63 / 89%);
	color: rgba(255,255,255,0.92);
	padding: 12px 12px;
	font-size: 13px;
	outline: none;
}
.qnaTextarea{ resize: vertical; min-height: 120px; }
.qnaInput::placeholder, .qnaTextarea::placeholder{ color: rgba(255,255,255,0.45); }

.qnaModal__hint{
	margin: 10px 0 0;
	font-size: 12px;
	color: rgba(255,255,255,0.64);
}

.qnaViewMeta{
	display:flex;
	align-items:flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.qnaViewAuthor{ font-weight: 900; color: rgba(255,255,255,0.92); }
.qnaViewSub{ font-size: 12px; color: rgba(255,255,255,0.66); margin-top: 4px; }

.qnaStatus{
	display:inline-flex;
	align-items:center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.86);
	white-space: nowrap;
}
.qnaStatus.is-done{
	border-color: rgba(52,211,153,0.28);
	background: rgba(52,211,153,0.14);
}

.qnaBox{
	margin-top: 12px;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(0,0,0,0.16);
	padding: 14px;
}
.qnaBox__label{
	font-size: 12px;
	font-weight: 900;
	color: rgba(255,255,255,0.76);
	margin-bottom: 8px;
}
.qnaBox__content{
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255,255,255,0.88);
	white-space: pre-wrap;
}

.qnaBox--answer{
	border-color: rgba(52,211,153,0.22);
	background: rgba(52,211,153,0.06);
}

.qnaAnswerMeta{
	display:flex;
	align-items:center;
	gap: 8px;
	margin: 0 0 10px;
	color: rgba(255,255,255,0.70);
	font-size: 12px;
}
.qnaAnswerAuthor{ font-weight: 900; color: rgba(255,255,255,0.88); }
.qnaAnswerDot{ opacity: 0.6; }

.qnaForm{ position: relative; }
.qnaGrid{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}
.qnaGrid > .qnaField{ margin-bottom: 0; }
.qnaField{ display:block; margin-bottom: 12px; }
.qnaLabel{
	display:block;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 900;
	color: rgba(255,255,255,0.76);
}

.qnaCaptcha{
	display:flex;
	align-items:center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 12px;
	border-radius: 18px;
	border: 1px dashed rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.04);
	margin-top: 6px;
}
.qnaCaptcha--inGrid{
	margin-top: 0;
	flex-wrap: wrap;
}
.qnaCaptcha--inGrid .qnaInput{
	min-width: 0;
	flex: 1 1 100px;
}
.qnaCaptcha__q{
	display:flex;
	align-items:center;
	gap: 10px;
	color: rgba(255,255,255,0.82);
	font-weight: 900;
	min-width:150px;
}
.qnaCaptcha__badge{
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(0,0,0,0.18);
	font-size: 11px;
}

/* 등록 완료 오버레이 */
.qnaDone{
	position: absolute;
	inset: 0;
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	gap: 14px;
	background: rgba(15, 23, 42, 0.92);
	border-radius: 16px;
}

.qnaDone__spinner{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 4px solid rgba(255,255,255,0.18);
	border-top-color: rgba(251,113,133,0.90);
	animation: qnaSpin 1s linear infinite;
}
@keyframes qnaSpin{
	to{ transform: rotate(360deg); }
}
.qnaDone__text{
	text-align:center;
}
.qnaDone__text strong{
	display:block;
	font-size: 14px;
	font-weight: 900;
	color: rgba(255,255,255,0.92);
	margin-bottom: 6px;
}
.qnaDone__text p{
	margin: 0;
	font-size: 12.5px;
	color: rgba(255,255,255,0.70);
}

@media (max-width: 860px){
	.qnaGrid{ grid-template-columns: 1fr; }
}

/* 미답변텍스트 */
.qnaStatusTag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: #767a7f;
    color: #adbbc8;
    font-size: 12px;
    font-weight: 700;
}

/* 답변완료텍스트 */
.qnaStatusTag.is-answered {
    background-color: #e0f2fe;
    color: #0284c7;
}

.board-card-text,
.bbs_text {
	text-indent: 0 !important;
	white-space: normal;
}
.board-card-text::first-line{
}



/* 패널부분 */
.res-modal-overlay {
	display: none; 
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 10000;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.res-modal-overlay.open {
	display: flex;
	opacity: 1;
}

.res-modal-container {
	background: #2b2b2b;
	width: 90%;
	max-width: 620px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	transform: translateY(20px);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	max-height: 90vh;
	overflow-y: auto;
	color: #fff;
}
.res-modal-overlay.open .res-modal-container {
	transform: translateY(0);
	scrollbar-width: thin;
	scrollbar-color: #818181 #414141;
}
.res-modal-container.small { max-width: 400px; }

.res-modal-header {
	background: #1e1e1e;
	padding: 18px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #444;
	font-family: "Diphylleia", serif;
    font-style: italic;
}
.res-modal-header h3 { margin: 0; font-size: 18px; color: #fff; font-weight: 600; }
.res-modal-small-text { font-size: 12px; color: #ffdd34; font-weight: 400; }
.res-close-modal { cursor: pointer; font-size: 24px; color: #888; transition: color 0.2s; }
.res-close-modal:hover { color: #fff; }
.res-modal-body { padding: 20px; position: relative; min-height: 300px;}

.res-step-section { 
	display: none; 
	animation: resSlideInRight 0.4s ease forwards; 
}
.res-step-section.active { display: block; }

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

.res-fade-in-anim { animation: resFadeIn 0.4s ease forwards; }
@keyframes resFadeIn {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.res-form-area-slide {
	display: none;
	margin-top: 20px;
	border-top: 1px solid #444;
	animation: resSlideDown 0.4s ease forwards;
}
@keyframes resSlideDown {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

.res-btn-confirm, .res-btn-submit {
	background: linear-gradient(135deg, #ff6b6b, #ff4757);
	color: white;
	border: none;
	padding: 14px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	font-size: 15px;
	width: 100%;
	margin-top: 15px;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	transition: all 0.2s ease;
}
.res-btn-confirm:hover, .res-btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

/* 예약내역 확인하기 — 코랄 예약 버튼과 구분 (노란 바탕·검정 글씨) */
.res-btn-lookup-history {
	background: #d1d1d1;
	color: #111;
	border: none;
	padding: 7px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	font-size: 15px;
	width: 100%;
	margin-top: 15px;
	box-shadow: 0 4px 14px rgb(137 137 137 / 45%);
	transition: all 0.2s ease;
}
.res-btn-lookup-history:hover {
	transform: translateY(-2px);
	background: #fccc89;
	color: #000;
	box-shadow: 0 6px 18px rgba(255, 201, 77, 0.5);
}

.res-btn-xs {
	font-size: 11px;
	padding: 5px 10px;
	background: #444;
	color: #ddd;
	border: 1px solid #555;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.2s;
}
.res-btn-xs:hover { background: #555; color: #fff; }

.res-input-field {
	width: 100%;
	padding: 12px;
	background: #3b3b3b;
	border: 1px solid #555;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	transition: 0.2s;
	box-sizing: border-box;
	margin-bottom: 12px; 
}
.res-input-field-label {
	margin-bottom:10px;
	font-family: "Black Han Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
}
.res-input-field:focus {
	border-color: #ff6b6b;
	outline: none;
	background: #444;
}
.res-input-group { display: flex; gap: 10px; }

.res-msg-box {
	text-align: center;
    padding: 30px 0 0;
	font-family: "Jua", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.res-guide-text { font-size: 18px; color: #ddd; margin-bottom: 20px; }
.res-icon-deco { font-size: 40px; margin-bottom: 20px; opacity: 0.8; display:flex; justify-content: center; }

.res-section-title {
	margin-top:0;
	margin-bottom: 15px;
	font-weight: 500;
	color:#ddd; 
	font-family: "Jua", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.res-doctor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
@media (max-width: 480px) { .res-doctor-grid { grid-template-columns: repeat(3, 1fr); } }

.res-doctor-card {
	background: #3b3b3b;
	border: 1px solid #444;
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
}
.res-doctor-card:hover {
	border-color: #ff6b6b;
	background: #444;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.res-doctor-img {
	width: 60px; height: 60px;
	background-color: #555;
	border-radius: 50%;
	margin: 0 auto 8px;
	background-size: cover;
	background-position: center;
	border: 2px solid #555;
}
.res-doctor-card:hover .res-doctor-img { border-color: #ff6b6b; }
.res-doctor-name { font-size: 13px; font-weight: bold; color: #eee; margin-bottom: 2px;}
.res-doctor-dept { font-size: 11px; color: #aaa; }

.res-selected-doctor-info {
	background: #383838;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 8px;
	border-left: 4px solid #ff6b6b;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.res-highlight-text { color: #ff6b6b; font-weight: bold; font-size: 16px; }

.res-calendar-wrapper { text-align: center; padding: 0 10px; }
.res-calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.res-cal-nav-btn {
	background: #444;
	border: none;
	color: #fff;
	width: 30px; height: 30px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.2s;
	display: flex; align-items: center; justify-content: center;
}
.res-cal-nav-btn:hover { background: #666; }
#currentMonthYear { font-size: 16px; font-weight: bold; color:#fff; }

.res-calendar-days { 
	display: grid; grid-template-columns: repeat(7, 1fr); 
	margin-bottom: 10px; color: #888; font-size: 12px; font-weight: bold;
}
.res-calendar-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }

.res-date-cell {
	height: 35px;
	display: flex; align-items: center; justify-content: center;
	font-size: 13px;
	cursor: pointer;
	border-radius: 8px;
	transition: 0.2s;
	color: #ddd;
}

.btn-submit:disabled, .disabled-btn {
    background: #666 !important;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
select:disabled {
    background: #2a2a2a;
    color: #777;
    cursor: not-allowed;
    border-color: #444;
}
.res-date-cell:hover:not(.disabled) { background: #555; color: #fff; transform: scale(1.1); }
.res-date-cell.disabled { color: #555; cursor: not-allowed; opacity: 0.5; }
.res-date-cell.selected { background: #ff9513; color: white !important; box-shadow: 0 0 10px rgba(255, 107, 107, 0.5); }
.res-date-cell.today { border: 1px solid #ff6b6b; color: #ff6b6b; }

.res-terms-area { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #ccc; }
.res-view-terms { color: #999; cursor: pointer; border-bottom: 1px solid #999; }
.res-terms-text { height: 200px; overflow-y: scroll; background:#333; padding: 10px; font-size: 12px; line-height: 1.5; color: #ccc; border-radius: 4px; border:1px solid #444; scrollbar-width: thin; scrollbar-color: #818181 #414141;}

.res-modal-container ::-webkit-scrollbar { width: 10px; height: 10px; }
.res-modal-container ::-webkit-scrollbar-track { background: #1e293b; border-radius: 5px; }
.res-modal-container ::-webkit-scrollbar-thumb { background: #475569; border-radius: 5px; border: 2px solid #1e293b; }
.res-modal-container ::-webkit-scrollbar-thumb:hover { background: #64748b; }
.res-modal-container ::-webkit-scrollbar-thumb:active { background: #94a3b8; }
.res-modal-container ::-webkit-scrollbar-corner { background: #1e293b; }

/* 예약 검증 모달 아이콘 애니메이션 */
.validation-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
    color: #ffbdbd;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(248,113,113,0.9);
    animation: validationBounce 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
    transform-origin: center bottom;
    padding: 30px 0;
}

@keyframes validationBounce {
    0%   { transform: translateY(0) scale(1)    rotate(0deg);   opacity: 0.9; }
    20%  { transform: translateY(-10px) scale(1.18) rotate(-6deg); opacity: 1; }
    40%  { transform: translateY(0) scale(1.05) rotate(5deg);  opacity: 1; }
    60%  { transform: translateY(-6px) scale(1.12) rotate(-3deg); opacity: 1; }
    80%  { transform: translateY(0) scale(1.02) rotate(2deg);  opacity: 1; }
    100% { transform: translateY(-2px) scale(1.06) rotate(0deg);  opacity: 1; }
}


/* 성공 모달 스타일 */
.success-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); z-index: 99999999;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(2px);
}
.success-box {
    background: #fff; padding: 30px 50px; border-radius: 12px;
    text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: popIn 0.3s ease-out forwards;
    transform: scale(0.8); opacity: 0;
}
.success-text {
    margin-top: 15px; font-size: 18px; font-weight: bold; color: #333;
}
@keyframes popIn {
    to { transform: scale(1); opacity: 1; }
}

/* 체크 애니메이션 (CSS Only) */
.success-checkmark { width: 80px; height: 80px; margin: 0 auto; position: relative; }
.check-icon { width: 80px; height: 80px; position: relative; border-radius: 50%; box-sizing: content-box; border: 4px solid #4CAF50; }
.check-icon::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; animation: rotate-circle 4.25s ease-in; }
.check-icon::after { content: ''; position: absolute; width: 60px; height: 120px; background: #fff; transform: rotate(45deg); top: -20px; left: 30px; animation: icon-fix 0.7s ease-in; opacity: 0; } 

.line-tip { top: 46px; left: 14px; width: 25px; transform: rotate(45deg); animation: icon-line-tip 0.75s; }
.line-long { top: 38px; right: 8px; width: 47px; transform: rotate(-45deg); animation: icon-line-long 0.75s; }
.icon-line { height: 5px; background-color: #4CAF50; display: block; border-radius: 2px; position: absolute; z-index: 10; }
.icon-circle { top: -4px; left: -4px; z-index: 10; width: 80px; height: 80px; border-radius: 50%; position: absolute; box-sizing: content-box; border: 4px solid rgba(76, 175, 80, .5); }
.icon-fix { top: 8px; width: 5px; height: 85px; position: absolute; left: 28px; transform: rotate(-45deg); z-index: 1; background-color: #fff; opacity: 0; }

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}
@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

.feed-temp-loader, .feed-loader {
	grid-column: 1 / -1 !important;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	clear: both;
	font-weight: bold;
	color: #d3d3d3;
	  font-family: "Jua", sans-serif;
}


/* [게시판 텍스트 줄임 기능 - 최종 수정판] */

/* 1. 펼쳐진 상태 (기본) - 원래 디자인대로 다 보여줌 */
.bbs_text {
    display: block;
    margin-top: 15px;
    line-height: 1.6;
}

/* 2. 닫힌 상태 (:not(.is-expanded)) - 여기가 핵심입니다! */
.board-card:not(.is-expanded) .bbs_text {
    /* 1줄 자르기 강제 적용 */
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    overflow: hidden !important;
    max-height: 1.6em !important; /* 높이 강제 제한 */
    
    /* 기존 박스 스타일(배경, 테두리) 무력화 */
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 5px !important;
    margin-top: 10px !important;
    /* margin-left: 5px !important; */
    font-size: 13px;
}
.bbs_text::before{
    box-shadow: none;
}

/* ★ 억까 방지 코드: 닫혀있을 땐 내부의 모든 태그(p, div, blockquote 등)를 그냥 '글자'로 만듦 */
.board-card:not(.is-expanded) .bbs_text * {
    display: inline !important;       /* 블록 성질 제거 (줄바꿈 방지) */
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important; /* 배경색 제거 */
    border: none !important;          /* 테두리(핑크색 바 등) 제거 */
    font-size: inherit !important;
    font-weight: normal !important;
    box-shadow: none !important;
}

/* 3. 이미지 미리보기 박스 (기존 코드 유지) */
.board-img-preview {
    display: none !important;
    margin: 15px 0;
    text-align: center;
}
.board-img-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
/* 펼쳐졌을 때만 이미지 보임 */
.board-card.is-expanded .board-img-preview {
    display: block !important;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}



/* [검색 모달 디자인] */
.search-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; display: none;
}
.search-modal.is-open { display: block; }

.search-modal-backdrop {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(3px);
}

.search-modal-panel {
position: absolute;
    
    /* [수정] 화면 정중앙 배치 코드 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100%;
    max-width: 60%; 
	min-height: 300px;
    height: auto; /* 내용만큼만 높이 잡기 (또는 500px 등 고정) */
    max-width: 40%;
    min-height: 400px;

    
    background: rgba(3,3,3,0.3);
    display: flex;
    flex-direction: column;
    border-radius: 20px; /* 박스 느낌 */
}

/* 검색 헤더 */
.search-header {
    padding: 15px; border-bottom: 1px solid #9a91ab;
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(90deg, #597d83, #7a5e81, #445875);
    border-radius: 20px 20px 0 0;
}
.search-input-wrap {
    flex: 1; position: relative;
    background: #f1f3f5; border-radius: 20px;
    padding: 8px 15px; display: flex; align-items: center; gap: 8px;
}
.search-input-wrap input {
    border: none; background: transparent; outline: none;
    font-size: 15px; width: 100%; color: #333;
}
.search-clear { font-size: 14px; color: #999; cursor: pointer; }
.search-close-btn { font-size: 15px; color: #fff; font-weight: bold; background:none; border:none; cursor:pointer; }

/* 검색 바디 */
.search-body { flex: 1; overflow-y: auto; padding: 20px; background: rgb(193 193 193 / 30%); border-radius: 0 0 20px 20px;}
.search-section-title {
    font-size: 14px; font-weight: bold; color: #fff;
    margin-bottom: 15px; display: flex; justify-content: space-between;
}

/* 최근 검색어 칩(Chip) 스타일 */
.recent-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.recent-tag {
    background: linear-gradient(90deg, #8d8d8d, #656565);
    border: 1px solid #b3b3b3;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}
.recent-tag:hover { border-color: #aaa; background: #000; }
.recent-tag .del { color: #ccc; font-size: 16px; line-height: 1; margin-left: 4px; }
.recent-tag .del:hover { color: #ff4d4d; }
.no-recent { width: 100%; text-align: center; color: #aaa; font-size: 13px; margin-top: 20px; }

/* 검색 결과 영역 (기존 board-card 스타일 재사용) */
#searchFeed .board-card { margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

/* [검색 결과 그룹 타이틀 스타일] */
.search-group-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 50px 0 0px 0;
    padding-bottom: 10px;
    border-bottom: 2px dashed #e7e7e7;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #597d83b8, #7a5e81bd, #445875ba);
    padding: 7px 10px;
    border-radius: 10px 10px 0 0;
}
/* 첫 번째 타이틀은 위쪽 여백 제거 */
.search-group-title:first-child {
    margin-top: 0;
}
.search-group-title span {
    font-size: 13px;
    color: #e3e3e3;
    font-weight: normal;
    margin-left: auto; /* 개수 표시를 우측 끝으로 보냄 */
}


.btn-search-trigger {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  
  /* 유리 효과 핵심 */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  
  color: #fff; /* 배경이 어두울 경우 */
  /* color: #333; 배경이 밝을 경우 이 주석을 해제하세요 */
  
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-search-trigger .icon {
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* 아이콘 가독성 확보 */
}

.btn-search-trigger:active {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0.95);
}

.filter-empty-msg{
    text-align: center;
    color: #fff;
    width: 100%;
    position: absolute;
    padding-top: 32%;
}

@media (max-width: 960px) {
	.search-modal-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(3, 3, 3, 0.3);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        min-height: 100%;
        transform: none;
        border-radius: 0px;
	}
	.search-body{
        border-radius: 0px;
	}
	.search-header{
        border-radius: 0px;
	}

	.filter-empty-msg{
		padding-top: 35%;
	}

}



/* 팝업 레이어 */

.layer-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    display: none;
}

.layer-popup {
    position: fixed;
    z-index: 99999;
    background: #fff;
    border-radius: 24px 24px 0 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.layer-popup-body {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.layer-popup-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
	touch-action: pan-y;
}

.layer-popup-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
	background: #10182b;
}

.popup-navigator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 20px;
    padding: 3px 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.popup-navigator button {
    background: transparent; border: none; color: #fff;
    font-size: 16px; font-weight: bold; cursor: pointer; padding: 0;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
}
.popup-navigator button:hover { color: #ffeb3b; }

.layer-popup-image {
    width: 100%; height: auto; display: block;
    border-radius: 24px 24px 0 0;
}

.layer-popup-content.overlay-text {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 24px; text-align: center; box-sizing: border-box;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8); 
    color: #fff; font-family: "Jua", sans-serif;
}
.layer-popup-content.no-image-text {
    padding: 40px 24px; text-align: center; color: #333; font-size: 16px; line-height: 1.6;
    display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 150px;
}

.layer-popup-footer {
    background: #10182b; border: none; padding: 14px;
    display: flex; flex-direction: row-reverse; align-items: center; justify-content: space-between;
}

.btn-confirm {
    background: #6236FF !important; color: #fff !important; border: none !important;
    padding: 5px 20px !important; border-radius: 14px !important; font-size: 12px !important;
    font-weight: bold !important; cursor: pointer;
}

.btn-close-today {
    background: transparent !important; border: none !important; color: #f6f6f6 !important;
    font-size: 11px !important; text-decoration: underline !important;
    text-underline-offset: 4px; cursor: pointer; padding: 5px !important;
}


@keyframes popupSlideUpPc {
    from { transform: translateY(150%); }
    to { transform: translateY(0); }
}
@keyframes popupSlideUpMobile {
    from { transform: translate(-50%, -35%); opacity: 0; }
    to { transform: translate(-50%, -50%); opacity: 1; }
}
@keyframes backdropFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes popupSlideDownPc {
    from { transform: translateY(0); }
    to { transform: translateY(150%); }
}
@keyframes popupFadeOutMobile {
    from { opacity: 1; transform: translate(-50%, -50%); }
    to { opacity: 0; transform: translate(-50%, -50%); }
}
.popup-entering-pc {
    animation: popupSlideUpPc 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
    background: #ffffff00;
}
.popup-entering-mobile {
    animation: popupSlideUpMobile 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
    background: #ffffff00;
}
.backdrop-entering {
    animation: backdropFadeIn 0.4s ease forwards !important;
}

.popup-closing-pc {
    animation: popupSlideDownPc 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
}

.popup-closing-mobile {
	animation: popupFadeOutMobile 0.8s ease forwards !important;
}

body.popup-no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

@media (min-width: 721px) {
    .layer-popup {
        width: 320px;
        top: auto !important;
        left: auto !important;
        bottom: 0 !important;
        right: 27px !important;
        transition: transform 0.5s ease;
    }
}

@media (max-width: 720px) {
    .layer-popup-footer {
		background: #fefefe;
        flex-direction: column;
        align-items: center;
    }
	.btn-close-today{
		color: #3e3e3e !important;
		font-size: 14px !important;
	}
    .btn-confirm {
		font-size: 15px !important;
        padding: 16px 0 !important; width: 100%; margin-bottom: 10px !important;
    }
    .layer-popup {
        top: 50% !important; left: 50% !important;
        transform: translate(-50%, -50%);
        width: 85% !important; height: auto !important;
        max-height: 90vh; overflow-y: auto;
		border-radius: 24px !important;
    }
}

.eden-precsch-wrap {
    max-width: 100%;
    padding: 0.25rem 0 0.5rem;
}
.eden-precsch-wrap .eden-precsch-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.eden-precsch-wrap .eden-precsch-title-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}
.eden-precsch-wrap .eden-precsch-title-row .about-caption {
    margin: 0;
    flex-shrink: 0;
	background: linear-gradient(91deg, #f5f5f500 0%, #2f3435 50%, #ffffff00 100%);
    padding: 1px 30px;
    border-radius: 30px;
}
.eden-precsch-wrap .eden-precsch-legend {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem 1rem;
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    justify-content: flex-end;
    flex: 0 0 auto;
}
.eden-precsch-wrap .eden-precsch-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.eden-precsch-wrap .eden-precsch-legdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.eden-precsch-wrap .eden-precsch-legdot--precision {
    background: #0891b2;
}
.eden-precsch-wrap .eden-precsch-legdot--duty {
    background: #5a5a5a;
}
.eden-precsch-wrap .eden-precsch-legdot--round {
    background: #64748b;
}
.eden-precsch-wrap .eden-precsch-cal-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}
.eden-precsch-wrap .eden-precsch-cal-hd h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}
.eden-precsch-wrap .eden-precsch-cal-nav {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}
.eden-precsch-wrap .eden-precsch-cal-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.eden-precsch-wrap .eden-precsch-cal-nav:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.22);
}
.eden-precsch-wrap .eden-precsch-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.eden-precsch-wrap .eden-precsch-dow {
    text-align: center;
    font-weight: 700;
    padding: 10px 4px;
    font-size: 0.78rem;
    background: rgba(15, 23, 42, 0.6);
    color: rgba(255, 255, 255, 0.95);
}
.eden-precsch-wrap .eden-precsch-dow--sun {
    color: #fca5a5;
}
.eden-precsch-wrap .eden-precsch-dow--sat {
    color: #93c5fd;
}
.eden-precsch-wrap .eden-precsch-cell {
    background: rgba(15, 23, 42, 0.45);
    min-height: 100px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.eden-precsch-wrap .eden-precsch-cell--empty {
    background: rgba(15, 23, 42, 0.25);
    min-height: 40px;
}
.eden-precsch-wrap .eden-precsch-cell--holiday {
    background: rgba(127, 29, 29, 0.35);
}
.eden-precsch-wrap .eden-precsch-cell--morning-only {
    background: rgba(180, 83, 9, 0.28);
}
.eden-precsch-wrap .eden-precsch-cell--afternoon-only {
    background: rgba(14, 165, 233, 0.22);
}
.eden-precsch-wrap .eden-precsch-daynum {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}
.eden-precsch-wrap .eden-precsch-cell--sun .eden-precsch-daynum {
    color: #fca5a5;
}
.eden-precsch-wrap .eden-precsch-cell--sat .eden-precsch-daynum {
    color: #93c5fd;
}
.eden-precsch-wrap .eden-precsch-holipill {
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
}
.eden-precsch-wrap .eden-precsch-holipill--morning {
    background: rgba(234, 88, 12, 0.95);
}
.eden-precsch-wrap .eden-precsch-holipill--afternoon {
    background: rgba(14, 165, 233, 0.9);
}
.eden-precsch-wrap .eden-precsch-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.eden-precsch-wrap .eden-precsch-chip {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    color: #fff;
    line-height: 1.25;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.eden-precsch-wrap .eden-precsch-chip--precision {
    background: #0891b2;
}
.eden-precsch-wrap .eden-precsch-chip--duty {
    background: #5a5a5a;
}
.eden-precsch-wrap .eden-precsch-chip--round {
    background: #64748b;
}
.eden-precsch-wrap .eden-precsch-chip--off {
    background: #7f1d1d;
    text-decoration: line-through;
    opacity: 0.9;
}
.eden-precsch-wrap .eden-precsch-loading {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2rem;
}
.eden-precsch-wrap .eden-precsch-lockhint {
    font-size: 0.8rem;
    color: rgba(251, 191, 36, 0.95);
    margin-top: 0.75rem;
    line-height: 1.4;
}

@media (min-width: 720px) {
    .eden-precsch-wrap .eden-precsch-mo-dots {
        display: none !important;
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet {
        display: none !important;
    }
}

@media (max-width: 719px) {
    .eden-precsch-wrap .eden-precsch-title-row {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.35rem;
    }
    .eden-precsch-wrap .eden-precsch-title-row .about-caption {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 0.82rem;
        line-height: 1.25;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .eden-precsch-wrap .eden-precsch-legend {
        font-size: 0.62rem;
        gap: 0.2rem 0.38rem;
        width: auto;
        flex: 0 0 auto;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
    .eden-precsch-wrap .eden-precsch-legend span {
        white-space: nowrap;
    }
    .eden-precsch-wrap .eden-precsch-legdot {
        width: 8px;
        height: 8px;
    }
    .eden-precsch-wrap .eden-precsch-cal-grid {
        border-radius: 12px 12px 0 0;
    }
    .eden-precsch-wrap .eden-precsch-dow {
        padding: 8px 2px;
        font-size: 0.68rem;
    }
    .eden-precsch-wrap .eden-precsch-cell:not(.eden-precsch-cell--empty) {
        min-height: 52px;
        padding: 5px 3px 6px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        align-items: center;
    }
    .eden-precsch-wrap .eden-precsch-cell--picked {
        box-shadow: inset 0 0 0 2px rgba(244, 114, 182, 0.95);
    }
    .eden-precsch-wrap .eden-precsch-cell--empty {
        min-height: 28px;
        pointer-events: none;
    }
    .eden-precsch-wrap .eden-precsch-badges {
        display: none !important;
    }
    .eden-precsch-wrap .eden-precsch-holipill {
        font-size: 0.52rem;
        padding: 2px 4px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .eden-precsch-wrap .eden-precsch-daynum {
        font-size: 0.82rem;
    }
    .eden-precsch-wrap .eden-precsch-mo-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        flex-wrap: wrap;
        margin-top: 3px;
        min-height: 8px;
    }
    .eden-precsch-wrap .eden-precsch-mo-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .eden-precsch-wrap .eden-precsch-mo-dot--precision {
        background: #0891b2;
    }
    .eden-precsch-wrap .eden-precsch-mo-dot--duty {
        background: #9ca3af;
    }
    .eden-precsch-wrap .eden-precsch-mo-dot--round {
        background: #64748b;
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet {
        margin-top: 0;
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet__inner {
        background: linear-gradient(165deg, #2f2d35 0%, #443155 45%, #37405d 100%);
        border-radius: 0 0 24px 24px;
        padding: 1rem 0.9rem 1.1rem;
        margin-top: -2px;
        box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.35);
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet__hd {
        text-align: center;
        margin-bottom: 0.65rem;
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet__eyebrow {
        display: block;
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.78);
        margin-bottom: 0.2rem;
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet__date {
        display: block;
        font-size: 1.15rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.02em;
    }
    .eden-precsch-wrap .eden-precsch-mo-banner {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.92);
        background: rgba(255, 255, 255, 0.14);
        border-radius: 10px;
        padding: 0.55rem 0.7rem;
        margin-bottom: 0.65rem;
        line-height: 1.35;
    }
    .eden-precsch-wrap .eden-precsch-mo-item {
        display: flex;
        align-items: stretch;
        gap: 0;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .eden-precsch-wrap .eden-precsch-mo-item:last-child {
        border-bottom: none;
    }
    .eden-precsch-wrap .eden-precsch-mo-item__bar {
        width: 4px;
        border-radius: 4px;
        flex-shrink: 0;
        margin-right: 12px;
        align-self: stretch;
        min-height: 2.4rem;
    }
    .eden-precsch-wrap .eden-precsch-mo-item--precision .eden-precsch-mo-item__bar {
        background: #22d3ee;
    }
    .eden-precsch-wrap .eden-precsch-mo-item--duty .eden-precsch-mo-item__bar {
        background: #d1d5db;
    }
    .eden-precsch-wrap .eden-precsch-mo-item--round .eden-precsch-mo-item__bar {
        background: #94a3b8;
    }
    .eden-precsch-wrap .eden-precsch-mo-item__body {
        flex: 1;
        min-width: 0;
    }
    .eden-precsch-wrap .eden-precsch-mo-item__type {
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.78);
        letter-spacing: 0.06em;
        margin-bottom: 0.15rem;
    }
    .eden-precsch-wrap .eden-precsch-mo-item__name {
        display: block;
        font-size: 0.98rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.35;
    }
    .eden-precsch-wrap .eden-precsch-mo-item__off {
        font-style: normal;
        font-weight: 600;
        color: #fecaca;
        font-size: 0.88rem;
    }
    .eden-precsch-wrap .eden-precsch-mo-sheet__empty {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        margin: 0.5rem 0 0;
        line-height: 1.45;
    }
}
