*, *::before, *::after { box-sizing: border-box; }

/*
 * Falsissimo – Custom CSS
 * Da usare come "CSS aggiuntivo" nel Customizer di WordPress
 * oppure caricare via functions.php
 * -------------------------------------------------------
 * IMPORTANTE: imposta l'immagine del banner nella regola
 *   .promo-banner__photo { background-image: url('URL-DELLA-TUA-FOTO'); }
 */

/* ===========================================
   HEADER A DUE RIGHE
   =========================================== */

/* Header — sfondo nero */
.site-header {
	background: #000;
}

.site-header__logo-img {
	height: 32px;
	width: auto;
	display: block;
}

/* Nav desktop */
.site-header__inner .site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
}
.site-header__inner .site-nav ul li a {
	display: block;
	padding: 0.25rem 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	transition: color 0.15s;
}
.site-header__inner .site-nav ul li a:hover,
.site-header__inner .site-nav ul li.current-menu-item > a {
	color: #fff;
}

/* Header — riga singola: logo | menu | pulsanti */
.site-header__inner {
	display: flex;
	align-items: center;
	max-width: 1280px;
	margin-inline: auto;
	padding: 0 1.5rem;
	gap: 0;
	min-height: 72px;
}

.site-header__inner .site-nav {
	margin-left: auto;
	margin-right: 1rem;
}

/* Nasconde le vecchie righe se mai presenti */
.site-header__top,
.site-header__bottom {
	display: none;
}

/* Pulsanti PMP */
.site-header__pmp {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.header-btn {
	display: inline-block;
	padding: 0.45rem 1.1rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.15s, color 0.15s, border-color 0.15s;
	white-space: nowrap;
}
.header-btn--ghost {
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.header-btn--ghost:hover {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.6);
	background-color: rgba(255, 255, 255, 0.08);
}
.header-btn--primary {
	background-color: #d70700;
	color: #ffffff !important;
	border: 1px solid #d70700;
}
.header-btn--primary:hover {
	background-color: #a50600;
	border-color: #a50600;
}

/* Logo nella riga 1 */
.site-header__top-inner .custom-logo-link img.custom-logo {
	width: 180px;
	height: auto;
	display: block;
}
.site-header__top-inner .site-title {
	font-weight: 800;
	letter-spacing: -0.02em;
	font-size: 1.125rem;
	color: #ffffff;
	text-decoration: none;
}
.site-header__top-inner .site-title:hover {
	color: #d70700;
}

/* Menu nella riga 2 – allineato a sinistra, niente sfondi */
.site-header__bottom-inner .site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
}
.site-header__bottom-inner .site-nav ul li a {
	display: block;
	padding: 0.25rem 1rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	background: none !important;
	border-radius: 0;
	transition: color 0.15s;
}
.site-header__bottom-inner .site-nav ul li a:hover {
	color: #ffffff;
	background: none !important;
}
.site-header__bottom-inner .site-nav ul li.current-menu-item > a {
	color: #ffffff;
	background: none !important;
	border-bottom: 2px solid #d70700;
}

/* Admin bar offset */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

/* Mobile */
@media (max-width: 680px) {
	.site-header__top-inner .custom-logo-link img.custom-logo { width: 130px; }
}

/* ── Pulsante omino mobile ──────────────────────────────── */
.site-header__profile-mobile {
	display: none;
	position: relative;
}

.profile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.15s, border-color 0.15s, color 0.15s;
	flex-shrink: 0;
}
.profile-toggle:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.55);
	color: #ffffff;
}

.profile-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 180px;
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	z-index: 200;
}
.profile-dropdown.is-open {
	display: block;
}

.profile-dropdown__link {
	display: block;
	padding: 0.75rem 1.1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: background-color 0.15s, color 0.15s;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.profile-dropdown__link:last-child {
	border-bottom: none;
}
.profile-dropdown__link:hover {
	background-color: rgba(255, 255, 255, 0.07);
	color: #ffffff;
}
.profile-dropdown__link--primary {
	background-color: #d70700;
	color: #ffffff;
}
.profile-dropdown__link--primary:hover {
	background-color: #a50600;
	color: #ffffff;
}

/* ── Pulsante hamburger ──────────────────────────────────── */
.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: none;
	border: none;
	cursor: pointer;
	color: #ffffff;
	flex-shrink: 0;
	padding: 0;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-open .icon-hamburger { display: none; }
.menu-toggle.is-open .icon-close { display: block; }

@media (max-width: 680px) {
	.site-header__pmp        { display: none; }
	.site-header__profile-mobile { display: block; }
	.menu-toggle             { display: flex; margin-left: auto; margin-right: 0.5rem; }

	/* Togli il margin-left: auto dal nav (ci pensa il menu-toggle) */
	.site-header__inner .site-nav {
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: #000000;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
		z-index: 150;
		margin: 0;
	}
	.site-header__inner .site-nav.is-open {
		display: block;
	}
	.site-header__inner .site-nav ul {
		flex-direction: column;
		gap: 0;
		padding: 0.5rem 0;
	}
	.site-header__inner .site-nav ul li a {
		padding: 0.7rem 1.5rem;
		color: rgba(255, 255, 255, 0.8);
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		font-size: 0.9rem;
	}
	.site-header__inner .site-nav ul li:last-child a {
		border-bottom: none;
	}
	.site-header__inner .site-nav ul li a:hover,
	.site-header__inner .site-nav ul li.current-menu-item > a {
		color: #d70700;
		background: none !important;
	}
}

/* Previeni overflow orizzontale globale */
.site-main {
	overflow-x: hidden;
}


/* ===========================================
   PROMO BANNER (hero home)
   =========================================== */

.promo-banner {
	background: linear-gradient(135deg, #0d0d1a 0%, #1a0a0a 60%, #2a0808 100%);
	overflow: visible; /* permette lo sbordo della foto */
	position: relative;
	z-index: 10;
}

.promo-banner__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end; /* allinea in basso per far sì che la foto sbordi in alto */
	min-height: 460px;
	position: relative;
	overflow: visible;
}

/* Colonna testo */
.promo-banner__text {
	padding-block: clamp(3.5rem, 7vw, 6rem);
	padding-right: 2rem;
	display: flex;
	flex-direction: column;
	gap: .25rem;
	align-items: flex-start;
}

.promo-banner__title {
	font-size: clamp(2.5rem, 6vw, 6.75rem);
	font-weight: 400;
	line-height: .95;
	letter-spacing: 0;
	color: #ffffff;
	margin: 0;
}

.promo-banner__subtitle {
	font-family: 'Albert Sans', sans-serif;
	font-size: clamp(1.6rem, 3.5vw, 2.5rem);
	font-weight: 400;
	text-transform: uppercase;
	color: #d70700;
	margin: 0;
	line-height: .75em;
}

.promo-banner__cta {
	display: inline-block;
	padding: 0.5rem 2rem;
	background: #d70700;
	color: #ffffff;
	font-weight: 800;
	font-size: 1rem;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: background-color 0.15s, transform 0.15s;
	margin-top: 1.5rem;
}
.promo-banner__cta:hover {
	background: #a50600;
	transform: translateY(-2px);
}

/* Colonna foto – sborda verso l'alto rispetto alla sezione */
.promo-banner__photo {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: flex-end;
	justify-content: center;

	/* Sbordo verso l'alto: la foto fuoriesce di 80px dal bordo superiore della sezione */
	margin-top: -100px;
	margin-right: -80px;

	/* I pulsanti dietro devono restare cliccabili */
	pointer-events: none;

	/* Impostare qui l'URL dell'immagine di Fabrizio Corona:
	   Sostituire 'URL-DELLA-TUA-FOTO' con l'URL reale */
	background-image: url('../images/corona_main.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom center;

	min-height: 540px; /* altezza totale incluso lo sbordo */
}

/* Se usi un tag <img> invece del background: */
.promo-banner__photo img {
	display: block;
	width: 100%;
	max-width: 480px;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 -20px 60px rgba(0,0,0,0.6));
}


@media (max-width: 768px) {
	/* Blocca l'overflow orizzontale causato dai margini negativi del desktop */
	.promo-banner {
		overflow: hidden;
	}
	.promo-banner__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	/* Mobile: testo sopra, foto sotto — rimuoviamo i margini negativi del desktop */
	.promo-banner__photo {
		margin-top: 0;
		margin-right: 0;
		min-height: 260px;
		order: 1; /* foto sotto il testo */
	}
	.promo-banner__text {
		padding-right: 0;
		order: 0; /* testo sopra */
	}
}


/* ===========================================
   CAROSELLO ULTIMI VIDEO
   =========================================== */

.latest-videos-section {
	padding-block: clamp(3rem, 6vw, 5rem);
	background-color: black;
	border-top: 5px solid #667383;
	overflow: hidden; /* evita sbordamento orizzontale del carosello */
}

.latest-videos__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.75rem;
}

