/* PUB:m52_1 hero v2 2025-11-16 */
.pub-hero {
	position: relative;
	width: 100vw;
	min-height: 86vh;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: url('/ad/m55_1/img/0-1.jpg') center/cover no-repeat;
	overflow: hidden;
}
.pub-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(120% 70% at 50% -10%, rgba(0,0,0,.55) 0%, transparent 55%) ,
		radial-gradient(120% 70% at 50% 110%, rgba(0,0,0,.55) 0%, transparent 55%);
}
.pub-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.55) 100%);
	pointer-events: none;
}
.pub-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 16vh 20px 11vh;
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: #fff;
}
.pub-badge {
	align-self: flex-start;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: .85rem;
	letter-spacing: .12em;
	background: linear-gradient(90deg, #ff7a18, #af002d 70%);
	box-shadow: 0 8px 24px rgba(175,0,45,.35);
}
.pub-hero__title {
	font-size: clamp(2.2rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.pub-title-gradient {
	background: linear-gradient(90deg,#ffffff,#ffd400,#ff8a00,#ffffff);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradientShift 6s ease-in-out infinite;
}
.pub-title-glow {
	text-shadow:
		0 0 12px rgba(255,212,0,.65),
		0 0 28px rgba(255,138,0,.35),
		0 6px 24px rgba(0,0,0,.35);
	animation: glowPulse 2.4s ease-in-out infinite alternate;
}
.pub-hero__subtitle {
	font-size: clamp(1rem, 3.2vw, 1.4rem);
	opacity: .95;
}
.pub-glass {
	background: rgba(255,255,255,.09);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 16px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: clamp(14px, 3vw, 20px);
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.pub-hero__panel {
	margin-top: 10px;
}
.pub-hero__highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(12px, 2vw, 16px);
	font-size: clamp(1.05rem, 3.4vw, 1.4rem);
}
.pub-hero__item {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 12px;
	background: rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	padding: clamp(12px, 2.6vw, 18px) clamp(14px, 3vw, 22px);
	box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.pub-hero__item b {
	font-size: 1.05em;
	background: linear-gradient(90deg,#ffd400,#ff6b6b);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.pub-em {
	color: #ffd400;
	font-weight: 900;
	text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.pub-hero__ctaWrap {
	margin-top: clamp(10px, 2vw, 16px);
	display: flex;
	justify-content: flex-start;
}
.pub-hero__cta {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: #fff;
	border: none;
	padding: 16px 28px;
	font-size: 1.1rem;
	font-weight: 800;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(238,90,36,.45);
	transition: transform .2s ease, box-shadow .2s ease;
}
.pub-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(238,90,36,.6);
}

/* Grid at desktop */
@media (min-width: 1200px) {
	.pub-hero__inner { padding: 18vh 24px 12vh; }
	.pub-hero__highlights { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile tuning: reduce section height and soften/remove blink */
@media (max-width: 768px) {
	.pub-hero { min-height: 78vh; }
	/* 모바일 깜빡임 제거: 그라데이션/글로우 애니메이션 모두 해제 */
	.pub-title-gradient {
		animation: none !important;
		background-position: 0 0 !important;
	}
	/* 모바일 깜빡임 제거: 애니메이션 해제하고 정적인 글로우만 유지 */
	.pub-title-glow {
		animation: none !important;
		text-shadow: 0 0 8px rgba(255,212,0,.45), 0 0 18px rgba(255,138,0,.25), 0 6px 24px rgba(0,0,0,.35);
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.pub-title-gradient { animation: none !important; }
	.pub-title-glow { animation: none !important; }
}

/* Keyframes */
@keyframes gradientShift {
	0% { background-position: 0% 0; }
	50% { background-position: 100% 0; }
	100% { background-position: 0% 0; }
}
@keyframes glowPulse {
	0% { text-shadow: 0 0 8px rgba(255,212,0,.45), 0 0 18px rgba(255,138,0,.25), 0 6px 24px rgba(0,0,0,.35); }
	100% { text-shadow: 0 0 18px rgba(255,212,0,.85), 0 0 38px rgba(255,138,0,.45), 0 8px 26px rgba(0,0,0,.35); }
}
@keyframes glowPulseSoft {
	0% { text-shadow: 0 0 6px rgba(255,212,0,.35), 0 0 12px rgba(255,138,0,.18), 0 4px 18px rgba(0,0,0,.30); }
	100% { text-shadow: 0 0 12px rgba(255,212,0,.55), 0 0 22px rgba(255,138,0,.30), 0 6px 22px rgba(0,0,0,.32); }
}


