.gr-card-wrap {
	display: inline-flex;
	max-width: 100%;
}

.gr-card {
	--gr-card-width: 240px;
	--gr-accent: #f4b73f;
	--gr-bg: #ffffff;
	--gr-text: #1f2937;
	--gr-subtle: #6b7280;
	align-items: center;
	background: var(--gr-bg);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
	min-height: 144px;
	padding: 22px 20px 20px;
	text-align: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: min(100%, var(--gr-card-width));
}

.gr-card:hover,
.gr-card:focus {
	box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16);
	outline: none;
	transform: translateY(-2px);
}

.gr-card__logo {
	align-items: center;
	display: inline-flex;
	font-family: Arial, sans-serif;
	font-size: 44px;
	font-weight: 700;
	height: 40px;
	justify-content: center;
	line-height: 1;
}

.gr-card__logo-g {
	background: linear-gradient(90deg, #4285f4 0 30%, #ea4335 30% 53%, #fbbc05 53% 76%, #34a853 76% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.gr-card__rating-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.gr-card__rating {
	color: var(--gr-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.gr-card__stars {
	display: inline-flex;
	gap: 2px;
}

.gr-card__star {
	color: #d1d5db;
	font-size: 22px;
	line-height: 1;
}

.gr-card__star.is-full,
.gr-card__star.is-half {
	color: var(--gr-accent);
}

.gr-card__reviews {
	color: var(--gr-subtle);
	font-size: 15px;
	line-height: 1.3;
}

@media (max-width: 480px) {
	.gr-card {
		min-height: 132px;
		padding: 18px 16px;
	}
}
