.posts-grid {
	display: grid;
	grid-template-columns: repeat(var(--posts-grid-columns, 3), minmax(0, 1fr));
	gap: 32px 20px;
	width: 100%;
}

.posts-grid__item {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.posts-grid__image-link {
	display: block;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: 10px;
}

.posts-grid__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.posts-grid__title {
	margin: 0 0 12px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
}

.page-content .posts-grid a,
.page-content .posts-grid a:hover,
.elementor-widget-shortcode .posts-grid a,
.elementor-widget-shortcode .posts-grid a:hover {
	text-decoration: none;
}

.posts-grid__title a {
	color: inherit;
	text-decoration: none;
}

.posts-grid__title a:hover {
	text-decoration: none;
	opacity: 0.85;
}

.posts-grid__excerpt {
	margin: 0 0 16px;
	color: #b3b3b3;
	font-size: 0.9375rem;
	line-height: 1.6;
	text-decoration: none;
}

.posts-grid__read-more {
	margin-top: auto;
	color: inherit;
	font-size: 0.9375rem;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-content .posts-grid .posts-grid__read-more,
.page-content .posts-grid .posts-grid__read-more:hover,
.elementor-widget-shortcode .posts-grid .posts-grid__read-more,
.elementor-widget-shortcode .posts-grid .posts-grid__read-more:hover {
	text-decoration: underline;
}

.posts-grid__read-more:hover {
	opacity: 0.85;
}

@media (max-width: 1024px) {
	.posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.posts-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
}
