/* ══════════════════════════════════════════════════════════════
 *  layouts/lp-hero-cards.css — 히어로 쇼케이스(.hs-) 한 벌
 *  마크업·스크립트는 layouts/lp-hero-cards.php. index.php · test.php 가 같이 쓴다
 *  (2026-09-04 index.css 에서 떼어냈다 — 두 페이지가 같은 히어로를 그린다).
 * ══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   HERO SHOWCASE  (hs-)
   ─ 100vh 올인원 기능 애니메이션 쇼케이스
═══════════════════════════════════════════════ */

.hs-wrap {
	position: relative;
	display: flex;
	align-items: stretch;
	height: 100vh;
	/* 상단 고정 메뉴만큼 비워 둔다. 페이지마다 메뉴 높이가 다르다 —
	   새 메뉴(test.css)는 --lp-nav-h: 74px, index.php 의 옛 메뉴는 변수가 없어 폴백 62px 을 쓴다. */
	padding-top: var(--lp-nav-h, 62px);
	box-sizing: border-box;
	background: #0f172a;
	background-image:
		radial-gradient(ellipse at 25% 60%, var(--hs-glow, rgba(45,212,191,0.07)) 0%, transparent 55%),
		radial-gradient(ellipse at 78% 28%, rgba(99,102,241,0.05) 0%, transparent 45%),
		radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: auto, auto, 36px 36px;
	overflow: hidden;
	transition: background-image 1.4s ease;
}

/* ── Left Panel ── */
.hs-left {
	width: 34%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 5%;
}
.hs-left::after {
	content: '';
	position: absolute;
	right: 0; top: 10%; bottom: 10%;
	width: 1px;
	background: linear-gradient(to bottom,
		transparent,
		rgba(255,255,255,0.07) 30%,
		rgba(255,255,255,0.07) 70%,
		transparent);
}
.hs-left-inner { width: 100%; max-width: 480px; }

.hs-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(45,212,191,0.1);
	border: 1px solid rgba(45,212,191,0.22);
	color: #2dd4bf;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 100px;
	margin-bottom: 18px;
	width: fit-content;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.4s both;
}
.hs-badge-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #2dd4bf;
	animation: hsPulse 2.2s ease-in-out infinite;
}

.hs-title {
	font-size: clamp(2rem, 2.8vw, 3.4rem);
	font-weight: 900;
	color: #f1f5f9;
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.6s both;
}
.hs-title em { font-style: normal; color: #2dd4bf; }

.hs-sub {
	font-size: 1.05rem;
	color: #cbd5e1;
	line-height: 1.75;
	margin-bottom: 26px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.8s both;
}

.hs-cta {
	display: flex;
	gap: 10px;
	margin-bottom: 32px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 1.0s both;
}
.hs-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #2dd4bf;
	color: #0f172a;
	font-size: 1rem;
	font-weight: 700;
	padding: 13px 26px;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	white-space: nowrap;
}
.hs-btn-primary:hover { background: #5eead4; transform: translateY(-1px); }
.hs-btn-ghost {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #94a3b8;
	font-size: 1rem;
	font-weight: 600;
	padding: 13px 26px;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}
.hs-btn-ghost:hover { background: rgba(255,255,255,0.09); color: #e2e8f0; }

/* ── Progress ── */
.hs-prog {
	opacity: 0;
	animation: hsFadeUp 0.5s ease 1.2s both;
}
.hs-prog-bar {
	width: 100%;
	height: 2px;
	background: rgba(255,255,255,0.07);
	border-radius: 1px;
	overflow: hidden;
	margin-bottom: 10px;
}
.hs-prog-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(to right, #2dd4bf, #818cf8);
	border-radius: 1px;
}
.hs-prog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 11px;
}
.hs-prog-num {
	font-size: 0.82rem;
	color: #475569;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	min-width: 38px;
}
.hs-prog-label {
	font-size: 0.95rem;
	color: #2dd4bf;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.hs-dots { display: flex; gap: 5px; flex-wrap: wrap; }
.hs-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	transition: background 0.3s, transform 0.3s;
	flex-shrink: 0;
}
.hs-dot--active  { background: #2dd4bf; transform: scale(1.45); }
.hs-dot--done    { background: rgba(45,212,191,0.3); }

/* ── Right Panel ── */
.hs-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 5% 20px 5%;
	min-width: 0;
	min-height: 0;
}

/* ── 12 카드 그리드 ── */
.hs-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	max-height: 100%;
	overflow-y: auto;
	/* 호버 시 카드가 translateY(-2px) + box-shadow 까지 보이도록 위/아래 여백 확보 */
	padding: 8px 4px 8px 0;
}
.hs-cards::-webkit-scrollbar { width: 6px; }
.hs-cards::-webkit-scrollbar-track { background: transparent; }
.hs-cards::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 3px; }
.hs-cards::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }

