/* ===== Projet vedette (tuile) ===== */
.zpc {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

/* Zone image : largeur du container, hauteur auto (ratio naturel de l'image) */
.zpc-media {
	width: 100%;
	background: #333; /* placeholder gris (comme la maquette) */
	line-height: 0;
}
.zpc-pic { display: block; line-height: 0; }
.zpc-media img,
.zpc-img {
	display: block;
	width: 100%;
	height: auto;
}
.zpc-img-empty { display: block; width: 100%; aspect-ratio: 16 / 9; background: #333; }

.zpc-info { display: flex; flex-direction: column; gap: 4px; }
.zpc-title { margin: 0; }
.zpc-tags { opacity: .7; }
