@charset "utf-8";

/* ============================================================
   ① 히어로
   ============================================================ */
.fc-hero {
	position: relative;
	height: 56vh;
	min-height: 440px;
	overflow: hidden;
	background: #2a2520;
}

.fc-grain {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
	opacity: 0.3;
}

.fc-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.fc-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.65) saturate(0.6) sepia(0.1);
}

.fc-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(237, 232, 222, 0.97) 0%, rgba(237, 232, 222, 0.75) 30%, rgba(237, 232, 222, 0.2) 55%, transparent 75%);
	pointer-events: none;
}

.fc-hero-inner {
	position: relative;
	z-index: 4;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 clamp(24px, 8vw, 120px) clamp(50px, 7vh, 80px);
}

.fc-hero-badge {
	display: inline-block;
	padding: 5px 12px;
	border: 1px solid #b8922e;
	color: #b8922e;
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	font-weight: 700;
	text-transform: uppercase;
	align-self: flex-start;
	margin-bottom: 20px;
}

.fc-hero-tit {
	font-size: clamp(26px, calc(10px + 2.5vw), 50px);
	font-weight: 900;
	color: #1a1714;
	margin-bottom: 16px;
}

.fc-hero-sub {
	font-size: clamp(16px, calc(10px + 1vw), 22px);
	color: rgba(42, 37, 32, 0.7);
}

@media (max-width: 999px) {
	.fc-hero {
		height: 48vh;
	}
	.fc-hero-inner {
		padding: 0 30px clamp(40px, 6vh, 60px);
	}
}
@media (max-width: 768px) {
	.fc-hero-inner {
		padding: 0 20px 40px;
	}
}
@media (max-width: 499px) {
	.fc-hero {
		height: 44vh;
		min-height: 360px;
	}
	.fc-hero-inner {
		padding: 0 16px 32px;
	}
}

/* ============================================================
   ② 스티키 필터 바
   ============================================================ */
.fc-filter {
	position: sticky;
	top: 90px;
	z-index: 2;
	background: #ede8de;
	border-bottom: 1px solid rgba(140, 110, 50, 0.2);
	transition: top 0.25s ease;
}

.fc-filter-inner {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 clamp(24px, 5vw, 80px);
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
}
.fc-filter-inner::-webkit-scrollbar {
	display: none;
}

.fc-filter-btn {
	flex-shrink: 0;
	padding: 18px 24px;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	font-weight: 600;
	color: rgba(42, 37, 32, 0.5);
	cursor: pointer;
	transition:
		color 0.25s,
		border-color 0.25s;
}
.fc-filter-btn:hover {
	color: #1a1714;
}
.fc-filter-btn.is-active {
	color: #1a1714;
	border-bottom-color: #b8922e;
}

@media (max-width: 999px) {
	.fc-filter {
		top: 70px;
	}
	.fc-filter-btn {
		padding: 14px 18px;
	}
}

/* ============================================================
   ③ 기사 카드 그리드
   ============================================================ */
.fc-articles {
	background: #ede8de;
	padding: clamp(48px, 6vw, 96px) 0 clamp(60px, 8vw, 120px);
}
.fc-articles-inner {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 clamp(24px, 5vw, 80px);
}

.fc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.fc-card {
	display: block;
	position: relative;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	background: #2a2520;
}

.fc-card-frame {
	position: absolute;
	inset: 10px;
	border: 1px solid #c9a84c;
	z-index: 3;
	opacity: 0;
	transition: opacity 0.4s;
	pointer-events: none;
}
.fc-card:hover .fc-card-frame {
	opacity: 1;
}

.fc-card-img {
	position: absolute;
	inset: 0;
}
.fc-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition:
		transform 0.6s ease,
		filter 0.4s;
	filter: brightness(0.6) saturate(0.65) sepia(0.06);
}
.fc-card:hover .fc-card-img img {
	transform: scale(1.06);
	filter: brightness(0.45) saturate(0.5);
}

.fc-card-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 32px 24px 24px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
	transition: transform 0.4s;
}
.fc-card:hover .fc-card-overlay {
	transform: translateY(-8px);
}

