@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: url('https://cdn.unicef.or.kr/font/Pretendard-Bold.woff2') format('woff2');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: url('https://cdn.unicef.or.kr/font/Pretendard-SemiBold.woff2') format('woff2');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 500;
	font-display: swap;
	src: url('https://cdn.unicef.or.kr/font/Pretendard-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: url('https://cdn.unicef.or.kr/font/Pretendard-Regular.woff2') format('woff2');
}

* { padding: 0; margin: 0; box-sizing: border-box; }

.wrap {
	width: 100%;
	min-height: 100vh;
	padding: 60px 600px 40px 64px;
	background: #000 url(../images/bg_pc.png) no-repeat center center / cover;
	position: relative;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}
.wrap::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
	z-index: 0;
}

.logo {
	display: block;
	position: relative;
	z-index: 1;
	padding-top: 24px;
}
.logo img { width: 176px; height: auto; }

.content {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.title {
	font-family: 'Noto Sans KR', sans-serif;
	color: #fff;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.6px;
}
.title .badge {
	display: inline-block;
	background: #E2231A;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.6px;
	padding: 0 8px;
	margin-bottom: 4px;
}

/* === PC 아이템 카드 (상세) === */
.items {
	display: flex;
	gap: 16px;
	margin-top: 40px;
}
.item {
	background: rgba(255, 255, 255, 0.6);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	overflow: hidden;
	width: 200px;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.item-img {
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
}
.item-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.item-info {
	background: #fff;
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex: 1;
}
.item-price {
	display: block;
	color: #0F95D6;
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 0.8em;
	letter-spacing: -0.02em;
	text-align: center;
}
.item-name {
	display: inline-block;
	background: #0F95D6;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.14em;
	margin-top: 6px;
	padding: 4px 8px;
	border-radius: 2px;
	letter-spacing: -0.02em;
	text-align: center;
}
.item-desc {
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 11px;
	line-height: 1.45em;
	color: #000;
	margin-top: 12px;
	letter-spacing: -0.02em;
	text-align: center;
}

.copyright {
	position: absolute;
	bottom: 16px;
	right: 620px;
	z-index: 1;
	font-family: 'Pretendard', sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* 1200px 이하 */
@media screen and (max-width: 1200px) {
	.wrap { padding: 48px 560px 36px 48px; }
	.title { font-size: 40px; }
	.title .badge { font-size: 40px; }
	.logo img { width: 150px; }
	.copyright { right: 580px; }
}

/* === 모바일 (1023px 이하) — 심플 카드 === */
@media screen and (max-width: 1023px) {
	.wrap {
		padding: 20px 20px 40px;
		background-position: center top;
	}
	.wrap::after {
		background: rgba(0, 0, 0, 0.55);
	}

	.logo { padding-top: 0; }
	.logo img { width: 68px; height: 36px; }

	.content {
		flex: none;
		min-height: auto;
		margin-top: 32px;
		padding: 0;
	}

	.title {
		font-size: 20px;
		line-height: 1.5;
	}
	.title .badge {
		font-size: 20px;
		padding: 2px 6px;
	}

	.items {
		gap: 8px;
		margin-top: 24px;
	}
	.item {
		flex: 1;
		width: auto;
		display: flex;
		flex-direction: column;
		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);
	}
	.item-img {
		padding: 8px;
		height: 80px;
		flex: none;
	}
	/* 모바일: 상세 텍스트 숨기고 가격만 파란 바로 표시 */
	.item-info {
		background: #0F95D6;
		padding: 4px 0;
	}
	.item-price {
		display: block;
		background: none;
		color: #fff;
		font-size: 12px;
		font-weight: 500;
		text-align: center;
	}
	.pc-only {
		display: none;
	}
	.item-name,
	.item-desc {
		display: none;
	}

	.copyright {
		position: absolute;
		bottom: auto;
		top: 150px;
		right: 8px;
		display: block;
		margin-top: 0;
		font-size: 10px;
		color: rgba(255, 255, 255, 0.5);
		writing-mode: vertical-rl;
		white-space: nowrap;
	}
}
