/**
 * FCNews — homepage newsroom (BBC / Bloomberg / Verge–inspired hierarchy)
 */

:root {
	--nf-max: 1200px;
	--nf-ink: #0a0a0a;
	--nf-ink-soft: #2a2a2a;
	--nf-muted: #5e5e5e;
	--nf-line: #e3e3e3;
	--nf-line-strong: #cfcfcf;
	--nf-surface: #f6f6f4;
	--nf-surface-2: #eceae6;
	--nf-accent: #c41212;
	--nf-accent-hover: #8f0d0d;
	--nf-accent-soft: rgba(196, 18, 18, 0.12);
	--nf-radius: 4px;
	--nf-radius-lg: 6px;
	--nf-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	--nf-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
	--nf-font: var(--flatsome-font-family, "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
	--nf-display: var(--flatsome-font-family, Georgia, "Times New Roman", serif);
	--nf-text: 1.05rem;
	--nf-lead: clamp(2rem, 4.2vw, 2.95rem);
	--nf-track: -0.02em;
	--nf-space-xs: 0.5rem;
	--nf-space-sm: 1rem;
	--nf-space-md: clamp(1.5rem, 3vw, 2.25rem);
	--nf-space-lg: clamp(2.5rem, 5vw, 4rem);
	--nf-space-xl: clamp(3rem, 6vw, 5rem);
	--nf-body-lh: 1.58;
}

/* --- Shell & container --- */
.fcnews-newsroom {
	font-family: var(--nf-font);
	color: var(--nf-ink);
	line-height: var(--nf-body-lh);
}

.fcnews-newsroom .fcnews-card__excerpt,
.fcnews-newsroom .fcnews-newsletter-block__lead {
	font-family: var(--nf-font);
	line-height: var(--nf-body-lh);
}

.fcnews-container {
	width: 100%;
	max-width: var(--nf-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 3vw, 1.5rem);
	padding-right: clamp(1rem, 3vw, 1.5rem);
}

.fcnews-container--home {
	padding-top: clamp(1.25rem, 3vw, 2rem);
	padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Full-bleed breaking bar — tốc độ băng tin tự chạy (override biến CSS nếu cần) */
.fcnews-breaking-outer {
	--fcnews-ticker-duration: 52s;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: linear-gradient(90deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fcnews-breaking-outer__inner {
	padding-top: 0.55rem;
	padding-bottom: 0.55rem;
}

.fcnews-breaking-outer .fcnews-ticker__label {
	border-color: var(--nf-accent);
	background: var(--nf-accent-soft);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.12em;
	font-size: 0.7rem;
}

.fcnews-breaking-outer .fcnews-ticker__item a {
	color: rgba(255, 255, 255, 0.95);
}

/* Main + aside */
.fcnews-home-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
	align-items: start;
}

@media (max-width: 989px) {
	.fcnews-home-grid {
		grid-template-columns: 1fr;
	}
}

.fcnews-home-main {
	min-width: 0;
}

.fcnews-home-aside {
	min-width: 0;
}

@media (min-width: 990px) {
	.fcnews-home-aside.fcnews-sidebar-sticky {
		position: sticky;
		top: calc(var(--flatsome-scroll-padding-top, 0px) + 1rem);
		align-self: start;
	}
}

/* Section headers — editorial rail labels */
.fcnews-section {
	margin-bottom: var(--nf-space-lg);
	padding-top: var(--nf-space-xs);
}

.fcnews-section:first-of-type {
	padding-top: 0;
}

.fcnews-section__head {
	display: flex;
	align-items: flex-end;
	gap: 1rem;
	margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
	flex-wrap: wrap;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-section__title {
	position: relative;
	font-family: var(--nf-font);
	font-size: clamp(0.78rem, 1.1vw, 0.88rem);
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.2;
	color: var(--nf-ink);
	padding-bottom: 0.5rem;
}

.fcnews-section__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2.75rem;
	height: 3px;
	background: var(--nf-accent);
}

.fcnews-section__rule {
	flex: 1 1 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--nf-line-strong) 12%, transparent);
	min-width: 3rem;
	margin-bottom: 0.35rem;
}

/* --- Hero --- */
.fcnews-hero {
	margin-bottom: var(--nf-space-lg);
}

.fcnews-hero__grid {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 989px) {
	.fcnews-hero__grid {
		grid-template-columns: 1fr;
	}
}

.fcnews-hero__secondary {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 2vw, 1.35rem);
}

/* --- Card system --- */
.fcnews-card {
	position: relative;
	border-radius: var(--nf-radius-lg);
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fcnews-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--nf-surface-2);
}

.fcnews-card__img,
.fcnews-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fcnews-card__placeholder {
	min-height: 180px;
	background: linear-gradient(135deg, #e8e8e8, #f4f4f4);
}

.fcnews-card__gradient {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.94) 0%,
		rgba(0, 0, 0, 0.72) 32%,
		rgba(0, 0, 0, 0.35) 58%,
		rgba(0, 0, 0, 0.08) 82%,
		transparent 100%
	);
	pointer-events: none;
}

.fcnews-card__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.fcnews-card__play svg {
	width: 56px;
	height: 56px;
	transform: scale(1.08);
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.fcnews-card__body {
	padding: 0.85rem 0 0;
}

.fcnews-card--hero-featured .fcnews-card__body,
.fcnews-card--lead .fcnews-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: clamp(1.25rem, 3.5vw, 2.15rem);
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	justify-content: flex-end;
}

.fcnews-card--hero-featured .fcnews-card__badge,
.fcnews-card--lead .fcnews-card__badge {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	margin-bottom: 0;
}

.fcnews-card__badge {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.2rem 0.45rem;
	border-radius: 2px;
	margin-bottom: 0.5rem;
	text-decoration: none;
	color: var(--nf-accent);
	background: var(--nf-accent-soft);
}

a.fcnews-card__badge:hover {
	color: var(--nf-accent-hover);
}

