.rpe-wrap {
	width: 100%;
}

.rpe-section-title {
	margin-top: 0;
	line-height: 1.35;
}

.rpe-grid {
	display: grid;
	align-items: stretch;
}

.rpe-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rpe-thumbnail-link {
	display: block;
	overflow: hidden;
	line-height: 0;
}

.rpe-thumbnail {
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.rpe-thumbnail-link:hover .rpe-thumbnail {
	transform: scale(1.03);
}

.rpe-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.rpe-date {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	line-height: 1.5;
}

.rpe-post-title {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.45;
}

.rpe-post-title a {
	text-decoration: none;
	transition: color 0.2s ease;
}

.rpe-excerpt {
	margin-bottom: 15px;
	font-size: 15px;
	line-height: 1.7;
}

.rpe-read-more {
	display: inline-block;
	align-self: inherit;
	margin-top: auto;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.rpe-empty {
	padding: 16px;
	border: 1px dashed #c8c8c8;
	color: #666;
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.rpe-card,
	.rpe-thumbnail,
	.rpe-post-title a,
	.rpe-read-more {
		transition: none;
	}
}

