.wpgr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	font-family: var(--e-global-typography-text-font-family, inherit);
	color: inherit;
}

@media (max-width: 767px) {
	.wpgr-grid {
		grid-template-columns: 1fr;
	}
}

.wpgr-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 24px 6px 24px 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	padding: 22px;
	display: flex;
	flex-direction: column;
}

.wpgr-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.wpgr-who {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.wpgr-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.wpgr-avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	font-family: var(--e-global-typography-primary-font-family, inherit);
}

.wpgr-author {
	font-family: var(--e-global-typography-primary-font-family, inherit);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.3;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wpgr-google-badge {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 4px;
}

.wpgr-review-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	font-size: 13px;
	color: #70757a;
}

.wpgr-stars {
	color: #fbbc04;
	letter-spacing: 1px;
	font-size: 16px;
}

.wpgr-text-wrap {
	margin-top: 12px;
	max-height: 100px;
	overflow-y: auto;
	padding-right: 8px;
}

.wpgr-text-wrap::-webkit-scrollbar {
	width: 6px;
}

.wpgr-text-wrap::-webkit-scrollbar-track {
	background: transparent;
}

.wpgr-text-wrap::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 6px;
}

.wpgr-text-wrap {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.wpgr-text {
	margin: 0;
	font-family: var(--e-global-typography-text-font-family, inherit);
	font-size: 14px;
	line-height: 1.55;
	color: #000;
}

.wpgr-error {
	padding: 10px 14px;
	background: #fce8e6;
	border: 1px solid #f28b82;
	border-radius: 6px;
	color: #a50e0e;
	font-size: 13px;
	font-family: var(--e-global-typography-text-font-family, inherit);
}