.fcnews-card__title {
	font-family: var(--nf-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: var(--nf-track);
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
}

.fcnews-card--hero-featured .fcnews-card__title,
.fcnews-card--lead .fcnews-card__title {
	margin-bottom: 0;
}

.fcnews-card--hero-featured .fcnews-card__title,
.fcnews-card--lead .fcnews-card__title {
	font-size: var(--nf-lead);
	line-height: 1.06;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(0, 0, 0, 0.35);
}

.fcnews-card--hero-featured .fcnews-card__title {
	font-weight: 800;
}

.fcnews-card--hero-featured .fcnews-card__title a,
.fcnews-card--lead .fcnews-card__title a {
	color: #fff;
}

.fcnews-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-card__excerpt {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fcnews-card--hero-featured .fcnews-card__excerpt,
.fcnews-card--lead .fcnews-card__excerpt {
	margin-top: 0.15rem;
	max-width: 48rem;
}

.fcnews-card--grid .fcnews-card__excerpt {
	color: var(--nf-muted);
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.fcnews-card__date {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--nf-muted);
	margin-top: 0.35rem;
	display: block;
}

.fcnews-card--hero-featured .fcnews-card__date,
.fcnews-card--lead .fcnews-card__date {
	color: rgba(255, 255, 255, 0.82);
	margin-top: 0.5rem;
	padding-top: 0.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	align-self: flex-start;
	min-width: 0;
}

/* Hero featured: tall image */
.fcnews-card--hero-featured .fcnews-card__media {
	aspect-ratio: 16 / 10;
}

@media (max-width: 989px) {
	.fcnews-card--hero-featured .fcnews-card__media {
		aspect-ratio: 16 / 11;
	}
}

/* Hero side stack */
.fcnews-card--hero-side {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	box-shadow: none;
	background: transparent;
	border-radius: 0;
	border-bottom: 1px solid var(--nf-line);
	padding-bottom: 1rem;
}

.fcnews-card--hero-side:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fcnews-card--hero-side .fcnews-card__media {
	aspect-ratio: 16 / 9;
	width: 120px;
	max-width: 100%;
	border-radius: var(--nf-radius);
	overflow: hidden;
	align-self: start;
}

.fcnews-card--hero-side .fcnews-card__body {
	padding: 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.fcnews-card--hero-side .fcnews-card__title {
	font-size: 0.98rem;
	line-height: 1.3;
	margin-bottom: 0;
}

.fcnews-card--hero-side .fcnews-card__title--hero-side {
	font-family: var(--nf-display);
	font-weight: 700;
}

.fcnews-card--hero-side .fcnews-card__date {
	margin-top: 0;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	color: var(--nf-muted);
}

.fcnews-card--hero-side:hover .fcnews-card__title a {
	color: var(--nf-accent);
}

@media (max-width: 420px) {
	.fcnews-card--hero-side {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 0.75rem;
	}

	.fcnews-card--hero-side .fcnews-card__media {
		width: 96px;
	}
}

@media (min-width: 551px) and (max-width: 989px) {
	.fcnews-latest-grid,
	.fcnews-editors-grid {
		gap: clamp(1.35rem, 2.5vw, 1.85rem);
	}

	.fcnews-cat-block__grid {
		gap: clamp(1.25rem, 3vw, 1.75rem);
	}
}

/* Lead (category blocks) */
.fcnews-card--lead .fcnews-card__media {
	aspect-ratio: 16 / 9;
}

.fcnews-card--lead .fcnews-card__excerpt {
	color: rgba(255, 255, 255, 0.9);
}

/* Grid cards */
.fcnews-latest-grid,
.fcnews-editors-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.25vw, 1.75rem);
}

@media (max-width: 850px) {
	.fcnews-latest-grid,
	.fcnews-editors-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 550px) {
	.fcnews-latest-grid,
	.fcnews-editors-grid {
		grid-template-columns: 1fr;
	}
}

.fcnews-card--grid .fcnews-card__media {
	aspect-ratio: 16 / 9;
}

.fcnews-card--grid .fcnews-card__body {
	padding: 0.85rem 0.2rem 0;
}

.fcnews-card--grid .fcnews-card__title {
	font-size: 1.08rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fcnews-card__title--grid {
	min-height: 0;
}

.fcnews-card__excerpt--grid {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 0.35rem;
	font-size: 0.9rem;
	line-height: 1.55;
}

.fcnews-editors-grid--picks {
	gap: clamp(1.5rem, 2.75vw, 2.25rem);
}

.fcnews-editors-grid--picks .fcnews-card--grid {
	border-radius: var(--nf-radius-lg);
}

.fcnews-editors-grid--picks .fcnews-card__badge {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 0.28rem 0.55rem;
	border-radius: 3px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.fcnews-editors-grid--picks .fcnews-card__title {
	font-size: clamp(1.1rem, 1.65vw, 1.22rem);
	line-height: 1.22;
}

/* Compact (category stack) */
.fcnews-card--compact {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-card--compact:last-child {
	border-bottom: 0;
}

.fcnews-card--compact .fcnews-card__media {
	aspect-ratio: 16 / 9;
	width: 88px;
	border-radius: var(--nf-radius);
	overflow: hidden;
	align-self: start;
}

.fcnews-card--compact .fcnews-card__body {
	padding: 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.fcnews-card--compact .fcnews-card__title {
	font-size: 0.9rem;
	line-height: 1.32;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0;
	font-family: var(--nf-display);
	font-weight: 700;
}

.fcnews-card--compact .fcnews-card__title--compact {
	letter-spacing: -0.015em;
}

.fcnews-card--compact .fcnews-card__date {
	margin-top: 0.15rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	color: var(--nf-muted);
}

/* Hover elevation (grid / video) */
.fcnews-card--grid,
.fcnews-card--video-large,
.fcnews-card--video-small {
	box-shadow: var(--nf-shadow);
}

.fcnews-card--grid:hover,
.fcnews-card--video-large:hover,
.fcnews-card--video-small:hover {
	box-shadow: var(--nf-shadow-hover);
	transform: translateY(-2px);
}

.fcnews-card--grid:hover .fcnews-card__img,
.fcnews-card--video-large:hover .fcnews-card__img,
.fcnews-card--video-small:hover .fcnews-card__img {
	transform: scale(1.04);
}

.fcnews-card--grid:hover .fcnews-card__title a,
.fcnews-card--video-large:hover .fcnews-card__title a,
.fcnews-card--video-small:hover .fcnews-card__title a {
	color: var(--nf-accent);
}

/* Category block */
.fcnews-cat-block {
	margin-bottom: var(--nf-space-xl);
	padding-top: var(--nf-space-sm);
}

.fcnews-cat-block__head {
	display: flex;
	align-items: flex-end;
	gap: 1rem;
	margin-bottom: clamp(1.5rem, 2.75vw, 2rem);
	flex-wrap: wrap;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-cat-block__title {
	position: relative;
	font-family: var(--nf-font);
	font-size: clamp(0.82rem, 1.2vw, 0.95rem);
	margin: 0;
	padding-bottom: 0.55rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nf-ink);
}

.fcnews-cat-block__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2.5rem;
	height: 3px;
	background: var(--nf-accent);
}

.fcnews-cat-block__rule {
	flex: 1 1 40px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--nf-line-strong) 20%, transparent);
	margin-bottom: 0.35rem;
}

.fcnews-cat-block__more {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	color: var(--nf-accent);
}

.fcnews-cat-block__more:hover {
	color: var(--nf-accent-hover);
}

.fcnews-cat-block__grid {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: clamp(1.35rem, 2.5vw, 2rem);
	align-items: start;
}

@media (max-width: 989px) {
	.fcnews-cat-block__grid {
		grid-template-columns: 1fr;
		gap: var(--nf-space-md);
	}
}

.fcnews-cat-block__lead .fcnews-card--lead .fcnews-card__title {
	font-size: clamp(1.35rem, 2.25vw, 1.65rem);
	line-height: 1.12;
}

.fcnews-cat-block__stack {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	padding: 0.5rem 0.85rem;
	background: #fafaf8;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Most read */
.fcnews-mostread {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.fcnews-mostread__item {
	display: flex;
	gap: 1.15rem;
	align-items: flex-start;
	padding: 1rem 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-mostread__item:first-child {
	padding-top: 0;
}

.fcnews-mostread__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fcnews-mostread__rank {
	font-family: var(--nf-font);
	font-size: clamp(2rem, 3.5vw, 2.35rem);
	font-weight: 200;
	color: rgba(0, 0, 0, 0.14);
	line-height: 0.95;
	min-width: 2.75rem;
	letter-spacing: -0.04em;
}

.fcnews-mostread__link {
	font-family: var(--nf-display);
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	font-weight: 700;
	line-height: 1.32;
	text-decoration: none;
	color: var(--nf-ink);
}

.fcnews-mostread__link:hover {
	color: var(--nf-accent);
}

/* Trending topic pills */
.fcnews-trending-topics {
	margin-bottom: var(--nf-space-lg);
}

.fcnews-trending-topics__row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	padding: 0.85rem 0;
	border-top: 1px solid var(--nf-line);
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-trending-topics__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--nf-ink-soft);
	background: var(--nf-surface);
	border: 1px solid var(--nf-line);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fcnews-trending-topics__pill:hover {
	border-color: var(--nf-ink-soft);
	background: #fff;
	color: var(--nf-ink);
}

/* Video grid */
.fcnews-video-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: clamp(1.15rem, 2vw, 1.5rem);
	min-height: 280px;
}

@media (max-width: 850px) {
	.fcnews-video-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}
}

.fcnews-video-grid .fcnews-card:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.fcnews-video-grid .fcnews-card:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}

.fcnews-video-grid .fcnews-card:nth-child(3) {
	grid-column: 2;
	grid-row: 2;
}

@media (max-width: 850px) {
	.fcnews-video-grid .fcnews-card:nth-child(1),
	.fcnews-video-grid .fcnews-card:nth-child(2),
	.fcnews-video-grid .fcnews-card:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
	}
}

