/* 나리야 레이아웃 안쪽용 — 전체 HTML 페이지가 아님 */
.dl-hub {
	--dl-ink: #152033;
	--dl-muted: #6b778c;
	--dl-line: #e4eaf3;
	--dl-brand: #2f6bff;
	--dl-brand2: #1e4fd6;
	--dl-accent: #00b3ff;
	--dl-shadow: 0 10px 28px rgba(23, 37, 84, .08);
	--dl-radius: 20px;
	color: var(--dl-ink);
	margin: 0 0 24px;
}

.dl-hero { padding: 8px 0 6px; }
.dl-eyebrow {
	display: inline-block;
	margin: 0 0 10px;
	padding: 5px 11px;
	border-radius: 999px;
	background: #e8f0ff;
	color: var(--dl-brand2);
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.dl-title {
	margin: 0;
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
	line-height: 1.2;
	letter-spacing: -.03em;
	font-weight: 800;
}
.dl-lead {
	margin: 12px 0 0;
	max-width: 36em;
	color: var(--dl-muted);
	font-size: 1rem;
}

.dl-stats {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.dl-stat {
	background: #fff;
	border: 1px solid var(--dl-line);
	border-radius: 16px;
	padding: 14px 12px;
	box-shadow: var(--dl-shadow);
}
.dl-stat strong {
	display: block;
	font-size: 1.45rem;
	letter-spacing: -.02em;
}
.dl-stat span {
	color: var(--dl-muted);
	font-size: .82rem;
	font-weight: 600;
}

.dl-sec { margin: 28px 0 14px; }
.dl-sec h2 {
	margin: 0;
	font-size: clamp(1.25rem, 2.4vw, 1.55rem);
	letter-spacing: -.02em;
	font-weight: 800;
}
.dl-sec p { margin: 6px 0 0; color: var(--dl-muted); }

.dl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.dl-card {
	background: #fff;
	border: 1px solid var(--dl-line);
	border-radius: var(--dl-radius);
	padding: 18px;
	box-shadow: var(--dl-shadow);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	transition: transform .18s ease, box-shadow .18s ease;
}
.dl-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(23,37,84,.12); }
.dl-card.is-disabled { opacity: .72; }
.dl-card.is-disabled:hover { transform: none; }

.dl-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.dl-badge {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--dl-brand), var(--dl-accent));
	color: #fff;
	font-size: .7rem;
	font-weight: 800;
}
.dl-ver { color: var(--dl-muted); font-size: .8rem; font-weight: 700; }
.dl-card h3 { margin: 0; font-size: 1.15rem; font-weight: 800; }
.dl-sub { margin: 5px 0 0; color: var(--dl-brand2); font-size: .88rem; font-weight: 700; }
.dl-desc { margin: 10px 0 0; color: var(--dl-muted); font-size: .92rem; flex: 1; }

.dl-points { list-style: none; margin: 12px 0 0; padding: 0; }
.dl-points li {
	position: relative;
	padding-left: 16px;
	margin: 6px 0;
	font-size: .9rem;
	font-weight: 600;
}
.dl-points li::before {
	content: "";
	position: absolute;
	left: 0; top: .55em;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--dl-brand);
}

.dl-card-foot {
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.dl-count { color: var(--dl-muted); font-size: .8rem; font-weight: 700; }
.dl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--dl-brand) 0%, var(--dl-brand2) 100%);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 800;
	font-size: .88rem;
	box-shadow: 0 8px 18px rgba(47,107,255,.25);
}
.dl-btn:hover { filter: brightness(1.05); color: #fff !important; }
.dl-btn-ghost {
	background: #eef2f7;
	color: var(--dl-muted) !important;
	box-shadow: none;
}

.dl-guide {
	margin-top: 18px;
	background: #fff;
	border: 1px solid var(--dl-line);
	border-radius: 22px;
	padding: 6px 18px 20px;
	box-shadow: var(--dl-shadow);
}
.dl-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.dl-steps li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px;
	border-radius: 14px;
	background: #f7f9fc;
}
.dl-n {
	flex: 0 0 32px;
	width: 32px; height: 32px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1b2437;
	color: #fff;
	font-weight: 800;
}
.dl-steps strong { display: block; margin-bottom: 3px; }
.dl-steps p { margin: 0; color: var(--dl-muted); font-size: .92rem; }
.dl-steps em {
	font-style: normal;
	color: var(--dl-brand2);
	font-weight: 800;
}
.dl-note {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #eef5ff;
	border: 1px solid #d7e6ff;
}
.dl-note p { margin: 0 0 5px; color: #35507a; font-size: .9rem; }
.dl-note p:last-child { margin-bottom: 0; }

.dl-trust {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.dl-trust > div {
	background: linear-gradient(145deg, #1b2437, #243454);
	color: #fff;
	border-radius: 16px;
	padding: 16px 14px;
}
.dl-trust strong {
	display: block;
	font-size: 1.35rem;
	letter-spacing: -.02em;
}
.dl-trust span { color: #b7c3da; font-size: .84rem; font-weight: 600; }

.dl-missing {
	padding: 18px;
	border-radius: 16px;
	background: #fff4f0;
	border: 1px solid #ffd4c7;
	color: #8a3b22;
	font-weight: 600;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.dl-stats, .dl-grid, .dl-trust { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
	.dl-stats, .dl-grid, .dl-trust { grid-template-columns: 1fr; }
	.dl-card-foot { flex-direction: column; align-items: stretch; }
	.dl-btn { width: 100%; }
}
