@charset "UTF-8";

:root {
	--nl-bg: #ffffff;
	--nl-text: #1a1a1a;
	--nl-text-muted: #777777;
	--nl-accent: #c0392b;
	--nl-border: #e5e5e5;
}

/* ─── 공통 ─── */
.nl1-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 48px;
}

.nl1-sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--nl-border);
}

.nl1-sec-label {
	font-size: clamp(14px, calc(8px + 0.8vw), 18px);
	color: var(--nl-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 600;
	margin-bottom: 4px;
}

.nl1-sec-tit {
	font-size: clamp(20px, calc(12px + 1.2vw), 28px);
	font-weight: 700;
	color: var(--nl-text);
	font-family: "Paperlogy", sans-serif;
}

.nl1-sec-more {
	font-size: clamp(14px, calc(8px + 0.8vw), 18px);
	color: var(--nl-text-muted);
	text-decoration: none;
	border-bottom: 1px solid var(--nl-border);
	padding-bottom: 2px;
	flex-shrink: 0;
	transition:
		color 0.2s,
		border-color 0.2s;
}
.nl1-sec-more:hover {
	color: var(--nl-text);
	border-color: var(--nl-text);
}

/* ─── 마스트헤드 + 에디터 노트 ─── */
.nl1-masthead {
	margin-top: 90px;
	padding: 40px 0 36px;
	border-bottom: 2px solid var(--nl-text);
}

.nl1-mast-top {
	font-size: clamp(14px, calc(8px + 0.8vw), 18px);
	font-family: "Paperlogy", sans-serif;
	color: var(--nl-text-muted);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.nl1-mast-name {
	color: var(--nl-text);
	font-weight: 700;
}

.nl1-mast-sep {
	margin: 0 0.6em;
	opacity: 0.3;
}

.nl1-editor-note {
	display: flex;
	gap: 48px;
	align-items: flex-start;
}

.nl1-editor-label {
	font-size: clamp(14px, calc(8px + 0.8vw), 18px);
	font-family: "Paperlogy", sans-serif;
	font-weight: 700;
	color: var(--nl-accent);
	white-space: nowrap;
	min-width: 120px;
	padding-top: 3px;
}

.nl1-editor-text {
	font-size: clamp(18px, calc(12px + 0.9vw), 22px);
	color: var(--nl-text);
	font-family: "Paperlogy", sans-serif;
}

.nl1-editor-text em {
	font-style: italic;
	color: var(--nl-accent);
}

/* ─── 히어로 슬라이더 (coverflow) ─── */
.nl1-hero {
	padding: 16px 0 32px;
}

.nl1-hero-swiper {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}

.nl1-hero-slide {
	display: flex;
	flex-direction: column;
	background: var(--nl-bg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease;
}

.nl1-hero-slide.swiper-slide-active {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.nl1-hero-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.nl1-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.nl1-hero-slide:hover .nl1-hero-img img {
	transform: scale(1.04);
}

.nl1-hero-text {
	padding: 28px 32px 36px;
}

.nl1-hero-badge {
	display: inline-block;
	font-size: clamp(14px, calc(8px + 0.7vw), 18px);
	color: var(--nl-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 600;
	border: 1px solid var(--nl-accent);
	padding: 3px 12px;
	margin-bottom: 14px;
	width: fit-content;
}

.nl1-hero-tit {
	font-size: clamp(22px, calc(14px + 1.2vw), 30px);
	font-weight: 800;
	color: var(--nl-text);
	font-family: "Paperlogy", sans-serif;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nl1-hero-desc {
	font-size: clamp(16px, calc(10px + 0.6vw), 18px);
	color: var(--nl-text-muted);
	font-family: "Paperlogy", sans-serif;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nl1-hero-btn {
	display: inline-block;
	font-size: clamp(14px, calc(8px + 0.7vw), 18px);
	font-family: "Paperlogy", sans-serif;
	color: var(--nl-accent);
	text-decoration: none;
	border-bottom: 1px solid var(--nl-accent);
	padding-bottom: 2px;
	width: fit-content;
	transition: opacity 0.2s;
}
.nl1-hero-btn:hover {
	opacity: 0.65;
}

/* 슬라이더 네비 */
.nl1-hero-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.nl1-hero-pagination {
	position: static !important;
	width: auto !important;
	display: flex;
	gap: 6px;
}

.nl1-hero-pagination .swiper-pagination-bullet {
	width: 20px;
	height: 2px;
	border-radius: 0;
	background: var(--nl-border);
	opacity: 1;
	transition: background 0.3s;
}

.nl1-hero-pagination .swiper-pagination-bullet-active {
	background: var(--nl-accent);
}

.nl1-hero-prev,
.nl1-hero-pause,
.nl1-hero-next {
	background: transparent;
	border: 1px solid var(--nl-border);
	color: var(--nl-text);
	font-size: clamp(14px, calc(8px + 0.7vw), 18px);
	width: 36px;
	height: 36px;
	cursor: pointer;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s;
}
.nl1-hero-prev:hover,
.nl1-hero-pause:hover,
.nl1-hero-next:hover {
	background: var(--nl-text);
	color: #fff;
	border-color: var(--nl-text);
}

/* 일시정지 아이콘 — ❚❚ */
.nl1-hero-pause {
	position: relative;
}
.nl1-hero-pause::before,
.nl1-hero-pause::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 10px;
	background: currentColor;
}
.nl1-hero-pause::before {
	left: calc(50% - 4px);
}
.nl1-hero-pause::after {
	left: calc(50% + 2px);
}

/* 재생 아이콘 — ▶ */
.nl1-hero-pause.is-playing::before {
	width: 0;
	height: 0;
	background: transparent;
	border-style: solid;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent currentColor;
	left: calc(50% - 3px);
	transform: translateY(-50%);
}
.nl1-hero-pause.is-playing::after {
	display: none;
}

/* ─── 이번 호 픽 ─── */
.nl1-picks {
	padding: 72px 0;
}

.nl1-picks-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.nl1-pick-card {
	text-decoration: none;
	display: block;
}

.nl1-pick-img {
	overflow: hidden;
	margin-bottom: 16px;
	aspect-ratio: 16 / 10;
}

.nl1-pick-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.nl1-pick-card:hover .nl1-pick-img img {
	transform: scale(1.04);
}

.nl1-pick-cat {
	display: block;
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	color: var(--nl-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 600;
	margin-bottom: 8px;
}

.nl1-pick-tit {
	font-size: clamp(18px, calc(11px + 1vw), 22px);
	font-weight: 700;
	color: var(--nl-text);
	font-family: "Paperlogy", sans-serif;
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	height: 66px;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.nl1-pick-desc {
	font-size: clamp(16px, calc(10px + 0.6vw), 18px);
	color: var(--nl-text-muted);
	font-family: "Paperlogy", sans-serif;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	height: 54px;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
}

/* ─── 문화 단신 ─── */
.nl1-brief {
	padding: 56px 0;
	border-top: 1px solid var(--nl-border);
}

.nl1-brief-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.nl1-brief-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 20px;
	border-right: 1px solid var(--nl-border);
	text-decoration: none;
	transition: opacity 0.2s;
}
.nl1-brief-item:last-child {
	border-right: none;
}
.nl1-brief-item:hover {
	opacity: 0.6;
}

.nl1-brief-num {
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	font-family: "Paperlogy", sans-serif;
	font-weight: 700;
	color: var(--nl-accent);
	flex-shrink: 0;
	margin-top: 2px;
}

.nl1-brief-cat {
	display: block;
	font-size: clamp(14px, calc(8px + 0.5vw), 16px);
	color: var(--nl-text-muted);
	font-family: "Paperlogy", sans-serif;
	margin-bottom: 6px;
}

.nl1-brief-tit {
	display: block;
	font-size: clamp(16px, calc(10px + 0.6vw), 18px);
	font-weight: 600;
	color: var(--nl-text);
	font-family: "Paperlogy", sans-serif;
	margin-bottom: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	height: 54px;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.nl1-brief-desc {
	font-size: clamp(14px, calc(8px + 0.6vw), 16px);
	color: var(--nl-text-muted);
	font-family: "Paperlogy", sans-serif;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	height: 72px;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* ─── 공연 일정 슬라이더 ─── */
.nl1-program {
	padding: 56px 0 88px;
	border-top: 1px solid var(--nl-border);
}

.nl1-prog-swiper {
	overflow: hidden;
}

.nl1-prog-slide {
	text-decoration: none;
	display: block;
}

.nl1-prog-img {
	aspect-ratio: 2 / 3;
	overflow: hidden;
	margin-bottom: 16px;
}

.nl1-prog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.nl1-prog-slide:hover .nl1-prog-img img {
	transform: scale(1.04);
}

.nl1-prog-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nl1-prog-cat {
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	color: var(--nl-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 600;
}

.nl1-prog-tit {
	font-size: clamp(18px, calc(11px + 0.7vw), 20px);
	font-weight: 700;
	color: var(--nl-text);
	font-family: "Paperlogy", sans-serif;
}

.nl1-prog-date {
	font-size: clamp(14px, calc(8px + 0.5vw), 16px);
	color: var(--nl-text-muted);
	font-family: "Paperlogy", sans-serif;
}

/* ─── 반응형 ─── */
@media (max-width: 999px) {
	.nl1-masthead {
		margin-top: 70px;
	}

	.nl1-hero-text {
		padding: 20px 24px 28px;
	}

	.nl1-picks-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nl1-brief-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.nl1-brief-item:nth-child(2) {
		border-right: none;
	}
	.nl1-brief-item:nth-child(3) {
		border-top: 1px solid var(--nl-border);
	}
	.nl1-brief-item:nth-child(4) {
		border-right: none;
		border-top: 1px solid var(--nl-border);
	}
}

@media (max-width: 768px) {
	.nl1-inner {
		padding: 0 24px;
	}

	.nl1-hero-swiper {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.nl1-hero-text {
		padding: 18px 20px 24px;
	}

	.nl1-masthead {
		padding: 28px 0 24px;
	}
	.nl1-editor-note {
		flex-direction: column;
		gap: 12px;
	}
	.nl1-editor-label {
		min-width: auto;
	}

	.nl1-picks {
		padding: 48px 0;
	}
	.nl1-picks-grid {
		grid-template-columns: 1fr;
	}

	.nl1-brief {
		padding: 40px 0;
	}
	.nl1-brief-list {
		grid-template-columns: 1fr;
	}
	.nl1-brief-item {
		border-right: none;
		border-top: 1px solid var(--nl-border);
		padding: 20px 0;
	}
	.nl1-brief-item:first-child {
		border-top: none;
	}

	.nl1-program {
		padding: 40px 0 56px;
	}
}

@media (max-width: 499px) {
	.nl1-inner {
		padding: 0 20px;
	}
	.nl1-masthead {
		padding: 20px 0 18px;
	}
	.nl1-picks {
		padding: 32px 0;
	}
	.nl1-brief {
		padding: 28px 0;
	}
	.nl1-program {
		padding: 28px 0 40px;
	}
}
