/**
 * Homepage Reviews Section - Platform Sections Design
 *
 * @package kadence
 */

.home-reviews-new {
	padding: 80px 0;
	background: #0a0a0a;
}

.reviews-header {
	text-align: center;
	margin-bottom: 50px;
}

.reviews-label {
	display: block;
	font-size: 0.75rem;
	color: #a3e635;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 12px;
}

.reviews-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.01em;
}

/* Platform Section */
.platform-section {
	margin-bottom: 60px;
}

.platform-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid #1f1f1f;
}

.platform-icon {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.platform-rating {
	font-size: 0.9rem;
	color: #a3e635;
	letter-spacing: 2px;
}

/* Reviews Row */
.reviews-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

/* Review Card */
.review-card {
	background: #141414;
	border: 1px solid #1f1f1f;
	padding: 25px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.review-card:hover {
	border-color: #a3e635;
}

/* Stars */
.review-stars {
	color: #a3e635;
	font-size: 0.85rem;
	margin-bottom: 15px;
	letter-spacing: 2px;
}

/* Text */
.review-text {
	font-size: 0.95rem;
	font-weight: 500;
	color: #d1d5db;
	line-height: 1.6;
	margin: 0 0 15px 0;
	flex: 1;
}

/* Reviewer Name */
.reviewer-name {
	font-size: 0.85rem;
	font-weight: 700;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Platform Link */
.platform-link {
	display: inline-block;
	margin-top: 25px;
	padding: 14px 28px;
	background: transparent;
	border: 1px solid #a3e635;
	color: #a3e635;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: all 0.3s ease;
}

.platform-link:hover {
	background: #a3e635;
	color: #0a0a0a;
}

/* Responsive */
@media (max-width: 1024px) {
	.reviews-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.home-reviews-new {
		padding: 60px 0;
	}
	.reviews-title {
		font-size: 1.5rem;
	}
	.reviews-row {
		grid-template-columns: 1fr;
	}
	.platform-title {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