.hs-fc {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 14px;
	padding: 18px 16px 16px;
	text-decoration: none;
	overflow: hidden;
	backdrop-filter: blur(8px);
	min-height: 220px;
	/* 진입 시 숨김 (.is-in 추가되며 등장) */
	opacity: 0;
	translate: 0 14px;
	transition:
		opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		translate 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.18s,
		border-color 0.18s,
		background 0.18s,
		box-shadow 0.18s;
}
.hs-fc.is-in {
	opacity: 1;
	translate: 0 0;
}
.hs-fc::before {
	content: '';
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 2px;
	background: var(--fc-color, #2dd4bf);
	opacity: 0.4;
}
.hs-fc:hover {
	transform: translateY(-2px);
	border-color: var(--fc-color, rgba(45,212,191,0.4));
	background: rgba(255,255,255,0.045);
	box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px var(--fc-color, transparent) inset;
}
.hs-fc:hover::before { opacity: 0.85; }

/* 핀 배지 */
.hs-fc-pin {
	position: absolute;
	top: 12px; left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f87171 0%, #fbbf24 100%);
	color: #1e1b00;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 4px 12px rgba(248,113,113,0.28);
}
.hs-fc-pin i { font-size: 0.6rem; }
.hs-fc-pin--rank1 {
	background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
	color: #422006;
	box-shadow: 0 4px 12px rgba(250,204,21,0.32);
}

/* NN/12 카운터 */
.hs-fc-counter {
	position: absolute;
	top: 12px; right: 12px;
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	padding: 4px 9px;
	border-radius: 6px;
	background: rgba(15,23,42,0.5);
	border: 1px solid rgba(255,255,255,0.07);
	font-variant-numeric: tabular-nums;
}
.hs-fc-counter-num { font-size: 0.9rem; font-weight: 800; color: #f1f5f9; }
.hs-fc-counter-sep, .hs-fc-counter-total { font-size: 0.74rem; color: rgba(148,163,184,0.65); font-weight: 600; }

/* 아이콘 */
.hs-fc-icon {
	width: 48px; height: 48px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fc-bg);
	color: var(--fc-color);
	font-size: 20px;
	margin-bottom: 14px;
}

/* 타이틀·설명 */
.hs-fc-title {
	font-size: 1.22rem;
	font-weight: 900;
	color: #f1f5f9;
	line-height: 1.34;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}
.hs-fc-desc {
	font-size: 0.88rem;
	color: rgba(226,232,240,0.82);
	line-height: 1.6;
	margin-bottom: 14px;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* meta 칩 */
.hs-fc-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: auto;
}
.hs-fc-meta-chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 6px;
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ── Spotlight ── */
.hs-spotlight {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	position: relative;
}
.hs-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 22px;
	padding: 38px 44px;
	text-align: center;
	width: 100%;
	max-width: 450px;
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
	/* base: invisible */
	opacity: 0;
	transform: scale(0.88) translateY(14px);
	transition: opacity 0s, transform 0s;
}
.hs-card--in {
	opacity: 1;
	transform: scale(1) translateY(0);
	transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.hs-card--out {
	opacity: 0;
	transform: scale(0.82) translateY(8px);
	transition: opacity 0.32s ease-in, transform 0.32s ease-in;
}
.hs-card--finale {
	border-color: rgba(45,212,191,0.2) !important;
	box-shadow:
		0 24px 64px rgba(0,0,0,0.5),
		0 0 60px rgba(45,212,191,0.1),
		0 0 0 1px rgba(45,212,191,0.1);
}

/* ── Spotlight 내부 요소 ── */
.hs-sl-icon {
	width: 80px; height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: background 0.3s, color 0.3s;
	font-size: 20px;
}
.hs-sl-name {
	font-size: clamp(1.4rem, 1.6vw, 1.75rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
	line-height: 1.2;
}
.hs-sl-desc {
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 20px;
}
.hs-sl-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.77rem;
	font-weight: 700;
	opacity: 0;
	transform: scale(0.8) translateY(4px);
	transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
	pointer-events: none;
}
.hs-sl-badge.show { opacity: 1; transform: scale(1) translateY(0); }

/* ── Finale 카드 ── */
.hs-finale {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.hs-finale-star {
	width: 80px; height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(45,212,191,0.12);
	color: #2dd4bf;
	margin-bottom: 4px;
	font-size: 28px;
}
.hs-finale h3 {
	font-size: clamp(1.4rem, 1.6vw, 1.75rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin-bottom: 4px;
}
.hs-finale p { font-size: 0.88rem; color: #64748b; }

/* ── 기능 그리드 ── */
.hs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
	flex-shrink: 0;
	padding-top: 12px;
}
.hs-gc {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 11px;
	border-radius: 10px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.05);
	text-decoration: none;
	transition:
		border-color 0.2s,
		background 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
	overflow: hidden;
}
.hs-gc:hover {
	border-color: rgba(45,212,191,0.28);
	background: rgba(45,212,191,0.05);
	transform: translateY(-1px);
}
.hs-gc--wide { grid-column: span 2; }
/* 현재 스포트라이트가 비추는 카드 — 살짝 강조 */
.hs-gc--current {
	border-color: rgba(45,212,191,0.45);
	background: rgba(45,212,191,0.06);
	box-shadow: 0 0 16px rgba(45,212,191,0.18);
}
/* 피날레 — 12개 모두 한번에 빛남 */
.hs-gc--glow {
	border-color: rgba(45,212,191,0.55) !important;
	background: rgba(45,212,191,0.08) !important;
	box-shadow: 0 0 18px rgba(45,212,191,0.18);
	transition: box-shadow 0.4s, border-color 0.4s, background 0.4s;
}
.hs-gc-icon {
	width: 28px; height: 28px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 12px;
}
.hs-gc-name {
	font-size: 0.71rem;
	font-weight: 600;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

/* =====================================================
   엔드급 추가: 국내 최초 / 1위 컨셉
   ===================================================== */

/* 배경 떠다니는 orbs (멀티 컬러 글로우) */
.hs-bg-deco {
	position: absolute; inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}
.hs-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	opacity: 0.32;
	animation: hsFloat 14s ease-in-out infinite;
}
.hs-bg-orb--1 {
	width: 420px; height: 420px;
	left: -120px; top: 12%;
	background: radial-gradient(circle, rgba(45,212,191,0.5) 0%, transparent 65%);
	animation-delay: 0s;
}
.hs-bg-orb--2 {
	width: 360px; height: 360px;
	right: -80px; top: 40%;
	background: radial-gradient(circle, rgba(129,140,248,0.45) 0%, transparent 65%);
	animation-delay: -4s;
}
.hs-bg-orb--3 {
	width: 280px; height: 280px;
	left: 38%; bottom: -80px;
	background: radial-gradient(circle, rgba(251,191,36,0.32) 0%, transparent 65%);
	animation-delay: -8s;
}
@keyframes hsFloat {
	0%, 100% { transform: translateY(0) translateX(0); }
	50%      { transform: translateY(-22px) translateX(14px); }
}

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

/* ── badge 강화 ── */
.hs-badge {
	background: linear-gradient(120deg, rgba(45,212,191,0.18), rgba(129,140,248,0.18));
	border: 1px solid rgba(45,212,191,0.35);
	color: #5eead4;
	box-shadow: 0 8px 28px rgba(45,212,191,0.16);
	padding: 8px 18px;
	gap: 10px;
}
.hs-badge-star {
	color: #fbbf24;
	font-size: 11px;
	filter: drop-shadow(0 0 6px rgba(251,191,36,0.65));
}
.hs-badge-divider {
	width: 1px; height: 12px;
	background: rgba(255,255,255,0.16);
}
.hs-badge-tail {
	color: rgba(226,232,240,0.65);
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0;
	text-transform: none;
	padding-right: 10px;
}

/* ── 헤드라인 (임팩트형: 핀 칩 + 메인 타이틀 2줄) ── */
.hs-title {
	font-size: clamp(2.4rem, 4.2vw, 4.4rem);
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 16px;
}
.hs-title-flag-row {
	display: flex;
	align-items: center;
}
.hs-title-flag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 800;
	color: #fbbf24;
	background: linear-gradient(135deg, rgba(251,191,36,0.16), rgba(248,113,113,0.16));
	border: 1px solid rgba(251,191,36,0.4);
	padding: 7px 14px;
	border-radius: 999px;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 22px rgba(251,191,36,0.22);
	white-space: nowrap;
}
.hs-title-flag i {
	font-size: 0.78rem;
	filter: drop-shadow(0 0 6px rgba(251,191,36,0.7));
}
.hs-title-main {
	display: block;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: #f1f5f9;
}
.hs-title em {
	font-style: normal;
	background: linear-gradient(120deg, #2dd4bf 0%, #5eead4 50%, #818cf8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* sub 강조 — "케어하자" 그라디언트 + 키 업 */
.hs-sub em {
	font-style: normal;
	font-weight: 900;
	font-size: 1.35em;
	letter-spacing: -0.02em;
	background: linear-gradient(120deg, #2dd4bf 0%, #5eead4 35%, #818cf8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 14px rgba(45,212,191,0.35));
	padding: 0 2px;
}

/* ── 칩 라인 ── */
.hs-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 22px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.85s both;
}
.hs-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 8px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.09);
	color: #cbd5e1;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.hs-chip i { font-size: 0.78rem; color: #5eead4; }
.hs-chip--more {
	background: rgba(45,212,191,0.1);
	border-color: rgba(45,212,191,0.28);
	color: #2dd4bf;
}

/* ── trust footer ── */
.hs-trust {
	margin-top: 18px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 12px;
	font-size: 0.78rem;
	color: rgba(148,163,184,0.7);
	font-weight: 500;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 1.4s both;
	flex-wrap: wrap;
}
.hs-trust-item {
	display: inline-flex; align-items: center; gap: 6px;
}
.hs-trust-item i { font-size: 0.75rem; color: rgba(94,234,212,0.55); }
.hs-trust-sep {
	width: 3px; height: 3px;
	border-radius: 50%;
	background: rgba(148,163,184,0.3);
}

/* ── 카드 핀 배지 ── */
.hs-card { position: relative; }
.hs-card-pin {
	position: absolute;
	top: 14px; left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f87171 0%, #fbbf24 100%);
	color: #1e1b00;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 6px 18px rgba(248,113,113,0.34);
	z-index: 2;
}
.hs-card-pin i { font-size: 0.65rem; }
.hs-card-pin--rank1 {
	background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
	color: #422006;
	box-shadow: 0 6px 18px rgba(250,204,21,0.4);
}

/* ── 카드 카운터 (NN / 12) ── */
.hs-card-counter {
	position: absolute;
	top: 14px; right: 14px;
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	padding: 5px 10px;
	border-radius: 6px;
	background: rgba(15,23,42,0.45);
	border: 1px solid rgba(255,255,255,0.07);
	font-variant-numeric: tabular-nums;
	z-index: 2;
}
.hs-card-counter-num {
	font-size: 0.95rem;
	font-weight: 800;
	color: #f1f5f9;
}
.hs-card-counter-sep, .hs-card-counter-total {
	font-size: 0.74rem;
	color: rgba(148,163,184,0.65);
	font-weight: 600;
}

/* ── 카드 본문 — firstClaim 헤드라인용 사이즈 조정 ── */
.hs-card { padding-top: 60px; }
.hs-sl-name {
	font-size: clamp(1.3rem, 1.55vw, 1.6rem);
	line-height: 1.3;
}
.hs-sl-icon { margin-top: 4px; }

/* ── meta 칩 (근거) ── */
.hs-sl-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 4px 0 16px;
	min-height: 22px;
}
.hs-sl-meta-chip {
	display: inline-flex;
	align-items: center;
	padding: 3px 9px;
	border-radius: 6px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ── 그리드 카드 — 순번 라벨 ── */
.hs-gc { padding: 9px 10px 9px 8px; gap: 6px; position: relative; }
.hs-gc-rank {
	width: 16px;
	font-size: 0.62rem;
	font-weight: 800;
	color: rgba(148,163,184,0.45);
	font-variant-numeric: tabular-nums;
	text-align: center;
	flex-shrink: 0;
}
.hs-gc--current .hs-gc-rank {
	color: rgba(45,212,191,0.85);
}

/* ── 피날레 핀 ── */
.hs-finale-pin {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, #f87171 0%, #fbbf24 100%);
	color: #1e1b00;
	font-size: 0.72rem;
	font-weight: 800;
	margin-bottom: 6px;
	box-shadow: 0 6px 18px rgba(248,113,113,0.3);
}

/* ── 키프레임 ── */
@keyframes hsFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes hsPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.45; transform: scale(0.75); }
}

