/* Fullscreen Content Blocks - stili */

.fsc-page {
	min-height: 100vh;
	width: 100%;
	box-sizing: border-box;
	padding: 40px 24px;
	position: relative;
}
.fsc-back {
	display: inline-block;
	margin-bottom: 24px;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.7;
}
.fsc-back:hover { opacity: 1; }

.fsc-content {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}
.fsc-content img,
.fsc-content video {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 16px 0;
}
.fsc-content pre,
.fsc-content code {
	overflow-x: auto;
	max-width: 100%;
	white-space: pre-wrap;
	word-break: break-word;
	background: #1e1e1e;
	color: #eaeaea;
	padding: 12px;
	border-radius: 6px;
	display: block;
}
.fsc-content iframe,
.fsc-content embed {
	max-width: 100%;
}
.fsc-content table {
	max-width: 100%;
	display: block;
	overflow-x: auto;
}

/* Sezione inline (full-width dentro una pagina) */
.fsc-inline {
	width: 100%;
	min-height: 100vh;
	box-sizing: border-box;
	padding: 40px 24px;
}

/* Bottone + overlay (popup a pieno schermo) */
.fsc-trigger {
	cursor: pointer;
	padding: 10px 20px;
	font-size: 15px;
	border: none;
	border-radius: 6px;
	background: #1a1a1a;
	color: #fff;
}
.fsc-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	background: #fff;
	overflow: hidden;
}
.fsc-overlay.fsc-open { display: block; }
.fsc-overlay-inner {
	height: 100vh;
	height: 100dvh;
	box-sizing: border-box;
	padding: 60px 24px 40px;
	position: relative;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.fsc-close {
	position: fixed;
	top: 16px;
	right: 20px;
	font-size: 32px;
	line-height: 1;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 2147483647;
}
html.fsc-overlay-lock,
body.fsc-overlay-lock {
	overflow: hidden;
	height: 100%;
}

/* Responsive */
@media (max-width: 600px) {
	.fsc-page, .fsc-inline { padding: 24px 16px; }
	.fsc-overlay-inner { padding: 48px 16px 24px; }
	.fsc-close { top: 8px; right: 12px; font-size: 28px; }
}