.fcnews-card--video-large .fcnews-card__media,
.fcnews-card--video-small .fcnews-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
}

.fcnews-card--video-large .fcnews-card__media {
	min-height: 220px;
}

.fcnews-card--video-large .fcnews-card__media::after,
.fcnews-card--video-small .fcnews-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 100%);
	pointer-events: none;
}

.fcnews-card--video-large .fcnews-card__img,
.fcnews-card--video-small .fcnews-card__img {
	filter: contrast(1.1) saturate(1.08);
}

.fcnews-card--video-large .fcnews-card__body,
.fcnews-card--video-small .fcnews-card__body {
	padding: 0.85rem 0 0;
}

.fcnews-card--video-large .fcnews-card__title {
	font-size: 1.2rem;
}

/* Newsletter block */
.fcnews-newsletter-block {
	margin: var(--nf-space-xl) 0 var(--nf-space-lg);
	border-radius: var(--nf-radius-lg);
	background: linear-gradient(135deg, #0b0b0b 0%, #242424 48%, #1a1a1a 100%);
	color: #fff;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.fcnews-newsletter-block__inner {
	padding: clamp(2.15rem, 4.5vw, 3.25rem);
	max-width: 38rem;
}

.fcnews-newsletter-block__title {
	font-family: var(--nf-display);
	font-size: clamp(1.85rem, 3.5vw, 2.45rem);
	margin: 0 0 0.65rem;
	letter-spacing: var(--nf-track);
	line-height: 1.12;
	font-weight: 800;
}

.fcnews-newsletter-block__lead {
	margin: 0 0 1.5rem;
	font-size: 1.04rem;
	opacity: 0.9;
	line-height: 1.55;
	max-width: 32rem;
}

.fcnews-newsletter-block__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.fcnews-newsletter-block__input {
	flex: 1 1 240px;
	min-height: 52px;
	border-radius: var(--nf-radius);
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	padding: 0 1.1rem;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fcnews-newsletter-block__input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(196, 18, 18, 0.25);
}

.fcnews-newsletter-block__input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.fcnews-newsletter-block__btn {
	min-height: 52px;
	padding: 0 1.85rem;
	border-radius: var(--nf-radius);
	border: 0;
	background: var(--nf-accent);
	color: #fff;
	font-weight: 800;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 24px rgba(196, 18, 18, 0.35);
}

.fcnews-newsletter-block__btn:hover {
	background: #fff;
	color: #111;
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* Sidebar modules */
.fcnews-side {
	padding: 0.35rem 0 0;
}

.fcnews-side__section {
	margin-bottom: var(--nf-space-md);
	padding: 1.15rem 1rem;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	background: #fff;
	box-shadow: var(--nf-shadow);
}

.fcnews-side__section:last-child {
	margin-bottom: 0;
}

.fcnews-side__heading {
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin: 0 0 1.1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--nf-line);
	color: var(--nf-ink);
	font-family: var(--nf-font);
}

.fcnews-side__ranked {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

.fcnews-side__ranked-item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--nf-line);
	margin: 0;
}

.fcnews-side__ranked-item:first-child {
	padding-top: 0;
}

.fcnews-side__ranked-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fcnews-side__rank {
	font-family: var(--nf-font);
	font-size: 1.65rem;
	font-weight: 200;
	color: rgba(0, 0, 0, 0.16);
	min-width: 2.5rem;
	line-height: 1;
	letter-spacing: -0.03em;
}

.fcnews-side__ranked-link {
	font-family: var(--nf-display);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	color: var(--nf-ink);
	transition: color 0.2s ease;
}

.fcnews-side__ranked-link:hover {
	color: var(--nf-accent);
}

.fcnews-side__thumbs {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-side__thumb {
	margin-bottom: 0;
}

.fcnews-side__thumb + .fcnews-side__thumb {
	margin-top: 0.15rem;
}

.fcnews-side__thumb-link {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	text-decoration: none;
	color: inherit;
	padding: 0.65rem 0.25rem;
	border-radius: var(--nf-radius);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fcnews-side__thumb-link:hover {
	background: var(--nf-surface);
	box-shadow: var(--nf-shadow);
	transform: translateY(-1px);
}

.fcnews-side__thumb-img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--nf-radius);
	display: block;
	transition: transform 0.35s ease;
}

.fcnews-side__thumb-link:hover .fcnews-side__thumb-img {
	transform: scale(1.04);
}

.fcnews-side__thumb-ph {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--nf-radius);
	background: var(--nf-surface-2);
	display: block;
}

.fcnews-side__thumb-title {
	font-family: var(--nf-display);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.32;
	color: var(--nf-ink);
	transition: color 0.2s ease;
}

.fcnews-side__thumb-link:hover .fcnews-side__thumb-title {
	color: var(--nf-accent);
}

/* Sidebar — categories list */
.fcnews-side__categories .fcnews-side__cats {
	margin-top: 0.35rem;
}

.fcnews-side__cats {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-side__cats-item {
	margin: 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-side__cats-item:last-child {
	border-bottom: 0;
}

.fcnews-side__cats-link {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.65rem;
	padding: 0.65rem 0.35rem;
	margin: 0 -0.35rem;
	border-radius: var(--nf-radius);
	text-decoration: none;
	color: var(--nf-ink);
	transition: color 0.2s ease, background 0.2s ease;
}

.fcnews-side__cats-link:hover,
.fcnews-side__cats-link:focus {
	color: var(--nf-accent);
	background: var(--nf-surface);
}

.fcnews-side__cats-name {
	font-family: var(--nf-display);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
}

.fcnews-side__cats-count {
	flex-shrink: 0;
	font-family: var(--nf-font);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--nf-muted);
	transition: color 0.2s ease;
}

.fcnews-side__cats-link:hover .fcnews-side__cats-count,
.fcnews-side__cats-link:focus .fcnews-side__cats-count {
	color: var(--nf-accent);
}

.fcnews-side__empty {
	font-size: 0.85rem;
	color: var(--nf-muted);
	margin: 0;
}

.fcnews-side__cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.fcnews-side__tag {
	font-size: 0.78rem;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	background: var(--nf-surface);
	border: 1px solid var(--nf-line);
	text-decoration: none;
	color: var(--nf-ink-soft);
	font-weight: 500;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.fcnews-side__tag:hover {
	border-color: var(--nf-ink-soft);
	color: var(--nf-ink);
}

.fcnews-side__nl-text {
	font-size: 0.88rem;
	color: var(--nf-muted);
	line-height: 1.5;
	margin: 0 0 0.75rem;
}

.fcnews-side__nl-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.fcnews-side__nl-form input[type="email"] {
	min-height: 44px;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	padding: 0 0.85rem;
	font-size: 0.92rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fcnews-side__nl-form input[type="email"]:focus {
	outline: none;
	border-color: var(--nf-accent);
	box-shadow: 0 0 0 3px var(--nf-accent-soft);
}

.fcnews-side__nl-btn {
	min-height: 42px;
	border: 0;
	border-radius: var(--nf-radius);
	background: var(--nf-ink);
	color: #fff;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
}

.fcnews-side__nl-btn:hover {
	background: var(--nf-accent);
}

/* Sidebar area: strip WP widget chrome */
.fcnews-sidebar-area {
	padding: 0;
	background: transparent;
}

.fcnews-sidebar-area .widget {
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
	background: transparent;
}

/* --- Site footer (child footer.php — editorial 4 columns + bar) --- */
#footer.footer-wrapper.fcnews-site-footer-wrap {
	background: #0f0f0f;
	color: rgba(255, 255, 255, 0.82);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fcnews-site-footer {
	font-family: var(--nf-font);
}

.fcnews-site-footer__container {
	max-width: var(--nf-max);
}

.fcnews-site-footer__main {
	padding: clamp(2.5rem, 5vw, 3.75rem) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fcnews-site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.75rem, 3vw, 2.5rem);
	align-items: start;
}

@media (min-width: 990px) {
	.fcnews-site-footer__col {
		padding-left: clamp(1rem, 2vw, 1.5rem);
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}

	.fcnews-site-footer__col:first-child {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 989px) {
	.fcnews-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fcnews-site-footer__col {
		border-left: 0;
		padding-left: 0;
	}
}

@media (max-width: 550px) {
	.fcnews-site-footer__grid {
		grid-template-columns: 1fr;
	}
}

.fcnews-site-footer__heading {
	margin: 0 0 1.1rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	font-family: var(--nf-font);
}

.fcnews-site-footer__logo {
	margin-bottom: 1rem;
}

.fcnews-site-footer__logo .custom-logo-link,
.fcnews-site-footer__logo .custom-logo {
	display: inline-block;
	max-height: 44px;
	width: auto;
	height: auto;
}

.fcnews-site-footer__logo-text {
	font-family: var(--nf-display);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 700;
	letter-spacing: var(--nf-track);
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-site-footer__logo-text:hover,
.fcnews-site-footer__logo-text:focus {
	color: var(--nf-accent);
}

.fcnews-site-footer__about-text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.68);
	max-width: 28rem;
}

.fcnews-site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
}

.fcnews-site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: var(--nf-radius);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.fcnews-site-footer__social-link:hover,
.fcnews-site-footer__social-link:focus {
	color: #fff;
	border-color: var(--nf-accent);
	background: rgba(196, 18, 18, 0.15);
	transform: translateY(-2px);
}

.fcnews-site-footer__social-link--static {
	cursor: default;
	opacity: 0.5;
	pointer-events: none;
}

.fcnews-site-footer__social-icon {
	display: flex;
	line-height: 0;
}

.fcnews-site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-site-footer__list li + li {
	margin-top: 0.55rem;
}

.fcnews-site-footer__empty {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.45);
}

