/* Homepage - articolo in evidenza */
.featured-article-block {
	padding: 10px 0 30px;
}

.featured-article-card {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 28px;
	background: #fff;
	border: 1px solid #e8ecef;
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.featured-article-media {
	flex: 1 1 320px;
	max-width: 420px;
	margin: 0 auto;
	padding: 20px;
	background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.featured-article-media a {
	display: block;
}

.featured-article-media img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.featured-article-body {
	flex: 1 1 280px;
	padding: 28px 28px 28px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.featured-article-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b8e23;
	margin-bottom: 10px;
}

.featured-article-title {
	font-size: 2rem;
	line-height: 1.2;
	margin: 0 0 8px;
	color: #2c3e50;
}

.featured-article-dates {
	font-size: 1.15rem;
	color: #5a6a7a;
	margin: 0 0 16px;
}

.featured-article-excerpt {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.featured-article-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.featured-article-actions .btn-event-primary,
.featured-article-actions .btn-event-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.featured-article-actions .btn-event-primary {
	background: #6b8e23;
	color: #fff;
}

.featured-article-actions .btn-event-primary:hover {
	background: #5a7a1c;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(107, 142, 35, 0.35);
}

.featured-article-actions .btn-event-secondary {
	background: #fff;
	color: #c0392b;
	border: 2px solid #c0392b;
}

.featured-article-actions .btn-event-secondary:hover {
	background: #c0392b;
	color: #fff;
}

/* Pagina singolo articolo / evento */
.article-event {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 0 40px;
}

.article-event-layout {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 36px;
}

.article-event-layout--no-image .article-event-main {
	flex: 1 1 100%;
}

.article-event-main {
	flex: 1 1 420px;
	min-width: 0;
}

.article-event-side {
	flex: 0 1 380px;
	max-width: 420px;
	width: 100%;
}

.article-event-poster {
	position: sticky;
	top: 24px;
}

.article-event-poster img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-event-header {
	text-align: left;
	margin-bottom: 20px;
}

.article-event-dates {
	display: inline-block;
	font-size: 1.05rem;
	color: #5a6a7a;
	background: #f0f4f8;
	padding: 8px 18px;
	border-radius: 999px;
	margin: 0;
}

.article-event-content {
	text-align: left;
	color: #444;
	line-height: 1.75;
	margin-bottom: 24px;
}

.article-event-content p {
	margin-bottom: 1em;
}

.article-event-content ul,
.article-event-content ol {
	padding-left: 1.4em;
	margin-bottom: 1em;
}

.article-event-content li:empty {
	display: none;
}

.article-event-downloads {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 14px;
	margin: 10px 0 0;
	padding: 20px;
	background: #f8fafb;
	border-radius: 10px;
	border: 1px solid #e8ecef;
}

.article-event-pdf-btn,
.article-event-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s ease;
}

.article-event-pdf-btn {
	background: #c0392b;
	color: #fff;
	box-shadow: 0 4px 14px rgba(192, 57, 43, 0.25);
}

.article-event-pdf-btn:hover {
	background: #a93226;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(192, 57, 43, 0.35);
}

.article-event-pdf-btn i {
	font-size: 1.4rem;
}

.article-event-link-btn {
	background: #3498db;
	color: #fff;
}

.article-event-link-btn:hover {
	background: #2980b9;
	color: #fff;
}

@media (max-width: 767px) {
	.featured-article-body {
		padding: 0 20px 24px;
		text-align: center;
	}

	.featured-article-actions {
		justify-content: center;
	}

	.featured-article-title {
		font-size: 1.6rem;
	}

	.article-event-layout {
		flex-direction: column;
		gap: 24px;
	}

	.article-event-side {
		order: -1;
		max-width: 100%;
		flex: 1 1 auto;
	}

	.article-event-poster {
		position: static;
	}
}
