/**
 * Widget Posts Grid — CYBERIAL
 * Card style identique à la boucle homepage.
 */

/* ── Grille ───────────────────────────────────────────────── */
.cy-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ── Carte ────────────────────────────────────────────────── */
.cy-posts-grid__card {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	border: 1px solid #e0e0e0;
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.cy-posts-grid__card:hover {
	background-color: #fafafa;
	transform: translateY(-5px);
}

/* ── Image ────────────────────────────────────────────────── */
.cy-posts-grid__img {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	flex-shrink: 0;
}

.cy-posts-grid__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.cy-posts-grid__card:hover .cy-posts-grid__img img {
	transform: scale(1.05);
}

/* ── Corps ────────────────────────────────────────────────── */
.cy-posts-grid__body {
	padding: 20px 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 20px;
}

/* ── Catégorie ────────────────────────────────────────────── */
.cy-posts-grid__tag {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #999;
	display: block;
}

/* ── Titre ────────────────────────────────────────────────── */
.cy-posts-grid__title {
	font-family: 'Libre Baskerville', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	color: #1d1c1a;
	line-height: 1.3;
	margin: 0;
}

/* ── Extrait ──────────────────────────────────────────────── */
.cy-posts-grid__body .cy-posts-grid__excerpt {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 14px;
	color: #4a4a4a;
	line-height: 1.6;
	margin: 0;           /* (0,2,0) > kit (0,1,1) → on gagne */
	margin-block-end: 0;
	flex-grow: 1;
}

/* ── Bouton ───────────────────────────────────────────────── */
.cy-posts-grid__btn {
	font-family: 'Inter', -apple-system, sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #1d1c1a;
	border: 1px solid #d0d0d0;
	padding: 10px 20px;
	border-radius: 8px;
	display: inline-block;
	width: fit-content;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cy-posts-grid__card:hover .cy-posts-grid__btn {
	background-color: #191919;
	color: #ffffff;
	border-color: #191919;
}

/* ── Vide ─────────────────────────────────────────────────── */
.cy-posts-grid__empty {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 14px;
	color: #999;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
	.cy-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.cy-posts-grid {
		grid-template-columns: 1fr;
	}
}