.fcnews-site-footer__link {
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease;
	border-bottom: 1px solid transparent;
}

.fcnews-site-footer__link:hover,
.fcnews-site-footer__link:focus {
	color: #fff;
	border-bottom-color: var(--nf-accent);
}

.fcnews-site-footer__latest {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.fcnews-site-footer__latest-link {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.fcnews-site-footer__latest-link:hover .fcnews-site-footer__latest-title,
.fcnews-site-footer__latest-link:focus .fcnews-site-footer__latest-title {
	color: #fff;
}

.fcnews-site-footer__latest-thumb {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: var(--nf-radius);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}

.fcnews-site-footer__latest-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fcnews-site-footer__latest-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 56px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.fcnews-site-footer__latest-title {
	flex: 1;
	font-size: 0.88rem;
	line-height: 1.35;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	transition: color 0.2s ease;
}

.fcnews-site-footer__nl-intro {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.62);
}

.fcnews-site-footer__nl-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.fcnews-site-footer__nl-input {
	flex: 1 1 140px;
	min-height: 44px;
	padding: 0 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--nf-radius);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 0.9rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fcnews-site-footer__nl-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.fcnews-site-footer__nl-input:focus {
	outline: none;
	border-color: var(--nf-accent);
	box-shadow: 0 0 0 3px var(--nf-accent-soft);
}

.fcnews-site-footer__nl-btn {
	min-height: 44px;
	padding: 0 1.15rem;
	border: 0;
	border-radius: var(--nf-radius);
	background: var(--nf-accent);
	color: #fff;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.fcnews-site-footer__nl-btn:hover,
.fcnews-site-footer__nl-btn:focus {
	background: var(--nf-accent-hover);
	transform: translateY(-1px);
}

@media (max-width: 549px) {
	.fcnews-site-footer__nl-row {
		flex-direction: column;
	}

	.fcnews-site-footer__nl-btn {
		width: 100%;
	}
}

.fcnews-site-footer__bottom {
	background: #080808;
	padding: 1.1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fcnews-site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
}

.fcnews-site-footer__copyright {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.45);
}

.fcnews-site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1.25rem;
}

.fcnews-site-footer__legal-link {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.fcnews-site-footer__legal-link:hover,
.fcnews-site-footer__legal-link:focus {
	color: rgba(255, 255, 255, 0.92);
	border-bottom-color: var(--nf-accent);
}

@media (max-width: 767px) {
	.fcnews-site-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}

	.fcnews-site-footer__legal {
		justify-content: center;
	}
}

