.futpark-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 1024px) {
	.futpark-reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.futpark-reviews-grid {
		grid-template-columns: 1fr;
	}
}

.futpark-review-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 5px 5px 6px rgb(0 0 0 / 27%);
	display: flex;
	flex-direction: column;
}

.futpark-review-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.futpark-reviewer {
	display: flex;
	align-items: center;
	gap: 10px;
}

.futpark-reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	background: #f3f4f6;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	line-height: 1;
}

/* Enforce circular shape and sizing for real image avatars */
img.futpark-reviewer-avatar {
	border-radius: 50% !important;
	width: 40px !important;
	height: 40px !important;
	object-fit: cover;
	display: block;
}

.futpark-reviewer-avatar.placeholder {
	display: inline-flex;
}

.futpark-reviewer-avatar.initials {
	background: #ffdde8; /* requested */
	color: #000; /* requested */
}

.futpark-reviewer-meta {
	line-height: 1.2;
	text-align: left;
}

.futpark-reviewer-name {
	font-weight: 600;
	color: #000;
	text-align: left;
}

.futpark-review-date {
	font-size: 12px;
	color: #6b7280;
}

.futpark-review-stars .star {
	color: #e5e7eb;
	font-size: 20px;
}

.futpark-review-stars .star.filled {
	color: #f59e0b;
}

.futpark-review-body p {
	margin: 0;
	color: #111827;
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}

.futpark-review-footer {
	margin-top: 12px;
	display: flex;
	justify-content: flex-end;
}

.futpark-tp-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #000; /* requested default */
	text-decoration: none;
	background: #f3f4f6;
	border-radius: 999px;
	padding: 4px 8px;
}

.futpark-tp-badge:hover {
	color: #000; /* keep black on hover */
}

.futpark-tp-badge .tp-icon svg {
	fill: #00b67a;
}

/* Actions / Load more */
.futpark-reviews-actions {
	margin-top: 16px;
	display: flex;
	justify-content: center;
}

.futpark-reviews-more {
	appearance: none;
	border: 1px solid #e5e7eb;
	background: #fff;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 14px;
	cursor: pointer;
}
.futpark-reviews-more:hover {
	background: #f3f4f6;
}rgb(194, 194, 194)




.futpark-reviews-more:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
