.spd-posts-display {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

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

.spd-post-image {
	aspect-ratio: 16 / 10;
	background: #f2f2f2;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

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

.spd-post-image-fallback {
	align-items: center;
	background: linear-gradient(135deg, #f1f1f1, #dcdcdc);
	color: #555;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	letter-spacing: 0.04em;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.spd-post-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.spd-post-date {
	color: #777;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.spd-post-title {
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 14px;
}

.spd-post-title a {
	color: inherit;
	text-decoration: none;
}

.spd-post-title a:hover,
.spd-post-title a:focus {
	text-decoration: underline;
}

.spd-post-excerpt {
	margin-bottom: 20px;
}

.spd-post-excerpt p {
	margin: 0;
}

.spd-post-read-more {
	margin-top: auto;
}

.spd-load-more-wrap {
	margin-top: 40px;
	text-align: center;
}

.spd-load-more.is-loading {
	cursor: wait;
	opacity: 0.65;
}

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

@media (max-width: 640px) {
	.spd-posts-display {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.spd-post-content {
		padding: 20px;
	}

	.spd-post-title {
		font-size: 21px;
	}
}
