.rp-compact-section {
	width: 100%;
	display: flex;
	justify-content: center;
}

.rp-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.rp-header {
	margin-bottom: 40px;
	max-width: 800px;
}

.rp-section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.2;
}

.rp-intro-text {
	font-size: 1.125rem;
	line-height: 1.5;
}

.rp-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	align-items: stretch;
}

.rp-compact-card {
	padding: 24px 16px;
	border-left: 3px solid #E2725B;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rp-card-number {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
}

.rp-card-title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 12px;
}

.rp-card-description {
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0;
	flex-grow: 1;
}

/* Tablet */
@media (max-width: 1024px) {
	.rp-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	
	/* Center last two items on new row */
	.rp-compact-card:nth-child(4),
	.rp-compact-card:nth-child(5) {
		grid-column: span 1; /* Or adjust as needed for centering logic if preferred */
	}
}

/* Mobile */
@media (max-width: 767px) {
	.rp-section-title {
		font-size: 1.75rem;
	}

	.rp-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
