.ia-home-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2.5em 1.5em;
}

/* --- Articolo in evidenza --- */
.ia-featured-post {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2.5em;
	align-items: center;
	margin-bottom: 3em;
	padding-bottom: 2.5em;
	border-bottom: 1px solid #e5e7eb;
}
.ia-featured-img-link {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 16/10;
}
.ia-featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.ia-featured-img-link:hover .ia-featured-img {
	transform: scale(1.06);
}
.ia-featured-cat {
	display: inline-block;
	background: #046bd2;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 0.3em 0.8em;
	border-radius: 20px;
	margin-bottom: 0.8em;
}
.ia-featured-title {
	font-size: 2.1rem;
	line-height: 1.25;
	margin: 0 0 0.5em;
}
.ia-featured-title a {
	color: #1e293b;
	text-decoration: none;
}
.ia-featured-title a:hover {
	color: #046bd2;
}
.ia-featured-excerpt {
	color: #475569;
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 1.2em;
}
.ia-featured-btn {
	display: inline-block;
	background: #046bd2;
	color: #fff;
	padding: 0.7em 1.6em;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s ease;
}
.ia-featured-btn:hover {
	background: #045cb4;
	color: #fff;
}

/* --- Sezione griglia --- */
.ia-section-title {
	font-size: 1.5rem;
	margin-bottom: 1.2em;
	color: #1e293b;
}
.ia-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.8em;
}
.ia-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(16,24,40,0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ia-card:hover {
	box-shadow: 0 10px 24px rgba(16,24,40,0.12);
	transform: translateY(-3px);
}
.ia-card-img-link {
	display: block;
	overflow: hidden;
	aspect-ratio: 16/10;
}
.ia-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.ia-card-img-link:hover .ia-card-img {
	transform: scale(1.1);
}
.ia-card-content {
	padding: 1.3em;
}
.ia-card-cat {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #046bd2;
	margin-bottom: 0.5em;
}
.ia-card-title {
	font-size: 1.1rem;
	line-height: 1.35;
	margin: 0 0 0.5em;
}
.ia-card-title a {
	color: #1e293b;
	text-decoration: none;
}
.ia-card-title a:hover {
	color: #046bd2;
}
.ia-card-excerpt {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.ia-featured-post {
		grid-template-columns: 1fr;
	}
	.ia-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.ia-grid {
		grid-template-columns: 1fr;
	}
	.ia-featured-title {
		font-size: 1.6rem;
	}
}
