/* Grille d'articles, remplace le widget Posts d'Elementor Pro (skin classique). */

.cros-articles {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.cros-article-card {
	display: flex;
	flex-direction: column;
}

.cros-article-thumb {
	display: block;
	line-height: 0;
	margin-bottom: 18px;
}

.cros-article-thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 3px;
}

.cros-article-title {
	margin: 0 0 6px;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.cros-article-title a {
	color: #242424;
	text-decoration: none;
	transition: color 0.2s;
}

.cros-article-title a:hover {
	color: #444D6D;
}

.cros-article-date {
	font-family: "Rubik", sans-serif;
	font-size: 13px;
	color: #6b6f76;
	margin-bottom: 10px;
}

.cros-article-excerpt {
	font-family: "Rubik", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 12px;
}

.cros-article-more {
	font-family: "Rubik", sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #444D6D;
	text-decoration: none;
}

.cros-article-more:hover {
	text-decoration: underline;
}