.latest-videos__header .section-heading {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0 !important;
}
.latest-videos__all {
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s;
	flex-shrink: 0;
}
.latest-videos__all:hover {
	color: #ffffff;
}

/* ── I più visti ─────────────────────────────────────────── */
.most-viewed-section {
	padding-block: clamp(3rem, 6vw, 5rem);
	background-color: #0a0a0a;
	border-top: 5px solid #667383;
	overflow: hidden; /* evita sbordamento orizzontale del carosello */
}

.most-viewed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.75rem;
}

.most-viewed__header .section-heading {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0 !important;
}

.most-viewed__all {
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s;
	flex-shrink: 0;
}

.most-viewed__all:hover {
	color: #ffffff;
}

/* ── Sezione Playlist ───────────────────────────────────────── */
.playlists-section {
	background-color: black;
	border-top: 5px solid #667383;
}

.playlists-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.75rem;
}
.playlists-section__header .section-heading {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0 !important;
}
.playlists-section__all {
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s;
	flex-shrink: 0;
}
.playlists-section__all:hover {
	color: #ffffff;
}

/* Track del carosello */
.video-carousel {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	padding-bottom: 1rem; /* spazio per la scrollbar */

	/* Nascondi la scrollbar ma mantieni la funzionalità */
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.video-carousel::-webkit-scrollbar {
	height: 4px;
}
.video-carousel::-webkit-scrollbar-track {
	background: transparent;
}
.video-carousel::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.15);
	border-radius: 4px;
}
.video-carousel::-webkit-scrollbar-thumb:hover {
	background: rgba(255,255,255,0.3);
}

/* Card nel carosello */
.video-carousel .video-card {
	flex: 0 0 calc(25% - 1.125rem); /* 4 card visibili */
	scroll-snap-align: start;
}

@media (max-width: 1024px) {
	.video-carousel .video-card {
		flex: 0 0 calc(33.333% - 1rem);
	}
}
@media (max-width: 720px) {
	.video-carousel .video-card {
		flex: 0 0 calc(50% - 0.75rem);
	}
}
@media (max-width: 480px) {
	.video-carousel .video-card {
		flex: 0 0 80vw;
	}
}

/* Bottoni prev/next del carosello */
.carousel-controls {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.75rem;
}
.carousel-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.carousel-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.35);
}


/* ===========================================
   ARTICOLI DI FABRIZIO CORONA
   =========================================== */

.articles-section {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: linear-gradient(135deg, #0d0d1a 0%, #0d1219 60%, #1a2530 100%);
	border-top: 5px solid #667383;
}

.articles-section .section-heading {
	margin-bottom: 1.75rem !important;
}

.articles-layout {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 2rem;
	align-items: start;
}

/* Articolo in evidenza */
.article-featured {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: flex-start;
}

.article-featured__thumb {
	display: block;
	width: clamp(160px, 28%, 260px);
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 6px;
}

.article-featured__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease, opacity 0.25s ease;
}

.article-featured:hover .article-featured__thumb img {
	transform: scale(1.03);
	opacity: 0.88;
}

.article-featured__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
}

.article-featured__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.article-featured__date {
	font-size: 0.8rem;
	color: var(--wp--preset--color--muted);
}