/* ── 반응형 ── */
@media (max-width: 1280px) {
	.hs-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
	.hs-fc { min-height: 220px; padding: 18px 16px 16px; }
	.hs-fc-title { font-size: 1.14rem; }
}
@media (max-width: 1100px) {
	.hs-left { padding: 0 5%; }
	.hs-right { padding: 20px 5% 18px 5%; }
	.hs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hs-fc { min-height: auto; }
}
@media (max-width: 860px) {
	.hs-wrap { flex-direction: column; height: auto; min-height: 100vh; }
	.hs-left { width: 100%; padding: 28px 24px 16px; }
	.hs-left::after { display: none; }
	.hs-right { padding: 0 16px 28px; }
	.hs-title { font-size: 2.4rem; gap: 12px; }
	.hs-title-flag { font-size: 0.78rem; padding: 6px 12px; }
	.hs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; }
	.hs-bg-orb { opacity: 0.22; }
	.hs-badge-divider, .hs-badge-tail { display: none; }
}
@media (max-width: 520px) {
	.hs-title { font-size: 1.95rem; gap: 10px; margin-bottom: 12px; }
	.hs-title-flag { font-size: 0.72rem; padding: 5px 11px; }
	.hs-cards { grid-template-columns: 1fr; }
	.hs-cta { display: none; }
	.hs-chips { gap: 4px; }
	.hs-chip { padding: 5px 9px; font-size: 0.7rem; }
	.hs-fc { padding: 14px 14px 14px; }
	.hs-fc-counter { font-size: 0.62rem; padding: 3px 8px; }
	.hs-trust { font-size: 0.68rem; }
}
