/**
 * GrandScreen Reviews Styles
 * Styles for app/game reviews section
 *
 * @package GrandScreen
 * @since 1.0.0
 */


.game-reviews-section,
.app-reviews-section {
	margin: 40px 0;
}

.reviews-preview {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.review-item-preview {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	transition: box-shadow 0.3s ease;
}

.review-item-preview:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.review-author-info {
	display: flex;
	flex-direction: column;
}

.review-author {
	font-weight: 600;
	font-size: 15px;
	color: #333;
}

.review-date {
	font-size: 13px;
	color: #666;
	margin-top: 2px;
}

.review-rating {
	display: flex;
	gap: 3px;
}

.review-rating .star {
	font-size: 18px;
	line-height: 1;
}

.review-rating .star.filled {
	color: #ffa500;
}

.review-rating .star.empty {
	color: #ddd;
}

.review-content {
	font-size: 14px;
	line-height: 1.6;
	color: #444;
}

.review-content p {
	margin: 0;
}

.reviews-view-all {
	margin-top: 20px;
	text-align: center;
}

.btn-view-all-reviews {
	display: inline-block;
	padding: 12px 30px;
	background: #0073aa;
	color: #fff !important;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	transition: background 0.3s ease;
}

.btn-view-all-reviews:hover {
	background: #005a87;
	color: #fff !important;
}


@media (max-width: 768px) {
	.review-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.review-rating {
		margin-top: 4px;
	}
}
