/* Превью постов блога */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	margin: 24px 0 40px;
}

.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.post-thumbnail {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e8ecee;
}

.post-thumbnail a {
	display: block;
	height: 100%;
}

.post-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card .post-content {
	padding: 16px 18px 20px;
}

.post-card .post-title {
	margin: 0 0 8px;
	font-size: 1.15rem;
	line-height: 1.3;
}

.post-card .post-title a {
	color: #1a2a2e;
	text-decoration: none;
}

.post-card .post-meta {
	margin-bottom: 10px;
	font-size: 0.85rem;
	color: #6a7a80;
}

.post-card .post-excerpt {
	color: #4a5c62;
	font-size: 0.95rem;
}

.post-card .read-more {
	display: inline-block;
	margin-top: 12px;
	font-weight: 600;
	color: #1fa392;
	text-decoration: none;
}