/* Legacy: UX block footer widgets (optional homepage block) */
.fcnews-footer-blocks {
	padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.fcnews-footer-blocks .fcnews-container,
.fcnews-footer-blocks .section .section-content,
.fcnews-footer-blocks .row {
	max-width: var(--nf-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: clamp(1rem, 3vw, 1.5rem) !important;
	padding-right: clamp(1rem, 3vw, 1.5rem) !important;
}

/* --- Category archive — magazine layout --- */
.fcnews-archive--magazine #content {
	background: #fff;
}

.fcnews-container--archive {
	padding-top: clamp(0.75rem, 2vw, 1.25rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fcnews-cat-masthead {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.fcnews-cat-masthead__title {
	font-family: var(--nf-display);
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	font-weight: 700;
	letter-spacing: var(--nf-track);
	line-height: 1.1;
	margin: 0 0 0.75rem;
	color: var(--nf-ink);
}

.fcnews-cat-masthead__desc {
	max-width: 42rem;
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--nf-muted);
}

.fcnews-cat-masthead__desc--muted {
	font-style: italic;
}

.fcnews-cat-masthead__rule {
	margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--nf-line-strong), transparent);
}

/* Featured split (card-article magazine-split) */
.fcnews-archive--magazine .fcnews-card--magazine-split {
	margin: 0 0 clamp(1.5rem, 3vw, 2rem);
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.fcnews-archive--magazine .fcnews-card--magazine-split:hover {
	box-shadow: none;
	transform: none;
}

.fcnews-card__split {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(1.25rem, 3vw, 2.25rem);
	align-items: center;
	padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
	border-bottom: 1px solid var(--nf-line);
}

@media (max-width: 767px) {
	.fcnews-card__split {
		grid-template-columns: 1fr;
		align-items: start;
	}
}

.fcnews-card__media--split {
	position: relative;
	display: block;
	border-radius: var(--nf-radius-lg);
	overflow: hidden;
	background: var(--nf-surface-2);
	aspect-ratio: 16 / 9;
	box-shadow: var(--nf-shadow);
	transition: box-shadow 0.3s ease;
}

.fcnews-archive--magazine .fcnews-card--magazine-split:hover .fcnews-card__media--split {
	box-shadow: var(--nf-shadow-hover);
}

.fcnews-card__media--split .fcnews-card__img,
.fcnews-card__placeholder--split {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fcnews-archive--magazine .fcnews-card--magazine-split:hover .fcnews-card__media--split .fcnews-card__img {
	transform: scale(1.04);
}

.fcnews-card__body--split {
	padding: 0.25rem 0;
}

.fcnews-card__title--split {
	font-family: var(--nf-display);
	font-size: clamp(1.65rem, 3vw, 2.15rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: var(--nf-track);
	margin: 0.5rem 0 0.75rem;
}

.fcnews-card__title--split a {
	color: var(--nf-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-card__title--split a:hover,
.fcnews-card__title--split a:focus {
	color: var(--nf-accent);
}

.fcnews-card__excerpt--split {
	font-size: 1rem;
	line-height: 1.55;
	color: var(--nf-muted);
	margin: 0 0 1rem;
}

.fcnews-cat-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	gap: clamp(1.75rem, 4vw, 2.75rem);
	align-items: start;
}

@media (max-width: 989px) {
	.fcnews-cat-layout {
		grid-template-columns: 1fr;
	}
}

.fcnews-cat-layout__aside {
	position: sticky;
	top: calc(var(--flatsome-scroll-padding-top, 0px) + 1rem);
}

@media (max-width: 989px) {
	.fcnews-cat-layout__aside {
		position: static;
		order: 3;
	}
}

/* Feed list */
.fcnews-post-list--magazine {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.fcnews-cat-feed {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Horizontal article cards */
.fcnews-archive-feed-card {
	display: grid;
	grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
	gap: 1.15rem 1.35rem;
	align-items: start;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--nf-line);
	margin: 0;
	transition: box-shadow 0.25s ease, background 0.25s ease;
	border-radius: var(--nf-radius-lg);
}

@media (max-width: 550px) {
	.fcnews-archive-feed-card {
		grid-template-columns: 1fr;
	}
}

.fcnews-archive-feed-card:hover {
	background: rgba(0, 0, 0, 0.02);
	box-shadow: var(--nf-shadow);
}

.fcnews-archive-feed-card__media {
	display: block;
	border-radius: var(--nf-radius);
	overflow: hidden;
	text-decoration: none;
}

.fcnews-archive-feed-card__media-inner {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--nf-surface-2);
	border-radius: var(--nf-radius);
}

.fcnews-archive-feed-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fcnews-archive-feed-card:hover .fcnews-archive-feed-card__img {
	transform: scale(1.05);
}

.fcnews-archive-feed-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 8rem;
	background: linear-gradient(135deg, #e8e8e8, #f4f4f4);
}

.fcnews-archive-feed-card__badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nf-accent);
	text-decoration: none;
	margin-bottom: 0.35rem;
}

.fcnews-archive-feed-card__badge:hover,
.fcnews-archive-feed-card__badge:focus {
	color: var(--nf-accent-hover);
}

.fcnews-archive-feed-card__title {
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
}

.fcnews-archive-feed-card__title a {
	color: var(--nf-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-archive-feed-card:hover .fcnews-archive-feed-card__title a {
	color: var(--nf-accent);
}

.fcnews-archive-feed-card__date {
	display: block;
	font-size: 0.8rem;
	color: var(--nf-muted);
	margin-bottom: 0.45rem;
}

.fcnews-archive-feed-card__excerpt {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--nf-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Category archive sidebar — unified editorial modules */
.fcnews-cat-side {
	display: flex;
	flex-direction: column;
	gap: var(--nf-space-md);
}

.fcnews-cat-side__block {
	padding: 1.15rem 1rem;
	background: #fff;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	box-shadow: var(--nf-shadow);
}

.fcnews-cat-side__block:last-child {
	margin-bottom: 0;
}

.fcnews-cat-side__title {
	font-family: var(--nf-font);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nf-ink);
	margin: 0 0 1.1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-cat-side__ranked {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
	counter-reset: fcnews-rank;
}

.fcnews-cat-side__ranked-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	margin: 0;
	padding: 0.75rem 0;
	line-height: 1.35;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-cat-side__ranked-item:first-child {
	padding-top: 0;
}

.fcnews-cat-side__ranked-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fcnews-cat-side__rank {
	flex: 0 0 auto;
	min-width: 1.75rem;
	font-family: var(--nf-font);
	font-size: 1.5rem;
	font-weight: 200;
	color: rgba(0, 0, 0, 0.18);
	line-height: 1;
	letter-spacing: -0.03em;
}

.fcnews-cat-side__ranked-link {
	flex: 1;
	min-width: 0;
	font-family: var(--nf-display);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.32;
	color: var(--nf-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-cat-side__ranked-link:hover,
.fcnews-cat-side__ranked-link:focus {
	color: var(--nf-accent);
}

/* Most Read — thumbnails */
.fcnews-cat-side__thumbs {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
}

.fcnews-cat-side__thumb {
	margin: 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-cat-side__thumb:last-child {
	border-bottom: 0;
}

.fcnews-cat-side__thumb-link {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	padding: 0.65rem 0.25rem;
	margin: 0 -0.25rem;
	border-radius: var(--nf-radius);
	text-decoration: none;
	color: inherit;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fcnews-cat-side__thumb-link:hover,
.fcnews-cat-side__thumb-link:focus {
	background: var(--nf-surface);
	box-shadow: var(--nf-shadow);
	transform: translateY(-1px);
}

.fcnews-cat-side__thumb-img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--nf-radius);
	display: block;
	transition: transform 0.35s ease;
}

.fcnews-cat-side__thumb-link:hover .fcnews-cat-side__thumb-img,
.fcnews-cat-side__thumb-link:focus .fcnews-cat-side__thumb-img {
	transform: scale(1.04);
}

.fcnews-cat-side__thumb-ph {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--nf-radius);
	background: var(--nf-surface-2);
	display: block;
}

.fcnews-cat-side__thumb-title {
	font-family: var(--nf-display);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.32;
	color: var(--nf-ink);
	transition: color 0.2s ease;
}

.fcnews-cat-side__thumb-link:hover .fcnews-cat-side__thumb-title,
.fcnews-cat-side__thumb-link:focus .fcnews-cat-side__thumb-title {
	color: var(--nf-accent);
}

/* Categories navigation */
.fcnews-cat-side__cats {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
}

.fcnews-cat-side__cats-item {
	margin: 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-cat-side__cats-item:last-child {
	border-bottom: 0;
}

.fcnews-cat-side__cats-link {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.65rem;
	padding: 0.65rem 0.35rem;
	margin: 0 -0.35rem;
	border-radius: var(--nf-radius);
	text-decoration: none;
	color: var(--nf-ink);
	transition: color 0.2s ease, background 0.2s ease;
}

.fcnews-cat-side__cats-link:hover,
.fcnews-cat-side__cats-link:focus {
	color: var(--nf-accent);
	background: var(--nf-surface);
}

.fcnews-cat-side__cats-name {
	font-family: var(--nf-display);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
}

.fcnews-cat-side__cats-count {
	flex-shrink: 0;
	font-family: var(--nf-font);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--nf-muted);
	transition: color 0.2s ease;
}

.fcnews-cat-side__cats-link:hover .fcnews-cat-side__cats-count,
.fcnews-cat-side__cats-link:focus .fcnews-cat-side__cats-count {
	color: var(--nf-accent);
}

.fcnews-cat-side__tags {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.fcnews-cat-side__tags > li {
	list-style: none;
	margin: 0;
}

.fcnews-cat-side__tag {
	display: inline-block;
	padding: 0.38rem 0.72rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--nf-ink-soft);
	background: var(--nf-surface);
	border: 1px solid var(--nf-line);
	border-radius: 999px;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.fcnews-cat-side__tag:hover,
.fcnews-cat-side__tag:focus {
	color: var(--nf-accent);
	border-color: var(--nf-accent-soft);
	background: var(--nf-accent-soft);
	transform: translateY(-1px);
}

.fcnews-cat-side__empty {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--nf-muted);
}

.fcnews-cat-side__nl-text {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--nf-muted);
}

.fcnews-cat-side__nl-form {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.fcnews-cat-side__nl-input {
	width: 100%;
	min-height: 44px;
	padding: 0 0.85rem;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	font-size: 0.92rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fcnews-cat-side__nl-input:focus {
	outline: none;
	border-color: var(--nf-accent);
	box-shadow: 0 0 0 3px var(--nf-accent-soft);
}

.fcnews-cat-side__nl-btn {
	min-height: 44px;
	border: 0;
	border-radius: var(--nf-radius);
	background: var(--nf-ink);
	color: #fff;
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fcnews-cat-side__nl-btn:hover,
.fcnews-cat-side__nl-btn:focus {
	background: var(--nf-accent);
	transform: translateY(-1px);
}

/* Pagination */
.fcnews-pagination {
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--nf-line);
}

.fcnews-pagination__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-pagination__item .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0 0.65rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--nf-ink-soft);
	text-decoration: none;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.fcnews-pagination__item .page-numbers:hover,
.fcnews-pagination__item .page-numbers:focus {
	color: var(--nf-accent);
	border-color: var(--nf-accent);
	background: var(--nf-accent-soft);
}

.fcnews-pagination__item span.page-numbers.current,
.fcnews-pagination__item .page-numbers.current {
	color: #fff;
	background: var(--nf-ink);
	border-color: var(--nf-ink);
}

.fcnews-pagination__item .page-numbers.prev,
.fcnews-pagination__item .page-numbers.next {
	min-width: auto;
	padding: 0 1rem;
}

/* --- Newsroom header (child header.php) --- */
#header.header--fcnews {
	position: relative;
	z-index: 200;
	background: transparent;
	box-shadow: none;
	margin: 0;
	padding: 0;
	border: 0;
}

/* Flatsome sticky / content wrapper can add top padding to #main — remove gap above breaking bar */
body.fcnews-layout #main,
body.home #main,
body.front-page #main {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

#content.fcnews-front > .fcnews-breaking-outer:first-child {
	margin-top: 0;
}

#content.fcnews-front {
	padding-top: 0;
}

#header.header--fcnews .header-wrapper {
	display: none;
}

.fcnews-header-sticky {
	position: sticky;
	top: 0;
	z-index: 200;
	transition: box-shadow 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

html.fcnews-header-is-scrolled .fcnews-header-sticky {
	background: rgba(12, 12, 12, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.admin-bar .fcnews-header-sticky {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .fcnews-header-sticky {
		top: 46px;
	}
}

.fcnews-topbar {
	min-height: 40px;
	background: #0d0d0d;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fcnews-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 0.35rem;
	padding-bottom: 0.35rem;
}

.fcnews-topbar__date {
	font-weight: 600;
	letter-spacing: 0.04em;
}

.fcnews-topbar__shortcuts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	flex: 1;
	justify-content: center;
}

.fcnews-topbar__link {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.65rem;
	font-weight: 700;
	transition: color 0.2s ease;
}

.fcnews-topbar__link:hover,
.fcnews-topbar__link:focus {
	color: #fff;
}

.fcnews-topbar__icons {
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.fcnews-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
	cursor: pointer;
	border-radius: var(--nf-radius);
	transition: color 0.2s ease, background 0.2s ease;
}

.fcnews-icon-btn:hover,
.fcnews-icon-btn:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.fcnews-icon-btn--top {
	width: 2.15rem;
	height: 2.15rem;
}

.fcnews-svg-icon {
	display: block;
}

.fcnews-mainbar {
	position: relative;
	background: rgba(18, 18, 18, 0.88);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: visible;
}

html.fcnews-header-is-scrolled .fcnews-mainbar {
	background: transparent;
	border-bottom-color: transparent;
}

.fcnews-mainbar__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem 1.5rem;
	min-height: 64px;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.fcnews-header-logo,
.fcnews-mainbar__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.fcnews-header-logo__img,
.fcnews-mainbar__logo .custom-logo,
.fcnews-mainbar__logo img {
	max-height: 42px;
	width: auto;
	height: auto;
}

.fcnews-header-logo--text {
	font-family: var(--nf-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: var(--nf-track);
}

.fcnews-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--nf-radius);
	cursor: pointer;
}

.fcnews-burger__bar {
	display: block;
	height: 2px;
	width: 1.1rem;
	margin: 0 auto;
	background: #fff;
	border-radius: 1px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

html.fcnews-drawer-is-open .fcnews-burger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

html.fcnews-drawer-is-open .fcnews-burger__bar:nth-child(2) {
	opacity: 0;
}

html.fcnews-drawer-is-open .fcnews-burger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.fcnews-mainbar__nav {
	position: relative;
	justify-self: center;
	min-width: 0;
	width: 100%;
	max-width: 720px;
}

.fcnews-primary-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.15rem 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-primary-nav > li {
	position: relative;
}

.fcnews-primary-nav > li > a {
	display: inline-block;
	position: relative;
	padding: 0.35rem 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-primary-nav > li > a:hover,
.fcnews-primary-nav > li > a:focus,
.fcnews-primary-nav > li.current-menu-item > a {
	color: #fff;
}

.fcnews-nav-link__line {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--nf-accent);
	transition: width 0.28s ease;
}

.fcnews-primary-nav > li > a:hover .fcnews-nav-link__line,
.fcnews-primary-nav > li > a:focus .fcnews-nav-link__line,
.fcnews-primary-nav > li.current-menu-item > a .fcnews-nav-link__line {
	width: 100%;
}

/* Standard dropdown (nested menu items) */
.fcnews-primary-nav .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--nf-radius);
	box-shadow: var(--nf-shadow-hover);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 250;
}

.fcnews-primary-nav li:hover > .sub-menu,
.fcnews-primary-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fcnews-primary-nav .sub-menu a {
	display: block;
	padding: 0.45rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
}

.fcnews-primary-nav .sub-menu a:hover,
.fcnews-primary-nav .sub-menu a:focus {
	color: var(--nf-accent);
	background: rgba(255, 255, 255, 0.04);
}

/* Mega menu — fixed below header shell (--fcnews-mega-top from JS) */
.fcnews-menu-item--mega {
	position: static;
}

.fcnews-mega {
	position: fixed;
	left: 50%;
	top: var(--fcnews-mega-top, 120px);
	width: min(var(--nf-max), calc(100vw - 2rem));
	padding: 1.5rem 0 1.75rem;
	background: #121212;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--nf-radius-lg);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 260;
	pointer-events: none;
}

.fcnews-menu-item--mega:hover > .fcnews-mega,
.fcnews-menu-item--mega:focus-within > .fcnews-mega {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.fcnews-mega__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 1.5rem 2rem;
	align-items: start;
}

@media (max-width: 767px) {
	.fcnews-mega__grid {
		grid-template-columns: 1fr;
	}
}

.fcnews-mega__featured {
	min-width: 0;
}

.fcnews-mega__feat-link {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	text-decoration: none;
	color: #fff;
}

.fcnews-mega__feat-media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--nf-radius-lg);
	background: #222;
}

.fcnews-mega__feat-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fcnews-mega__feat-ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 140px;
	background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.fcnews-mega__feat-title {
	font-family: var(--nf-display);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.25;
}

.fcnews-mega__feat-link:hover .fcnews-mega__feat-title,
.fcnews-mega__feat-link:focus .fcnews-mega__feat-title {
	color: var(--nf-accent);
}

.fcnews-mega__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.fcnews-mega__row {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.88);
}