.fc-card-genre {
	display: block;
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	color: #c9a84c;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.fc-card-tit {
	font-size: clamp(18px, calc(10px + 1.5vw), 26px);
	font-weight: 700;
	color: #f5f0e8;
	margin-bottom: 8px;
}
.fc-card-desc {
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	color: rgba(245, 240, 232, 0.65);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.4s 0.1s,
		transform 0.4s 0.1s;
}
.fc-card:hover .fc-card-desc {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 999px) {
	.fc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.fc-articles {
		padding: 40px 0 60px;
	}
}
@media (max-width: 499px) {
	.fc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.fc-card-overlay {
		padding: 20px 14px 16px;
	}
}

/* ============================================================
   ④ 씨네마틱 시리즈 CTA
   ============================================================ */
.fc-outro {
	background: #ede8de;
	padding: clamp(60px, 8vw, 120px) 0;
	border-top: 1px solid rgba(140, 110, 50, 0.2);
}
.fc-outro-inner {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 clamp(24px, 5vw, 80px);
}
.fc-outro-label {
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	color: #b8922e;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.fc-outro-tit {
	font-size: clamp(28px, calc(14px + 3vw), 52px);
	font-weight: 700;
	color: #1a1714;
	margin-bottom: 48px;
}
.fc-outro-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.fc-outro-link {
	display: block;
}
.fc-outro-img {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	margin-bottom: 14px;
}
.fc-outro-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.6) brightness(0.85) sepia(0.06);
	transition:
		transform 0.5s,
		filter 0.4s;
}
.fc-outro-link:hover .fc-outro-img img {
	transform: scale(1.05);
	filter: saturate(0.85) brightness(1);
}

.fc-outro-img--soon {
	background: #d8d2c6;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fc-outro-img--soon span {
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	color: rgba(42, 37, 32, 0.4);
	font-weight: 600;
}

.fc-outro-type {
	display: block;
	font-size: clamp(14px, calc(10px + 0.8vw), 18px);
	color: #b8922e;
	font-weight: 700;
	margin-bottom: 6px;
}
.fc-outro-tit-sm {
	display: block;
	font-size: clamp(18px, calc(10px + 1.2vw), 24px);
	font-weight: 600;
	color: #1a1714;
	transition: color 0.3s;
}
.fc-outro-link:hover .fc-outro-tit-sm {
	color: #b8922e;
}

@media (max-width: 768px) {
	.fc-articles-inner {
		padding: 0 20px;
	}
	.fc-outro-inner {
		padding: 0 20px;
	}
	.fc-outro-links {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.fc-outro {
		padding: 40px 0;
	}
	.fc-outro-tit {
		margin-bottom: 32px;
	}
}

/* ============================================================
   다크모드
   ============================================================ */
/* 히어로 — 그라데이션 다크로, 텍스트 라이트 */
body.dark .fc-hero::after {
	background: linear-gradient(to top, rgba(26, 21, 16, 0.97) 0%, rgba(26, 21, 16, 0.65) 38%, rgba(26, 21, 16, 0.15) 65%, transparent 85%);
}
body.dark .fc-hero-tit {
	color: #ede8de;
}
body.dark .fc-hero-sub {
	color: rgba(237, 232, 222, 0.65);
}

/* 필터 바 */
body.dark .fc-filter {
	background: #1e1a16;
	border-bottom-color: rgba(184, 146, 46, 0.15);
}
body.dark .fc-filter-btn {
	color: rgba(237, 232, 222, 0.42);
}
body.dark .fc-filter-btn:hover {
	color: rgba(237, 232, 222, 0.85);
}
body.dark .fc-filter-btn.is-active {
	color: #ede8de;
}

/* 기사 섹션 */
body.dark .fc-articles {
	background: #1e1a16;
}

/* 시리즈 CTA */
body.dark .fc-outro {
	background: #1e1a16;
	border-top-color: rgba(184, 146, 46, 0.15);
}
body.dark .fc-outro-tit {
	color: #ede8de;
}
body.dark .fc-outro-tit-sm {
	color: rgba(237, 232, 222, 0.85);
}
body.dark .fc-outro-link:hover .fc-outro-tit-sm {
	color: #b8922e;
}
body.dark .fc-outro-img--soon {
	background: #2a2520;
}

/* 부모 div에 색상 — a는 common.css에서 전역 inherit 처리됨 */
.fc-outro-item { color: #1a1714; }
body.dark .fc-outro-item { color: rgba(237, 232, 222, 0.85); }