.article-featured__terms {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.article-featured__terms a {
	color: white;
}

.article-featured__title {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.article-featured__title a {
	color: white;
	text-decoration: none;
}

.article-featured__title a:hover {
	color: var(--wp--preset--color--primary);
}

.article-featured__excerpt {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	line-height: 1.6;
}

.article-featured__cta {
	display: inline-block;
	margin-top: 0.25rem;
	padding: 0.5rem 1.25rem;
	background: var(--wp--preset--color--primary);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	align-self: flex-start;
	transition: background 0.2s;
}

.article-featured__cta:hover {
	background: var(--wp--preset--color--primary-dark, #a50600);
	color: #fff;
}

/* Sidebar */
.articles-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-left: 2px solid var(--wp--preset--color--border);
	padding-left: 1.5rem;
}

.articles-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.articles-sidebar__item {
	padding-block: 1rem;
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.articles-sidebar__item:first-child {
	padding-top: 0;
}

.articles-sidebar__link {
	display: flex;
	gap: 0.75rem;
	text-decoration: none;
	align-items: flex-start;
}

.articles-sidebar__thumb {
	width: 72px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.articles-sidebar__text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.articles-sidebar__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: white;
	font-family: 'Albert Sans', sans-serif;
	line-height: 1.3;
	transition: color 0.15s;
}

.articles-sidebar__link:hover .articles-sidebar__title {
	color: var(--wp--preset--color--primary);
}

.articles-sidebar__date {
	font-size: 0.75rem;
	color: var(--wp--preset--color--muted);
}

.articles-sidebar__all {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.5rem 1.25rem;
	background: var(--wp--preset--color--primary);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s;
}

.articles-sidebar__all:hover {
	background: var(--wp--preset--color--primary-dark, #a50600);
	color: #fff;
}

@media (max-width: 768px) {
	.articles-layout {
		grid-template-columns: 1fr;
	}

	.article-featured {
		flex-direction: column;
	}

	.article-featured__thumb {
		width: 100%;
		max-width: 100%;
		aspect-ratio: 16 / 9;
	}

	.articles-sidebar {
		border-left: none;
		padding-left: 0;
		border-top: 2px solid var(--wp--preset--color--border);
		padding-top: 1.5rem;
	}

	/* Carosello: 2 card visibili su mobile intermedio */
	.video-carousel .video-card {
		flex: 0 0 calc(80vw - 3rem);
	}

	/* Playlist: 2 colonne su tablet, 1 su mobile stretto */
	.playlists-section .grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	/* Carosello: 1 card quasi full-width */
	.video-carousel .video-card {
		flex: 0 0 calc(92vw - 3rem);
	}

	/* Playlist: 1 colonna */
	.playlists-section .grid-4 {
		grid-template-columns: 1fr;
	}

	/* Header: menu bar compatta */
	.site-header__bottom-inner {
		padding: 0.35rem 1rem;
		gap: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}


/* ===========================================
   HOMEPAGE 3 COLONNE (front-page.php)
   =========================================== */

.fc-home-homepage-section {
	background-color: #111111;
	padding-block: clamp(2rem, 4vw, 3rem);
	border-top: 3px solid #d70700;
}

/* Sezione scura */
.fc-home-section--dark {
	background-color: #000000;
	padding: 40px 0;
}

/* Archive/post list su sfondo nero */
.archive-section {
	background-color: #000000;
}

/* Sezione heading: niente bordo */
.section-heading {
	border-bottom: none;
}

/* Post card testi bianchi */
.post-card__info .post-card__terms a,
.post-card__info .post-card__title h2 a {
	color: #ffffff;
}

/* Post card: data + categoria inline */
.post-card__terms {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.post-card__terms .term-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.post-card__terms .term-badge:hover {
	color: #ffffff;
}

.post-card__terms .term-badge--date {
	color: rgba(255, 255, 255, 0.5);
	background: none;
	padding: 0;
	border-radius: 0;
	cursor: default;
}

.post-card__terms .term-badge__sep {
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.72rem;
}

/* Fix overflow archivio video */
.post-type-archive-fc_video .site-main {
	overflow-x: visible;
}

.fc-home-3col .sec-stile-1 {
	display: flex;
	flex-direction: row;
	gap: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Colonne */
.fc-home-3col .section-block-left {
	width: 25%;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 20px;
}

.fc-home-3col .section-block-middle {
	width: 50%;
	padding: 0 20px;
}

.fc-home-3col .section-block-right {
	width: 25%;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 20px;
}

/* Post item base */
.fc-home-3col .post-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Primo post colonna sinistra e centrale: colonna + immagine grande */
.fc-home-3col .sec-1-left .post-item:first-child,
.fc-home-3col .sec-1-middle .post-item:first-child {
	flex-direction: column;
	border-top: none;
	padding-top: 0;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	gap: 8px;
}

.fc-home-3col .sec-1-left .post-item:nth-child(2) {
	border-top: none;
}

.fc-home-3col .sec-1-middle .post-item:nth-child(2) {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thumbnails piccole (lista) */
.fc-home-3col .post-item .post-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 0;
	flex-shrink: 0;
}

/* Thumbnail grande (primo post) */
.fc-home-3col .sec-1-left .post-item:first-child .post-thumbnail,
.fc-home-3col .sec-1-middle .post-item:first-child .post-thumbnail {
	width: 100%;
}

.fc-home-3col .sec-1-left .post-item:first-child .post-thumbnail img,
.fc-home-3col .sec-1-middle .post-item:first-child .post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 6px;
}

/* Titoli */
.fc-home-3col .post-title {
	font-family: 'Albert Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.15;
	margin: 0;
	padding: 0;
}

.fc-home-3col .post-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.15s;
}

.fc-home-3col .post-title a:hover {
	color: #d70700;
}

.fc-home-3col .sec-1-left .post-item:first-child .post-title {
	font-size: 1.4rem;
}

.fc-home-3col .sec-1-middle .post-item:first-child .post-title {
	font-size: 1.9rem;
}

.fc-home-3col .sec-1-right .post-title {
	font-size: 0.9rem;
}

/* Badge categoria */
.fc-home-3col .post-category-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 2px 7px;
	background: #d70700;
	color: #fff;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fc-home-3col .post-category-badge a {
	color: #fff;
	text-decoration: none;
}

.fc-home-3col .list-item-badges {
	margin-bottom: 4px;
}

.fc-home-3col .list-item-title-area {
	flex: 1;
	min-width: 0;
}

/* Excerpt (solo primo post colonna centrale) */
.fc-home-3col .post-content {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.55;
	margin-top: 6px;
}


/* Responsive */
@media (max-width: 900px) {
	.fc-home-3col .section-block-left,
	.fc-home-3col .section-block-right {
		display: none;
	}

	.fc-home-3col .section-block-middle {
		width: 100%;
		padding: 0;
	}
}

@media (max-width: 600px) {
	.fc-home-3col .sec-stile-1 {
		flex-direction: column;
	}

	.fc-home-3col .section-block-left,
	.fc-home-3col .section-block-right {
		display: block;
		width: 100%;
		border: none;
		padding: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 20px;
		margin-top: 20px;
	}

	.fc-home-3col .section-block-middle {
		width: 100%;
		padding: 0;
	}

	/* Titoli lista (piccoli) più grandi su mobile */
	.fc-home-3col .post-title,
	.fc-home-3col .sec-1-right .post-title {
		font-size: 1.45rem;
	}
}

/* ═══════════════════════════════════════════════════════
   SEZIONE STILE 2 — Sfondo rosso, 2 colonne (75% / 25%)
   ═══════════════════════════════════════════════════════ */

.fc-home-section--red {
	background: #d70700;
}

.fc-home-section--red .fc-home-2col {
	padding: 30px 0;
}

.fc-home-2col .sec-stile-2 {
	display: flex;
	flex-direction: row;
	gap: 0;
	padding-bottom: 20px;
}

/* Colonna sinistra (75%) */
.fc-home-2col .sec-stile-2 .section-left {
	width: 75%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	padding-right: 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
}

/* Colonna destra (25%) */
.fc-home-2col .sec-stile-2 .section-right {
	width: 25%;
	padding-left: 24px;
	box-sizing: border-box;
}

/* Post generici nella colonna sinistra (posts 2–4) */
.fc-home-2col .sec-stile-2 .section-left .post-item {
	display: flex;
	flex-direction: column;
	width: calc(33.33% - 14px);
}

/* Primo post colonna sinistra: featured (testo sx + immagine dx) */
.fc-home-2col .sec-stile-2 .section-left .post-item:first-child {
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fc-home-2col .sec-stile-2 .section-left .post-item:first-child .main-post-container {
	order: 1;
	width: 33.33%;
	padding-right: 20px;
	box-sizing: border-box;
}

.fc-home-2col .sec-stile-2 .section-left .post-item:first-child .post-thumbnail {
	order: 2;
	width: 66.66%;
}

.fc-home-2col .sec-stile-2 .section-left .post-item:first-child .post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 6px;
}

/* Thumbnail posts 2–4 */
.fc-home-2col .sec-stile-2 .section-left .post-item .post-thumbnail {
	width: 100%;
	margin-bottom: 10px;
}

.fc-home-2col .sec-stile-2 .section-left .post-item .post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 6px;
}

/* Primo post colonna destra: immagine + titolo */
.fc-home-2col .sec-stile-2 .section-right .post-item:first-child {
	display: flex;
	flex-direction: column;
	border-top: none;
	padding-top: 0;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 4px;
}

.fc-home-2col .sec-stile-2 .section-right .post-item:first-child .post-thumbnail {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.fc-home-2col .sec-stile-2 .section-right .post-item:first-child .post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 6px;
}

/* Post lista colonna destra (posts 2–6): solo titolo */
.fc-home-2col .sec-stile-2 .section-right .post-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 10px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fc-home-2col .sec-stile-2 .section-right .post-item .post-thumbnail {
	display: none;
}

.fc-home-2col .sec-stile-2 .section-right .post-item:first-child .post-thumbnail {
	display: block;
}

/* Titoli */
.fc-home-2col .sec-stile-2 .post-title {
	font-family: 'Albert Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.15;
	margin: 0;
	padding: 0;
}

.fc-home-2col .sec-stile-2 .post-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.15s;
}

.fc-home-2col .sec-stile-2 .post-title a:hover {
	color: rgba(255, 255, 255, 0.75);
}

.fc-home-2col .sec-stile-2 .section-left .post-item:first-child .post-title {
	font-size: 1.6rem;
}

/* Badge categoria */
.fc-home-2col .sec-stile-2 .post-category-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 2px 7px;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fc-home-2col .sec-stile-2 .post-category-badge a {
	color: #fff;
	text-decoration: none;
}

.fc-home-2col .sec-stile-2 .list-item-badges {
	margin-bottom: 4px;
}

.fc-home-2col .sec-stile-2 .list-item-title-area {
	flex: 1;
	min-width: 0;
}

/* Excerpt (primo post, colonna sinistra) */
.fc-home-2col .sec-stile-2 .post-content {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.55;
	margin-top: 6px;
}

/* Responsive */
@media (max-width: 900px) {
	.fc-home-2col .sec-stile-2 .section-left {
		width: 100%;
		border-right: none;
		padding-right: 0;
	}

	.fc-home-2col .sec-stile-2 .section-right {
		display: none;
	}
}

@media (max-width: 600px) {
	.fc-home-2col .sec-stile-2 {
		flex-direction: column;
	}

	.fc-home-2col .sec-stile-2 .section-left {
		width: 100%;
		padding-right: 0;
		border-right: none;
	}

	.fc-home-2col .sec-stile-2 .section-left .post-item {
		width: 100%;
	}

	.fc-home-2col .sec-stile-2 .section-left .post-item:first-child {
		flex-direction: column;
	}

	.fc-home-2col .sec-stile-2 .section-left .post-item:first-child .main-post-container {
		width: 100%;
		padding-right: 0;
		order: 1;
	}

	.fc-home-2col .sec-stile-2 .section-left .post-item:first-child .post-thumbnail {
		width: 100%;
		order: 0;
		margin-bottom: 12px;
	}

	.fc-home-2col .sec-stile-2 .section-right {
		display: block;
		width: 100%;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding-top: 20px;
		margin-top: 20px;
	}

	/* Titoli lista (piccoli) più grandi su mobile */
	.fc-home-2col .sec-stile-2 .post-title {
		font-size: 1.45rem;
	}
}


/* ===========================================
   SEZIONE ULTIMO VIDEO
   =========================================== */

.fc-home-section--latest-video {
	background: #111111;
	padding: 48px 0;
	border-top: 3px solid #d70700;
}

.fc-latest-video {
	display: flex;
	gap: 48px;
	align-items: center;
}

/* Thumbnail */
.fc-latest-video__thumb-wrap {
	position: relative;
	flex: 0 0 55%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	display: block;
	background: #000;
	text-decoration: none;
}

.fc-latest-video__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.fc-latest-video__thumb-wrap:hover .fc-latest-video__thumb {
	transform: scale(1.03);
	opacity: 0.85;
}

.fc-latest-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.fc-latest-video__thumb-wrap:hover .fc-latest-video__play {
	transform: scale(1.1);
}

.fc-latest-video__duration {
	position: absolute;
	bottom: 10px;
	right: 12px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 3px;
	letter-spacing: 0.03em;
}

/* Info */
.fc-latest-video__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: #fff;
}

.fc-latest-video__label {
	display: inline-block;
	background: #d70700;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 10px;
	border-radius: 3px;
	align-self: flex-start;
}

.fc-latest-video__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2.2rem);
	font-weight: 800;
	line-height: 1.2;
}