.fcnews-mega__row:hover .fcnews-mega__row-title,
.fcnews-mega__row:focus .fcnews-mega__row-title {
	color: var(--nf-accent);
}

.fcnews-mega__thumb {
	flex: 0 0 64px;
	width: 64px;
	border-radius: var(--nf-radius);
	overflow: hidden;
	background: #2a2a2a;
	aspect-ratio: 16 / 9;
}

.fcnews-mega__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fcnews-mega__thumb-ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 36px;
	background: #333;
}

.fcnews-mega__row-title {
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
}

.fcnews-mega__empty {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Search overlay */
.fcnews-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(3rem, 10vh, 6rem) 1rem 1rem;
}

.fcnews-search-overlay[hidden] {
	display: none !important;
}

.fcnews-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(6px);
}

.fcnews-search-overlay__panel {
	position: relative;
	width: min(720px, 100%);
	z-index: 1;
	background: #fff;
	border-radius: var(--nf-radius-lg);
	padding: 1.25rem 1.25rem 1.5rem;
	box-shadow: var(--nf-shadow-hover);
}

.fcnews-search-overlay__close {
	position: absolute;
	top: 0.65rem;
	right: 0.75rem;
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: var(--nf-muted);
}

.fcnews-search-overlay__form {
	display: flex;
	gap: 0.65rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

.fcnews-search-overlay__input {
	flex: 1 1 200px;
	min-height: 48px;
	padding: 0 1rem;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	font-size: 1rem;
}

.fcnews-search-overlay__submit {
	min-height: 48px;
	padding: 0 1.25rem;
	border: 0;
	border-radius: var(--nf-radius);
	background: var(--nf-ink);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

html.fcnews-search-is-open {
	overflow: hidden;
}

/* Mobile drawer */
.fcnews-drawer {
	position: fixed;
	inset: 0;
	z-index: 10040;
	pointer-events: none;
}

.fcnews-drawer:not([hidden]) {
	pointer-events: auto;
}

.fcnews-drawer[hidden] {
	display: none !important;
}

.fcnews-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fcnews-drawer:not([hidden]) .fcnews-drawer__backdrop {
	opacity: 1;
}

.fcnews-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(22rem, 92vw);
	max-width: 100%;
	background: #111;
	color: #fff;
	box-shadow: 8px 0 40px rgba(0, 0, 0, 0.4);
	transform: translateX(-100%);
	transition: transform 0.32s cubic-bezier(0.25, 0.1, 0.25, 1);
	display: flex;
	flex-direction: column;
}

.fcnews-drawer:not([hidden]) .fcnews-drawer__panel {
	transform: translateX(0);
}

.fcnews-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fcnews-drawer__title {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fcnews-drawer__close {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.fcnews-drawer__body {
	overflow-y: auto;
	padding: 0.75rem 0 1.5rem;
	flex: 1;
}

.fcnews-drawer__nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-drawer__nav > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fcnews-drawer__nav a {
	display: block;
	padding: 0.85rem 1.1rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.fcnews-drawer__nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0.5rem 1rem;
}

.fcnews-drawer__nav .sub-menu a {
	font-size: 0.88rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
}

html.fcnews-drawer-is-open {
	overflow: hidden;
}

@media (max-width: 989px) {
	.fcnews-mainbar__inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem 0.75rem;
	}

	.fcnews-mainbar__logo {
		flex: 1;
		min-width: 0;
	}

	.fcnews-burger {
		display: flex;
		order: 2;
	}

	.fcnews-mainbar__actions {
		order: 3;
	}

	.fcnews-mainbar__nav {
		display: none;
	}

	.fcnews-mega {
		display: none !important;
	}

	.fcnews-topbar__shortcuts {
		display: none;
	}
}

@media (min-width: 990px) {
	.fcnews-burger {
		display: none !important;
	}
}

/* --- Single article — editorial layout --- */
.fcnews-single--editorial {
	background: #fafaf8;
}

.fcnews-single--editorial #main,
.fcnews-single--editorial .page-wrapper {
	padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.fcnews-container--single {
	width: 100%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 3vw, 1.5rem);
	padding-right: clamp(1rem, 3vw, 1.5rem);
	padding-top: clamp(1rem, 3vw, 1.75rem);
}

.fcnews-single--editorial .fcnews-breadcrumbs {
	margin-bottom: 1.25rem;
	font-size: 0.82rem;
}

.fcnews-single--editorial .fcnews-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-single--editorial .fcnews-breadcrumbs__item a {
	color: var(--nf-muted);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-single--editorial .fcnews-breadcrumbs__item a:hover {
	color: var(--nf-accent);
}

.fcnews-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 720px) minmax(260px, 320px);
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
	justify-content: center;
}

.fcnews-article-layout__main {
	min-width: 0;
	width: 100%;
	max-width: 720px;
}

.fcnews-article-layout__aside {
	min-width: 0;
	width: 100%;
}

@media (min-width: 990px) {
	.fcnews-article-layout__aside.fcnews-sidebar-sticky {
		position: sticky;
		top: calc(var(--flatsome-scroll-padding-top, 0px) + 1rem);
		align-self: start;
		max-height: calc(100vh - var(--flatsome-scroll-padding-top, 0px) - 2rem);
		overflow-y: auto;
	}
}

@media (max-width: 989px) {
	.fcnews-article-layout {
		grid-template-columns: 1fr;
	}

	.fcnews-article-layout__aside.fcnews-sidebar-sticky {
		position: static;
		max-height: none;
		overflow: visible;
	}
}

/* Mobile TOC dropdown */
.fcnews-toc-dropdown {
	display: none;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	background: #fff;
	box-shadow: var(--nf-shadow);
	margin: 0 0 1.5rem;
}

.fcnews-toc-dropdown__summary {
	cursor: pointer;
	font-family: var(--nf-font);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.85rem 1rem;
	list-style: none;
}

.fcnews-toc-dropdown__summary::-webkit-details-marker {
	display: none;
}

.fcnews-toc-dropdown__summary::after {
	content: "";
	float: right;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 2px solid var(--nf-ink-soft);
	border-bottom: 2px solid var(--nf-ink-soft);
	transform: rotate(45deg);
	margin-top: 0.2rem;
}

.fcnews-toc-dropdown[open] .fcnews-toc-dropdown__summary::after {
	transform: rotate(-135deg);
	margin-top: 0.35rem;
}

.fcnews-toc-dropdown .fcnews-article-toc__inner {
	padding: 0 1rem 1rem;
}

@media (max-width: 989px) {
	.fcnews-toc-dropdown {
		display: block;
	}

	.fcnews-article-toc--sidebar {
		display: none !important;
	}
}

@media (min-width: 990px) {
	.fcnews-toc-dropdown {
		display: none !important;
	}
}

/* Article masthead */
.fcnews-article__masthead {
	margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.fcnews-single--editorial .fcnews-article__title {
	font-family: var(--nf-display);
	font-size: clamp(2.1rem, 4.5vw, 3.15rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin: 0 0 1.25rem;
	color: var(--nf-ink);
}

.fcnews-article__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	margin-bottom: 1rem;
}

.fcnews-article__byline {
	font-family: var(--nf-font);
	font-size: 0.95rem;
	color: var(--nf-muted);
}

.fcnews-article__author {
	font-weight: 600;
	color: var(--nf-ink-soft);
}

.fcnews-article__category {
	display: inline-block;
	font-family: var(--nf-font);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.28rem 0.55rem;
	border-radius: 3px;
	color: var(--nf-accent);
	background: var(--nf-accent-soft);
	border: 1px solid rgba(196, 18, 18, 0.2);
	transition: background 0.2s ease, color 0.2s ease;
}

.fcnews-article__category:hover {
	background: var(--nf-accent);
	color: #fff;
}

.fcnews-article__share {
	margin-top: 0.35rem;
	padding-top: 1rem;
	border-top: 1px solid var(--nf-line);
}

.fcnews-article__share .social-icons,
.fcnews-article__share .ux-social-icons {
	gap: 0.5rem;
}

/* Featured image */
.fcnews-article__featured {
	margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
	border-radius: var(--nf-radius-lg);
	overflow: hidden;
	background: var(--nf-surface-2);
	box-shadow: var(--nf-shadow);
}

.fcnews-article__featured-img {
	width: 100%;
	height: auto;
	display: block;
}

/* Article body typography */
.fcnews-article__content {
	font-family: var(--nf-font);
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--nf-ink-soft);
	max-width: 42rem;
}

.fcnews-article__content > p {
	margin: 0 0 1.35em;
}

.fcnews-article__content > h2,
.fcnews-article__content > h3,
.fcnews-article__content > h4 {
	font-family: var(--nf-display);
	color: var(--nf-ink);
	letter-spacing: var(--nf-track);
	margin: 2.25rem 0 1rem;
	line-height: 1.25;
}

.fcnews-article__content > h2 {
	font-size: clamp(1.55rem, 2.5vw, 1.85rem);
	font-weight: 800;
}

.fcnews-article__content > h3 {
	font-size: clamp(1.28rem, 2vw, 1.45rem);
	font-weight: 700;
}

.fcnews-article__content > h4 {
	font-size: 1.15rem;
	font-weight: 700;
}

.fcnews-article__content a {
	color: var(--nf-accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	transition: color 0.2s ease;
}

.fcnews-article__content a:hover {
	color: var(--nf-accent-hover);
}

.fcnews-article__content ul,
.fcnews-article__content ol {
	margin: 0 0 1.35em;
	padding-left: 1.35rem;
}

.fcnews-article__content li {
	margin-bottom: 0.5em;
}

.fcnews-article__content blockquote {
	margin: 1.75rem 0;
	padding: 1rem 0 1rem 1.25rem;
	border-left: 4px solid var(--nf-accent);
	font-family: var(--nf-display);
	font-size: 1.15rem;
	line-height: 1.55;
	color: var(--nf-ink);
	background: rgba(0, 0, 0, 0.02);
	border-radius: 0 var(--nf-radius) var(--nf-radius) 0;
}

.fcnews-article__content blockquote cite {
	display: block;
	margin-top: 0.75rem;
	font-family: var(--nf-font);
	font-size: 0.88rem;
	font-style: normal;
	color: var(--nf-muted);
}

.fcnews-page-links {
	margin: 2rem 0;
	font-size: 0.95rem;
}

/* Author box */
.fcnews-single--editorial .fcnews-author-box {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-top: clamp(1.75rem, 3vw, 2.25rem);
	border-top: 1px solid var(--nf-line);
	display: flex;
	gap: 1.15rem;
	align-items: flex-start;
}

.fcnews-author-box__avatar img {
	border-radius: 50%;
	display: block;
}

.fcnews-author-box__name {
	font-family: var(--nf-display);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.fcnews-author-box__bio {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--nf-muted);
}

/* Article sidebar modules */
.fcnews-article-aside {
	display: flex;
	flex-direction: column;
	gap: var(--nf-space-md);
}

.fcnews-aside-mod {
	padding: 1.15rem 1rem;
	background: #fff;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	box-shadow: var(--nf-shadow);
}

.fcnews-aside-mod__title {
	font-family: var(--nf-font);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nf-ink);
	margin: 0 0 1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-aside-mod__lead {
	margin: 0 0 0.85rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--nf-muted);
}

.fcnews-aside-mod__empty {
	margin: 0;
	font-size: 0.85rem;
	color: var(--nf-muted);
}

.fcnews-article-toc--sidebar .fcnews-article-toc__inner {
	max-height: min(60vh, 22rem);
	overflow-y: auto;
	padding-right: 0.25rem;
}

.fcnews-article-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-article-toc__item {
	margin: 0;
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-article-toc__item:last-child {
	border-bottom: 0;
}

.fcnews-article-toc__item--sub {
	padding-left: 0.65rem;
}

.fcnews-article-toc__item a {
	font-family: var(--nf-display);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--nf-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-article-toc__item a:hover {
	color: var(--nf-accent);
}

.fcnews-article-toc__empty {
	margin: 0;
	font-size: 0.85rem;
	color: var(--nf-muted);
}

.fcnews-aside-most {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-aside-most__item {
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-aside-most__item:last-child {
	border-bottom: 0;
}

.fcnews-aside-most__link {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0.65rem;
	align-items: start;
	padding: 0.65rem 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.fcnews-aside-most__link:hover .fcnews-aside-most__title {
	color: var(--nf-accent);
}

.fcnews-aside-most__thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--nf-radius);
	display: block;
}

.fcnews-aside-most__thumb--ph {
	background: var(--nf-surface-2);
	min-height: 48px;
}

.fcnews-aside-most__title {
	font-family: var(--nf-display);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.32;
	color: var(--nf-ink);
	transition: color 0.2s ease;
}

.fcnews-aside-related {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-aside-related__item {
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-aside-related__item:last-child {
	border-bottom: 0;
}

.fcnews-aside-related__link {
	font-family: var(--nf-display);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--nf-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-aside-related__link:hover {
	color: var(--nf-accent);
}

.fcnews-aside-mod__form {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.fcnews-aside-mod__input {
	width: 100%;
	min-height: 44px;
	padding: 0 0.85rem;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	font-size: 0.9rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fcnews-aside-mod__input:focus {
	outline: none;
	border-color: var(--nf-accent);
	box-shadow: 0 0 0 3px var(--nf-accent-soft);
}

.fcnews-aside-mod__btn {
	min-height: 44px;
	border: 0;
	border-radius: var(--nf-radius);
	background: var(--nf-ink);
	color: #fff;
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s ease;
}

.fcnews-aside-mod__btn:hover {
	background: var(--nf-accent);
}

/* Related posts (bottom) */
.fcnews-related-posts {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-top: clamp(2rem, 4vw, 2.75rem);
	border-top: 1px solid var(--nf-line);
	max-width: 720px;
}

.fcnews-related-posts__heading {
	font-family: var(--nf-font);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 1.35rem;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid var(--nf-ink);
	max-width: 12rem;
}

.fcnews-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

@media (max-width: 850px) {
	.fcnews-related-posts__grid {
		grid-template-columns: 1fr;
	}
}

.fcnews-related-posts__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	overflow: hidden;
	box-shadow: var(--nf-shadow);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fcnews-related-posts__card:hover {
	box-shadow: var(--nf-shadow-hover);
	transform: translateY(-2px);
}

.fcnews-related-posts__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--nf-surface-2);
}

.fcnews-related-posts__media--empty {
	min-height: 140px;
}

.fcnews-related-posts__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.fcnews-related-posts__card:hover .fcnews-related-posts__img {
	transform: scale(1.04);
}

.fcnews-related-posts__body {
	padding: 0.85rem 1rem 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.fcnews-related-posts__title {
	font-family: var(--nf-display);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.28;
	margin: 0;
}

.fcnews-related-posts__title a {
	color: var(--nf-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.fcnews-related-posts__card:hover .fcnews-related-posts__title a {
	color: var(--nf-accent);
}

.fcnews-related-posts__date {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--nf-muted);
}

/* Comments */
.fcnews-single--editorial .comments-area,
.fcnews-single--editorial #comments {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-top: clamp(2rem, 4vw, 2.5rem);
	border-top: 1px solid var(--nf-line);
	max-width: 720px;
}

.fcnews-single--editorial .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcnews-single--editorial .comment-body {
	margin-bottom: 1.75rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid var(--nf-line);
}

.fcnews-single--editorial #respond {
	margin-top: 2rem;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius-lg);
	box-shadow: var(--nf-shadow);
}

.fcnews-single--editorial #respond .comment-reply-title {
	font-family: var(--nf-display);
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.fcnews-single--editorial #respond textarea,
.fcnews-single--editorial #respond input[type="text"],
.fcnews-single--editorial #respond input[type="email"],
.fcnews-single--editorial #respond input[type="url"] {
	width: 100%;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	padding: 0.65rem 0.85rem;
	font-size: 1rem;
	margin-bottom: 0.85rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fcnews-single--editorial #respond textarea:focus,
.fcnews-single--editorial #respond input:focus {
	outline: none;
	border-color: var(--nf-accent);
	box-shadow: 0 0 0 3px var(--nf-accent-soft);
}

.fcnews-single--editorial #respond .form-submit input[type="submit"],
.fcnews-single--editorial #respond input[type="submit"] {
	min-height: 48px;
	padding: 0 1.5rem;
	background: var(--nf-ink);
	color: #fff;
	border: 0;
	border-radius: var(--nf-radius);
	font-weight: 800;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fcnews-single--editorial #respond .form-submit input[type="submit"]:hover,
.fcnews-single--editorial #respond input[type="submit"]:hover {
	background: var(--nf-accent);
	transform: translateY(-1px);
}

.fcnews-single--editorial .fcnews-article-layout__main {
	scroll-margin-top: 1rem;
}

@media (prefers-reduced-motion: no-preference) {
	html:has(.fcnews-single--editorial) {
		scroll-behavior: smooth;
	}
}

