.rfp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rfp-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.rfp-thumb {
	display: block;
	line-height: 0;
}

.rfp-thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.rfp-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.rfp-title {
	margin: 0 0 8px;
	font-size: 1.15em;
	line-height: 1.3;
}

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

.rfp-date {
	font-size: 0.85em;
	opacity: 0.65;
	margin-bottom: 8px;
}

.rfp-excerpt {
	font-size: 0.95em;
	line-height: 1.5;
	margin-bottom: 12px;
	flex: 1;
}

.rfp-read-more {
	display: inline-block;
	font-weight: 600;
	text-decoration: none;
	margin-top: auto;
}

@media (max-width: 767px) {
	.rfp-grid {
		grid-template-columns: 1fr !important;
	}
}