.fc-latest-video__title a {
	color: #fff;
	text-decoration: none;
}

.fc-latest-video__title a:hover {
	color: #d70700;
}

.fc-latest-video__excerpt {
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.95rem;
	line-height: 1.6;
}

.fc-latest-video__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fc-latest-video__term {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 3px 9px;
	border-radius: 3px;
	transition: color 0.15s, border-color 0.15s;
}

.fc-latest-video__term:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

.fc-latest-video__cta {
	align-self: flex-start;
	background: #fff;
	color: #111111;
	font-weight: 700;
	padding-inline: 2.5rem;
}

.fc-latest-video__cta:hover {
	background: #d70700;
	color: #fff;
	opacity: 1;
}

@media (max-width: 900px) {
	.fc-latest-video {
		flex-direction: column;
		gap: 28px;
	}

	.fc-latest-video__thumb-wrap {
		flex: none;
		width: 100%;
	}
}


/* Separatore tra sezioni dark consecutive */
.fc-home-section--sep {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Padding fc-home-2col su sfondo scuro (come su rosso) */
.fc-home-section--dark .fc-home-2col {
	padding: 30px 0;
}


/* ============================================================
   NUOVA HOMEPAGE — Jumbotron + Tab layout
   ============================================================ */

/* ── Pulsante generico (usato in jumbotron, shop, ecc.) ─── */
.fc-btn {
	display: inline-block;
	padding: 0.6rem 1.6rem;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.15s, color 0.15s, opacity 0.15s;
	cursor: pointer;
	border: none;
	letter-spacing: 0.03em;
}
.fc-btn--primary {
	background: #d70700;
	color: #fff;
}
.fc-btn--primary:hover {
	background: #a50600;
	color: #fff;
	opacity: 1;
}

/* ── Jumbotron ───────────────────────────────────────────── */

/* ── Fascia video in evidenza ──────────────────────────── */
.fc-video-strip {
	position: relative;
	background: #0d0d0d;
	padding-top: 2rem;
	padding-bottom: 2.5rem;
	overflow: hidden;
}
.fc-video-strip__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}
.fc-video-strip__heading {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.fc-video-strip__all {
	font-family: 'Albert Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}
.fc-video-strip__all:hover { color: #fff; }
.fc-video-strip__inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.fc-video-strip__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fc-video-strip__grid {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 1rem;
	align-items: start;
}
.fc-video-strip__side {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (max-width: 680px) {
	/* Permetti overflow interno al carousel */
	.fc-video-strip {
		overflow-x: clip;
	}

	/* Stack verticale: main sopra, side sotto come carousel */
	.fc-video-strip__grid {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	/* Carousel orizzontale: margine negativo per sforare oltre il padding del container */
	.fc-video-strip__side {
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 10px;
		margin-right: -1.5rem;
		padding-right: 1.5rem;
	}
	.fc-video-strip__side::-webkit-scrollbar { display: none; }

	/* 1.5 card visibili */
	.fc-video-strip__side .fc-video-strip__item {
		flex: 0 0 65%;
		scroll-snap-align: start;
	}
}
.fc-video-strip__item {
	text-decoration: none;
	color: #fff;
	display: block;
}
.fc-video-strip__thumb-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 0;
	border: 1px solid #3a3a3a;
	background: #1a1a1a;
}
.fc-video-strip__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.fc-video-strip__item:hover .fc-video-strip__thumb {
	transform: scale(1.03);
}
.fc-video-strip__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 2;
}
.fc-video-strip__dur {
	position: absolute;
	top: 8px;
	right: 10px;
	background: rgba(0,0,0,0.75);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: monospace;
	letter-spacing: 0.02em;
	z-index: 3;
}
/* Overlay gradiente + titolo sovrapposto */
.fc-video-strip__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2.5rem 1rem 0.85rem;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	z-index: 2;
}
.fc-video-strip__cat {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #d70700;
}
.fc-video-strip__title {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	line-height: 1.25;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}
.fc-video-strip__main .fc-video-strip__title {
	font-size: 1.15rem;
}
/* Info sotto il video principale */
.fc-video-strip__info {
	padding: 0.85rem 0.25rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.fc-video-strip__label {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.7);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.fc-video-strip__cta {
	font-family: 'Albert Sans', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.4);
	padding: 0.3rem 0.9rem;
	border-radius: 3px;
	white-space: nowrap;
	transition: background 0.2s, border-color 0.2s;
}
.fc-video-strip__cta:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

/* ── Tab Navigation ──────────────────────────────────────── */
.fc-home-tabs {
	padding-block: 40px 64px;
}
.fc-tabs-nav {
	display: flex;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 36px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.fc-tabs-nav::-webkit-scrollbar {
	display: none;
}
.fc-tab-btn {
	position: relative;
	padding: 14px 28px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 1.15rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.4);
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.fc-tab-btn:hover {
	color: rgba(0, 0, 0, 0.75);
}
.fc-tab-btn--active {
	color: #111;
	font-weight: 700;
	border-bottom-color: #d70700;
}
.fc-tab-badge {
	font-size: 0.6rem;
	line-height: 1;
	background: #d70700;
	color: #fff;
	padding: 2px 5px;
	border-radius: 3px;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0;
}

/* ── Tab Panels ──────────────────────────────────────────── */
.fc-tab-panel {
	display: none;
}
.fc-tab-panel--active {
	display: block;
}

/* ── Spinner di caricamento ──────────────────────────────── */
.fc-tab-loading {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0;
}
.fc-tab-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid rgba(0, 0, 0, 0.1);
	border-top-color: #d70700;
	border-radius: 50%;
	animation: fc-spin 0.7s linear infinite;
}
@keyframes fc-spin {
	to { transform: rotate(360deg); }
}
.fc-tab-error {
	text-align: center;
	color: rgba(0, 0, 0, 0.45);
	padding: 60px 0;
	font-size: 0.9rem;
	font-weight: 300;
}

/* ── Card universale (fc-card) ───────────────────────────── */
.fc-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 0;
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.fc-card:hover {
	border-color: rgba(0, 0, 0, 0.16);
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.fc-card__thumb-link {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #16162a;
	flex-shrink: 0;
}
.fc-card__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	display: block;
}
.fc-card:hover .fc-card__thumb {
	transform: scale(1.05);
}
/* Badge tipo (Articolo / Video) */
.fc-card__type-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
	line-height: 1.4;
	font-family: 'Poppins', sans-serif;
}
.fc-card__type-badge--post {
	background: rgba(215, 7, 0, 0.9);
	color: #fff;
}
.fc-card__type-badge--video {
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Durata */
.fc-card__duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	font-size: 0.68rem;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.78);
	color: #fff;
	padding: 2px 6px;
	border-radius: 3px;
	letter-spacing: 0.04em;
	font-family: 'Poppins', sans-serif;
}
/* Play icon */
.fc-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.8;
	transition: opacity 0.2s, transform 0.2s;
	pointer-events: none;
}
.fc-card:hover .fc-card__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.12);
}
/* Body */
.fc-card__body {
	padding: 14px 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.fc-card__meta {
	display: flex;
	gap: 8px;
	align-items: center;
}
.fc-card__cat {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d70700;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	transition: color 0.15s;
}
.fc-card__cat:hover {
	color: #ff4040;
}
.fc-card__title {
	font-family: 'Albert Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.25;
	color: #111;
	margin: 0;
}
.fc-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s;
}
.fc-card__title a:hover {
	color: #d70700;
}
.fc-card__excerpt {
	font-size: 0.83rem;
	color: rgba(0, 0, 0, 0.55);
	margin: 0;
	line-height: 1.55;
	font-weight: 300;
}
/* Variante featured (hero) */
.fc-card--featured .fc-card__body {
	padding: 20px 22px 24px;
	gap: 10px;
}
.fc-card--featured .fc-card__title {
	font-size: 1.6rem;
}
.fc-card--featured .fc-card__excerpt {
	font-size: 0.9rem;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Griglia Video ───────────────────────────────────────── */
.fc-feed-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* ── Magazine tab – sezioni stile Victoria ───────────────── */

/* Sfondo scuro sull'intera fascia magazine */
.fc-magazine { background: #000; }
.fc-magazine .post-title a,
.fc-magazine .video-card__title a { color: #ffffffdf; }
.fc-magazine .post-title a:hover,
.fc-magazine .video-card__title a:hover { color: #d70700; }

/* Wrapper sezione */
.fc-home-section.section {
	padding: 24px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fc-home-section.section .sec-stile-1,
.fc-home-section.section .sec-stile-2,
.fc-home-section.section .sec-stile-video {
	padding: 20px;
	border-radius: 4px;
}
.fc-home-section.section:last-child { border-bottom: none; }

/* Sezione video: fondo leggermente più scuro */
.fc-home-section.section:has(.sec-stile-video) {
	background: #000;
	border-bottom-color: rgba(255,255,255,0.08);
	padding: 0;
}
.fc-home-section.section:has(.sec-stile-video) .sec-stile-video { border-radius: 0; }
.video-card__title { color: #fff; }
.video-card__title a:hover { color: rgba(255,255,255,0.7) !important; }

/* Header badge di colonna */
.sec-col-header {
	padding-bottom: 10px;
	margin-bottom: 2px;
}
.sec-col-badge {
	font-family: 'Albert Sans', sans-serif;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	background: #d70700;
	padding: 3px 8px;
	border-radius: 3px;
	text-decoration: none;
}
.sec-col-badge:hover { opacity: 0.85; }

/* Post item base */
.section .post-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 12px 0;
	border-top: 1px solid var(--section-border, #e0e0e0);
}
.section .post-item h2.post-title {
	font-family: 'Albert Sans', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 0;
	padding-left: 10px;
}
.section .post-item h2.post-title a {
	color: #ffffffdf;
	text-decoration: none;
}
.section .post-item h2.post-title a:hover { color: #d70700; }
.section .post-item .post-content {
	font-size: .85rem;
	color: inherit;
	opacity: .8;
	padding-left: 10px;
	margin-top: 6px;
}
.section .post-item .post-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 0;
	max-width: unset;
	flex-shrink: 0;
}
.list-item-badges { margin-bottom: 6px; padding-left: 10px; }
.post-category-badge, .post-date-badge {
	display: inline-block;
	font-size: .75rem;
	padding: 2px 7px;
	border-radius: 3px;
	margin-right: 5px;
	font-weight: 500;
}
.post-category-badge { background: #d70700; color: #fff; }
.post-category-badge a { color: #fff !important; text-decoration: none; }
.post-date-badge { background: #6c757d; color: #fff; }

/* ── Stile 1: 2 colonne (66 / 34) ── */
.sec-stile-1 {
	display: flex;
	flex-direction: row;
	gap: 0;
	padding-bottom: 20px;
}
.sec-stile-1 { --section-border: #e0e0e0; }

/* Desktop: colonna principale e sidebar — flex:2/1 per allinearsi al 3° col di stile 2 */
.sec-stile-1 .section-block-main    { flex: 2.11; padding-right: 20px; border-right: 1px solid var(--section-border); }
.sec-stile-1 .section-block-sidebar { flex: 1; padding-left: 20px; }

/* Main: primo post featured con immagine full-width */
.sec-stile-1 .sec-1-main .post-item:first-child {
	flex-direction: column;
	padding-top: 0;
	border-top: none;
}
.sec-stile-1 .sec-1-main .post-item:first-child .post-thumbnail { width: 100%; }
.sec-stile-1 .sec-1-main .post-item:first-child img {
	width: 100%; height: auto; border-radius: 0; margin-bottom: 8px; aspect-ratio: 16/9; object-fit: cover; max-width: unset; flex-shrink: unset;
}
.sec-stile-1 .sec-1-main .post-item:first-child h2.post-title { padding-left: 0; font-size: 1.5rem; }
.sec-stile-1 .sec-1-main .post-item:first-child .list-item-badges { padding-left: 0; }
.sec-stile-1 .sec-1-main .post-item:first-child .post-content { padding-left: 0; }
.sec-stile-1 .sec-1-main .post-item:nth-child(2) { border-top: 1px solid var(--section-border); }

/* Main: thumbnail piccolo a SINISTRA per i post non-featured */
.sec-stile-1 .sec-1-main .post-item:not(:first-child) .post-thumbnail a { display: flex; height: auto; }
.sec-stile-1 .sec-1-main .post-item:not(:first-child) .post-thumbnail img {
	height: 70px; width: auto; border-radius: 0;
}
/* Badge allineato al titolo nei 3 post con miniatura */
.sec-stile-1 .sec-1-main .post-item:not(:first-child) .list-item-badges { padding-left: 10px; }

/* Sidebar: lista compatta senza thumbnail */
.sec-stile-1 .sec-1-sidebar .post-thumbnail { display: none; }
.sec-stile-1 .sec-1-sidebar .post-item { border-top: 1px solid var(--section-border); padding: 10px 0; }
.sec-stile-1 .sec-1-sidebar .post-item:first-child { border-top: none; padding-top: 0; }
.sec-stile-1 .sec-1-sidebar h2.post-title { padding-left: 0; font-size: 0.9rem; }
.sec-stile-1 .sec-1-sidebar .list-item-badges { padding-left: 0; }

/* Badge stile mobile: testo rosso, niente sfondo, uppercase bold */
.sec-stile-1 .post-category-badge {
	background: none;
	color: #d70700;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0;
	font-size: 0.65rem;
	letter-spacing: 0.07em;
}
.sec-stile-1 .post-category-badge a { color: #d70700 !important; }
.sec-stile-1 .list-item-badges { padding-left: 0; margin-bottom: 4px; }

/* ── Stile 2: 3 colonne uguali (33 / 33 / 33) ── */
.sec-stile-2 {
	display: flex;
	flex-direction: row;
	gap: 0;
}
.sec-stile-2 .s2-col {
	flex: 1;
	min-width: 0;
	padding: 0 20px;
	border-right: 1px solid var(--section-border, #e0e0e0);
}
.sec-stile-2 .s2-col:first-child { padding-left: 0; }
.sec-stile-2 .s2-col:last-child  { padding-right: 0; border-right: none; }

/* Badge stile mobile */
.sec-stile-2 .post-category-badge {
	background: none;
	color: #d70700;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0;
	font-size: 0.65rem;
	letter-spacing: 0.07em;
}
.sec-stile-2 .post-category-badge a { color: #d70700 !important; }
.sec-stile-2 .list-item-badges { padding-left: 0; margin-bottom: 4px; }

/* Primo post: foto full-width, badge overlay a dx + titolo */
.sec-stile-2 .post-item--col-featured {
	display: flex;
	flex-direction: column;
	border-top: none;
	padding: 0;
}
.sec-stile-2 .post-item--col-featured .post-thumbnail {
	width: 100%;
	position: relative;
	margin-bottom: 8px;
}
.sec-stile-2 .post-item--col-featured .post-thumbnail a { display: block; }
.sec-stile-2 .post-item--col-featured .post-thumbnail img {
	width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 0; display: block; max-width: unset; flex-shrink: unset;
}
/* Badge sovrapposto in basso a sinistra sull'immagine */
.sec-stile-2 .post-item--col-featured .post-thumbnail .list-item-badges {
	position: absolute;
	bottom: 8px;
	left: 0;
	margin: 0;
}
.sec-stile-2 .post-item--col-featured .post-thumbnail .post-category-badge {
	background: #d70700;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.65rem;
	letter-spacing: 0.07em;
	padding: 3px 8px;
	border-radius: 3px;
}
.sec-stile-2 .post-item--col-featured .post-thumbnail .post-category-badge a { color: #fff !important; }
.sec-stile-2 .post-item--col-featured h2.post-title { padding-left: 0; font-size: 1rem; margin-top: 4px; }

/* Post 2-5: solo badge + titolo */
.sec-stile-2 .post-item--col-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--section-border, #e0e0e0);
	padding: 10px 0;
}
.sec-stile-2 .post-item--col-list .list-item-badges { width: 100%; }
.sec-stile-2 .post-item--col-list h2.post-title { padding-left: 0; font-size: 0.9rem; margin: 0; }

/* ── Stile Video: 1 video featured, thumb sx + dettagli dx ── */
.sec-stile-video {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 28px;
	min-height: 220px;
}
.sec-stile-video .video-card__thumb-link {
	flex: 0 0 55%;
	position: relative;
	border-radius: 0;
	overflow: hidden;
	display: block;
}
.sec-stile-video .video-card__thumb-link img {
	width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.video-card__play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.video-card__dur {
	position: absolute;
	bottom: 6px; right: 8px;
	background: rgba(0,0,0,0.7);
	color: #fff;
	font-size: .72rem;
	padding: 2px 6px;
	border-radius: 3px;
}
.sec-stile-video .video-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}
.video-card__brand {
	display: block;
	height: 22px;
	width: auto;
}

.video-card__title {
	font-family: 'Albert Sans', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.video-card__title a { color: inherit; text-decoration: none; }
.video-card__title a:hover { color: #d70700; }
.sec-stile-video .video-card__body .list-item-badges { padding-left: 0; margin-bottom: 0; }
.video-card__cta { align-self: flex-start; }

/* Mobile/tablet */
@media (max-width: 767px) {
	.sec-stile-1, .sec-stile-2 { flex-direction: column; }
	.sec-stile-1 .section-block-main,
	.sec-stile-1 .section-block-sidebar { width: 100%; border: none; padding: 0; }
	.sec-stile-1 .section-block-sidebar { padding-top: 16px; border-top: 1px solid var(--section-border, #e0e0e0); }
	.sec-stile-2 .s2-col { width: 100%; border: none; padding: 0; padding-top: 16px; border-top: 1px solid var(--section-border, #e0e0e0); }
	.sec-stile-2 .s2-col:first-child { padding-top: 0; border-top: none; }
	.sec-stile-video { flex-direction: column; }
	.sec-stile-video .video-card__thumb-link { flex: none; width: 100%; }
}

/* msg vuoto */
.fc-tab-empty { padding: 2rem; text-align: center; color: #888; }

/* ── Magazine tab (vecchio, mantenuto per compatibilità) */
.fc-mag-section {
	background: #f6f6f6;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
}
.fc-mag-section__title {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 16px;
	color: #111;
}

/* Carosello video */
.fc-mag-carousel {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.fc-mag-carousel::-webkit-scrollbar { display: none; }
.fc-mag-carousel .fc-card {
	flex: 0 0 200px;
	scroll-snap-align: start;
}
.fc-mag-carousel .fc-card__thumb {
	height: 120px;
	object-fit: cover;
}

/* Articoli: featured + lista */
.fc-mag-articles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}
.fc-mag-featured__thumb-link img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 0;
	display: block;
}
.fc-mag-featured__body {
	margin-top: 12px;
}
.fc-mag-featured__title {
	font-size: 1rem;
	font-weight: 700;
	margin: 6px 0 8px;
	line-height: 1.3;
}
.fc-mag-featured__title a {
	color: #111;
	text-decoration: none;
}
.fc-mag-featured__title a:hover { color: #d70700; }
.fc-mag-featured__excerpt {
	font-size: 0.85rem;
	color: rgba(0,0,0,0.6);
	margin: 0;
	line-height: 1.5;
}
.fc-mag-article-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.fc-mag-article-list__item {
	border-bottom: 1px solid rgba(0,0,0,0.06);
	padding: 10px 0;
}
.fc-mag-article-list__item:last-child { border-bottom: none; }
.fc-mag-article-list__item a {
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
	color: #111;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.3;
}
.fc-mag-article-list__item a:hover { color: #d70700; }
.fc-mag-article-list__item img {
	width: 66px;
	height: 50px;
	object-fit: cover;
	border-radius: 0;
	flex-shrink: 0;
}

/* Griglia notizie */
.fc-mag-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.fc-mag-news-grid .fc-card__thumb {
	height: 130px;
	object-fit: cover;
}
.fc-card__date {
	display: block;
	font-size: 0.75rem;
	color: rgba(0,0,0,0.4);
	margin-top: 6px;
}

@media (max-width: 680px) {
	.fc-mag-articles {
		grid-template-columns: 1fr;
	}
	.fc-mag-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.fc-mag-news-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Shop placeholder ────────────────────────────────────── */
.fc-shop-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: 320px;
	background: #f7f7f7;
	border: 1px dashed rgba(0, 0, 0, 0.15);
	border-radius: 8px;
}
.fc-shop-placeholder__text {
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.45);
	margin: 0;
	font-weight: 300;
}

/* ── Player fullwidth ────────────────────────────────────── */
.vp-player-full {
	width: 100%;
}
.vp-player-full .vp-player-wrap {
	max-width: 100%;
}
.vp-player-full .vp-page {
	width: 100%;
	padding-block: 0;
}
.vp-player-full .fc-player-wrap,
.vp-player-full .fc-facade {
	max-width: 100%;
}

/* Reset border-radius + togli padding-top dal plugin */
.vp-page {
	border-radius: 0 !important;
	padding-block-start: 0 !important;
}
.fc-player-container {
	border-radius: 0 !important;
	border: 1px solid #3a3a3a;
}

/* Meta colors su sfondo chiaro */
.vp-player-full .vp-meta {
	border-bottom-color: rgba(255, 255, 255, 0.2);
}
.vp-player-full .vp-badge {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.75);
}
.vp-player-full .vp-badge:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}
.vp-player-full .vp-title {
	color: #ffffff;
}
.vp-player-full .vp-date {
	color: rgba(255, 255, 255, 0.6);
}
.vp-player-full .vp-tag {
	color: rgba(255, 255, 255, 0.6);
}
.vp-player-full .vp-tag:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* ── Badge Premium ── */
.vp-premium-header {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 1.5rem;
	padding-block: 0.75rem;
}
.vp-premium-badge {
	display: inline-flex;
	align-items: stretch;
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	line-height: 1;
	overflow: hidden;
	border-radius: 4px;
}
.vp-premium-badge__lock {
	background: #000;
	padding: 6px 6px 6px 8px;
	font-size: 1rem;
	display: flex;
	align-items: center;
}
.vp-premium-badge__corona {
	background: #000;
	color: #fff;
	padding: 6px 8px;
	display: flex;
	align-items: center;
}
.vp-premium-badge__label {
	background: #d70700;
	color: #fff;
	padding: 6px 8px;
	display: flex;
	align-items: center;
}

/* fc-video-meta (likes, commenti, share) boxed come il resto del sito */
.vp-player-full .fc-video-meta {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

/* ── Paywall come overlay sul video (solo nella pagina video) ── */
/* Scopo tutto sotto .vp-player-full per non toccare il paywall degli articoli */
/* ── Paywall ─────────────────────────────────────────────── */
.fc-paywall {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 640px) {
	.fc-paywall {
		aspect-ratio: unset;
		min-height: unset;
		padding: 2.5rem 0;
		overflow: visible;
	}
}
.fc-paywall__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.3);
	display: block;
}
.fc-paywall__card {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	width: min(400px, 88%);
	box-shadow: 0 4px 32px rgba(0,0,0,0.35);
	font-family: 'Poppins', sans-serif;
}
.fc-paywall__header {
	padding: 1.5rem 1.75rem 1.25rem;
}
.fc-paywall__headline {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 1.15rem;
	text-transform: uppercase;
	color: #111;
	margin: 0;
	letter-spacing: 0.01em;
}
.fc-paywall__premium-word {
	color: #d70700;
}
.fc-paywall__band {
	background: #f1f1f1;
	padding: 0.75rem 1.75rem;
	font-size: 0.9rem;
	color: #111;
}
.fc-paywall__band p { margin: 0; }
.fc-paywall__features {
	padding: 1.25rem 1.75rem;
}
.fc-paywall__checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: #333;
}
.fc-paywall__check {
	color: #d70700;
	font-weight: 700;
	margin-right: 0.4rem;
}
.fc-paywall__cta-wrap {
	padding: 0 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.6rem;
}
.fc-paywall__price {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #111;
	text-align: center;
}
.fc-paywall__btn {
	display: block;
	background: #d70700;
	color: #fff;
	text-align: center;
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.8rem 1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s;
}
.fc-paywall__btn:hover { background: #a50600; color: #fff; }
.fc-paywall__footnote {
	margin: 0;
	font-size: 0.75rem;
	color: rgba(0,0,0,0.4);
	text-align: center;
}
.fc-paywall__login {
	padding: 0 1.75rem 1.25rem;
	text-align: center;
}
.fc-paywall__login a {
	font-size: 0.8rem;
	color: rgba(0,0,0,0.45);
	text-decoration: underline;
}
.fc-paywall__login a:hover { color: #111; }

/* Variante articolo: nessun thumbnail, card centrata inline */
.fc-paywall--article {
	aspect-ratio: unset;
	background: transparent;
	display: block;
	margin: 2rem auto;
	max-width: 420px;
}
.fc-paywall--article .fc-paywall__card {
	position: static;
	width: 100%;
	box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

/* ── Sidebar nella sezione bianca ────────────────────────── */
/* I video suggeriti e la playlist ora sono su sfondo chiaro */
.vp-white-section .vp-sidebar {
	padding-top: 2rem;
}
.vp-white-section .vp-sidebar-heading {
	font-family: 'Albert Sans', sans-serif;
	font-size: 1.1rem;
	color: #111;
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #d70700;
}
.vp-white-section .vp-related__title a {
	color: #111;
}
.vp-white-section .vp-related__title a:hover {
	color: #d70700;
}
.vp-white-section .vp-related__term {
	color: #d70700;
}
.vp-white-section .vp-related__date {
	color: rgba(0,0,0,0.45);
}
/* Playlist nella sezione bianca */
.vp-white-section .vp-playlist-label {
	color: #d70700;
}
.vp-white-section .vp-playlist-name {
	color: #111;
}
.vp-white-section .vp-playlist-count {
	color: rgba(0,0,0,0.5);
}
.vp-white-section .vp-playlist-item__title {
	color: #111;
}
.vp-white-section .vp-playlist-item--active .vp-playlist-item__title {
	color: #d70700;
}
.vp-white-section .vp-playlist-item__duration {
	color: rgba(0,0,0,0.5);
}
.vp-white-section .vp-playlist-item__link:hover .vp-playlist-item__title {
	color: #d70700;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
	.fc-feed-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.fc-feed-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.fc-tab-btn {
		padding: 12px 18px;
		font-size: 1rem;
	}
}
@media (max-width: 480px) {
	.fc-feed-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Logo testuale ── */
.site-header__logo--text {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 1;
}
.site-logo__red   { color: #d70700; }
.site-logo__black { color: #000000; }

/* ── Sezioni homepage ── */
.fc-section {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(0,0,0,0.07);
}
.fc-section__heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 1.4rem;
	text-transform: uppercase;
	margin: 0 0 1.5rem;
	line-height: 1;
}
.fc-section__icon {
	height: 1.6em;
	width: auto;
	display: block;
	border-radius: 5px;
}
.fc-section__icon--play {
	display: flex;
	align-items: center;
	line-height: 0;
}
.fc-section__heading-black { color: #111; }
.fc-section__heading-red   { color: #d70700; }

/* Corona Direct card */
.fc-cd-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: center;
}
@media (max-width: 680px) {
	.fc-cd-card { grid-template-columns: 1fr; }
}
.fc-cd-card__thumb-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 16/9;
	background: #000;
}
.fc-cd-card__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.fc-cd-card__thumb-link:hover .fc-cd-card__thumb { transform: scale(1.03); }
.fc-cd-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	justify-content: center;
}
.fc-cd-card__title {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 1.2rem;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}
.fc-cd-card__title a { color: #111; text-decoration: none; }
.fc-cd-card__title a:hover { color: #d70700; }
.fc-cd-card__excerpt {
	font-size: 0.9rem;
	color: rgba(0,0,0,0.6);
	line-height: 1.6;
	margin: 0;
}
.fc-cd-card__stats {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.fc-cd-card__stat {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.85rem;
	color: rgba(0,0,0,0.45);
	font-family: 'Poppins', sans-serif;
}
.fc-cd-card__stat svg {
	flex-shrink: 0;
	opacity: 0.5;
}
.fc-cd-card__cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0.5rem 1.25rem;
	font-size: 0.82rem;
	font-weight: 700;
}

/* Badge Premium sulle card */
.fc-card__premium-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: stretch;
	font-family: 'Albert Sans', sans-serif;
	font-weight: 800;
	font-size: 0.68rem;
	text-transform: uppercase;
	line-height: 1;
	border-radius: 3px;
	overflow: hidden;
}
.fc-card__premium-badge__lock {
	background: #000;
	padding: 4px 5px;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
}
.fc-card__premium-badge__label {
	background: #d70700;
	color: #fff;
	padding: 4px 6px;
	display: flex;
	align-items: center;
}

/* Titolo video */
.fc-video-meta__title {
	text-transform: uppercase;
	font-size: 1.6rem !important;
	letter-spacing: -0.01em;
}

/* Durata */
.fc-video-meta__duration {
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 0.5rem;
	font-family: 'Poppins', sans-serif;
}

/* Like / commenti label */
.fc-like-btn,
.fc-comments-link {
	font-family: 'Poppins', sans-serif;
}
.fc-like-btn__count::after { content: ' mi piace'; }

@media (max-width: 640px) {
	.fc-like-btn__count::after { content: ''; }
	.fc-meta-label { display: none; }
}

/* ===========================================
   MOBILE FEED (lista infinita)
   =========================================== */

/* Desktop: mostra magazine, nascondi mobile feed */
.fc-mobile-feed { display: none; }

/* Mobile: nascondi magazine, mostra feed lista */
@media (max-width: 680px) {
	.fc-magazine { display: none; }
	.fc-mobile-feed { display: block; padding: 0 1rem; background: #000; }

	/* Fondo nero solo sulla home mobile */
	body.home .site-main { background: #000; }

	.fc-mf-item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 0;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		text-decoration: none;
		color: inherit;
	}
	.fc-mf-item:last-of-type { border-bottom: none; }

	.fc-mf-item__thumb {
		width: 72px;
		height: 72px;
		object-fit: cover;
		flex-shrink: 0;
		border-radius: 0;
		background: #1a1a1a;
	}
	.fc-mf-item__thumb--empty {
		background: #1a1a1a;
	}

	.fc-mf-item__body {
		flex: 1;
		min-width: 0;
	}
	.fc-mf-item__cat {
		display: inline-block;
		font-size: 0.52rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.07em;
		background: #d70700;
		color: #fff;
		padding: 1px 4px;
		border-radius: 2px;
		margin-bottom: 0;
		font-family: 'Poppins', sans-serif;
	}
	.fc-mf-item__title {
		margin: 0;
		font-size: 0.875rem;
		font-weight: 700;
		line-height: 1.35;
		color: #ffffffdf;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.fc-mf-sentinel { height: 1px; }

	.fc-mf-loading {
		display: flex;
		justify-content: center;
		padding: 1.5rem 0;
	}
	.fc-mf-loading[aria-hidden="true"] { display: none; }

	.fc-mf-spinner {
		width: 28px;
		height: 28px;
		border: 3px solid rgba(0, 0, 0, 0.15);
		border-top-color: #d70700;
		border-radius: 50%;
		animation: fc-spin 0.75s linear infinite;
	}
}

/* ADV slot – visibile in tutti i contesti (articolo, feed mobile) */
.fc-mf-adv {
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.fc-mf-adv__box {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e0e0e0;
	height: 90px;
	width: 100%;
}
.fc-mf-adv span {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #999;
	text-transform: uppercase;
}

.site-main.vp-page {
	background: #000;
}

.site-main.vp-page .fc-player-wrap {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

/* Paywall video — stessa larghezza visiva del player (1280px - padding laterale) */
@media (min-width: 641px) {
	.site-main.vp-page .fc-paywall {
		max-width: calc(1280px - 3rem);
		margin-inline: auto;
	}
}

/* ════════════════════════════════════════════════════════
   ARCHIVE PAGES (video + posts)
   ════════════════════════════════════════════════════════ */

.fc-archive {
	background: #000;
	color: #fff;
	min-height: 60vh;
}

/* Header */
.fc-archive__header {
	background: #000;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 2.5rem 0 1.5rem;
}

.fc-archive__header-inner {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.fc-archive__logo {
	height: 28px;
	width: auto;
	display: block;
}

.fc-archive__label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #d70700;
	display: block;
}

.fc-archive__title {
	font-size: 1.75rem;
	font-weight: 800;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.fc-archive__desc {
	color: rgba(255,255,255,0.6);
	margin: 0;
	font-size: 0.95rem;
}

/* Section */
.fc-archive__section {
	padding: 2rem 0 3rem;
}

.fc-archive__section-head {
	margin-bottom: 1.5rem;
}

/* ── Video archive grid ── */
.fc-archive__video-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.fc-archive__video-item {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.fc-archive__video-thumb {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #111;
}

.fc-archive__video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fc-archive__video-title {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.35;
}

.fc-archive__video-title a {
	color: #ffffffdf;
	text-decoration: none;
}
.fc-archive__video-title a:hover { color: #fff; }

/* ── Posts archive: featured ── */
.fc-archive__featured {
	display: flex;
	gap: 2rem;
	padding-bottom: 2rem;
}

/* Articoli: bordo sotto il featured */
.fc-archive--posts .fc-archive__featured {
	margin-bottom: 2rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fc-archive__featured-thumb {
	flex: 1.4;
	display: block;
	overflow: hidden;
	flex-shrink: 0;
}

.fc-archive__featured-thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.fc-archive__featured-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
}

/* Badge nel featured: non allargato a tutta la larghezza */
.fc-archive__featured-body .sec-col-badge {
	align-self: flex-start;
}

.fc-archive__featured-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
}

.fc-archive__featured-title a {
	color: #ffffffdf;
	text-decoration: none;
}
.fc-archive__featured-title a:hover { color: #fff; }

/* ── Posts archive: grid – usa struttura post-item come in home ── */
.fc-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	--section-border: rgba(255,255,255,0.12);
}

/* post-item: layout orizzontale (thumbnail sx + testo dx) */
.fc-archive__grid .post-item--arc {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 14px 0;
	border-top: 1px solid var(--section-border);
}

/* Thumbnail: contenitore fisso, immagine che copre */
.fc-archive__grid .post-item--arc .post-thumbnail {
	flex-shrink: 0;
	width: 90px;
}
.fc-archive__grid .post-item--arc .post-thumbnail a {
	display: block;
	width: 90px;
	height: 60px;
	overflow: hidden;
}
.fc-archive__grid .post-item--arc .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	display: block;
}

/* Area testo allineata alla thumbnail */
.fc-archive__grid .post-item--arc .list-item-title-area {
	flex: 1;
	min-width: 0;
}

/* Badge: fondo rosso, testo bianco */
.fc-archive__grid .post-item--arc .post-category-badge {
	background: #d70700;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding: 2px 6px;
	font-size: 0.65rem;
	letter-spacing: 0.07em;
	border-radius: 3px;
}
.fc-archive__grid .post-item--arc .post-category-badge a { color: #fff !important; }
.fc-archive__grid .post-item--arc .list-item-badges { padding-left: 8px; margin-bottom: 4px; }

/* Titolo bianco */
.fc-archive__grid .post-item--arc h2.post-title {
	font-size: 0.85rem;
	padding-left: 8px;
	margin: 0;
}
.fc-archive__grid .post-item--arc h2.post-title a { color: #ffffffdf; }
.fc-archive__grid .post-item--arc h2.post-title a:hover { color: #fff; }

/* Separatori verticali tra colonne */
.fc-archive__grid .post-item--arc:nth-child(3n+2),
.fc-archive__grid .post-item--arc:nth-child(3n+3) {
	padding-left: 20px;
	border-left: 1px solid var(--section-border);
}
.fc-archive__grid .post-item--arc:nth-child(3n+1) { padding-right: 20px; }
.fc-archive__grid .post-item--arc:nth-child(3n+2) { padding-right: 20px; }

/* Nascondi excerpt */
.fc-archive__grid .post-item--arc .post-content { display: none; }

/* ── Video archive grid: colonne con thumbnail 16:9 ── */
.fc-archive__grid--video {
	gap: 1.5rem 0;
}

.fc-archive__grid--video .post-item--arc-video {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding-top: 0;
	border-top: none;
	padding-bottom: 1rem;
}

/* Separatore verticale tramite column-gap + background grid:
   nessun padding laterale sugli item → tutti i thumbnail stessa larghezza */
.fc-archive__grid--video {
	column-gap: 1px;
	background: rgba(255,255,255,0.12);
}
.fc-archive__grid--video .post-item--arc-video {
	background: #000;
}
.fc-archive__grid--video .post-item--arc-video:nth-child(3n+1),
.fc-archive__grid--video .post-item--arc-video:nth-child(3n+2),
.fc-archive__grid--video .post-item--arc-video:nth-child(3n+3) {
	border-left: none;
	border-top: none;
	padding-left: 0;
	padding-right: 0;
}

/* Thumbnail video: 16:9 full-width con play button */
.post-thumbnail--video {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	overflow: hidden;
	background: #111;
}
.post-thumbnail--video img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

/* Badge e titolo video: niente padding-left */
.post-item--arc-video .list-item-badges { padding-left: 0; margin-bottom: 2px; }
.post-item--arc-video h2.post-title { padding-left: 0; font-size: 0.9rem; margin: 0; }
.post-item--arc-video h2.post-title a { color: #ffffffdf; }

/* Featured video: thumbnail con play + dur */
.fc-archive__featured-thumb--video {
	position: relative;
	flex: 1.4;
	flex-shrink: 0;
	overflow: hidden;
}
.fc-archive__featured-thumb--video img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-radius: 0;
}
/* Play e dur: già position:absolute dal CSS globale, funzionano con position:relative sul padre */

.fc-archive__empty {
	color: rgba(255,255,255,0.5);
	padding: 3rem 0;
	text-align: center;
}

/* Pagination in dark context */
.fc-archive .pagination-wrap {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}

.fc-archive .page-numbers {
	color: rgba(255,255,255,0.6);
	border-color: rgba(255,255,255,0.2);
}

.fc-archive .page-numbers.current,
.fc-archive .page-numbers:hover {
	background: #d70700;
	color: #fff;
	border-color: #d70700;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.fc-archive__featured {
		flex-direction: column;
	}
	.fc-archive__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Reset colonne 3 → 2 per articoli */
	.fc-archive__grid .post-item--arc:nth-child(3n+1),
	.fc-archive__grid .post-item--arc:nth-child(3n+2),
	.fc-archive__grid .post-item--arc:nth-child(3n+3) {
		padding-left: 0;
		padding-right: 0;
		border-left: none;
	}
	.fc-archive__grid .post-item--arc:nth-child(2n) {
		padding-left: 14px;
		border-left: 1px solid var(--section-border);
	}
	.fc-archive__grid .post-item--arc:nth-child(odd) { padding-right: 14px; }
	/* Reset colonne 3 → 2 per video */
	.fc-archive__grid--video .post-item--arc-video:nth-child(3n+1),
	.fc-archive__grid--video .post-item--arc-video:nth-child(3n+2),
	.fc-archive__grid--video .post-item--arc-video:nth-child(3n+3) {
		padding-left: 0;
		padding-right: 0;
		border-left: none;
	}
	.fc-archive__grid--video .post-item--arc-video:nth-child(2n) {
		padding-left: 14px;
		border-left: 1px solid var(--section-border);
	}
	.fc-archive__grid--video .post-item--arc-video:nth-child(odd) { padding-right: 14px; }
}

/* Bordo sottile sui thumbnail — home articoli, archivi video e articoli */
.sec-stile-1 .sec-1-main .post-item:first-child img,
.sec-stile-1 .sec-1-main .post-item:not(:first-child) .post-thumbnail img,
.sec-stile-2 .post-item--col-featured .post-thumbnail img,
.fc-archive__featured-thumb img,
.fc-archive__featured-thumb--video img,
.fc-archive__grid .post-item--arc .post-thumbnail img,
.post-thumbnail--video img {
	border: 1px solid #3a3a3a;
}

/* ── Archivio Playlist ── */
.fc-archive__playlist-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.fc-archive__playlist-grid .playlist-card__thumb {
	border-color: #3a3a3a;
}

.fc-archive__playlist-grid .playlist-card__title a {
	color: #ffffffdf;
}
.fc-archive__playlist-grid .playlist-card__title a:hover { color: #fff; }

@media (max-width: 900px) {
	.fc-archive__playlist-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Playlist strip sotto il player ── */
.vp-playlist-strip {
	background: #000;
	border-top: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	padding: 0;
}

.vp-playlist-strip__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}

.vp-pstrip-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	text-decoration: none;
	border-right: 1px solid #2a2a2a;
	min-width: 0;
	flex: 0 1 auto;
	max-width: 220px;
	transition: background 0.15s;
}

.vp-pstrip-item:hover {
	background: #111;
}

.vp-pstrip-item--active {
	background: #111;
}

.vp-pstrip-item__num {
	flex-shrink: 0;
	font-size: 0.7rem;
	font-weight: 800;
	color: rgba(255,255,255,0.35);
	font-family: 'Poppins', sans-serif;
	min-width: 16px;
	text-align: right;
}

.vp-pstrip-item--active .vp-pstrip-item__num {
	color: #d70700;
}

.vp-pstrip-item__title {
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(255,255,255,0.55);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.vp-pstrip-item--active .vp-pstrip-item__title {
	color: #fff;
}

@media (max-width: 768px) {
	.vp-playlist-strip__inner {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
	}
	.vp-playlist-strip__inner::-webkit-scrollbar { display: none; }
	.vp-pstrip-item {
		flex-shrink: 0;
	}
}
