/* ══════════════════════════════════════════════════════════
   REVIEWS SECTION
   Text-based trust signals, no star icons, per the brand's
   no-star-ratings rule. Shared between the homepage and the
   About Us page via swb_render_reviews_section().
════════════════════════════════════════════════════════════ */

.rv-section { padding: 88px 0; }

.rv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rv-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 40px 24px;
	border: 1px solid var(--color-sand);
	border-radius: 12px;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.rv-card:hover {
	border-color: var(--color-red);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.rv-card__badge {
	position: absolute;
	top: -12px;
	background: var(--color-red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}

.rv-card__platform {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6a6460;
	margin-top: 10px;
}

.rv-card__rating {
	font-family: var(--font-heading);
	font-size: 44px;
	font-weight: 400;
	color: var(--color-charcoal);
	line-height: 1;
	margin: 6px 0 2px;
}
.rv-card__rating-max {
	font-size: 20px;
	color: #6a6460;
}

.rv-card__count {
	font-size: 13px;
	color: #6a6460;
	margin-bottom: 10px;
}

.rv-card__cta-text {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 400;
	color: var(--color-charcoal);
	margin: 14px 0 12px;
}

.rv-card__link {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-red);
	margin-top: 8px;
}

.rv-card--cta { justify-content: center; }

@media (max-width: 760px) {
	.rv-section { padding: 56px 0; }
	.rv-grid { grid-template-columns: 1fr; gap: 20px; }
}
