.thsalg-google-review {
	box-sizing: border-box;
	width: min(1120px, calc(100% - 32px));
	margin: 34px auto;
	padding: 0;
	color: #10365f;
}

.thsalg-google-review__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 26px 30px;
	border: 1px solid #c9dcf2;
	border-radius: 18px;
	background: linear-gradient(135deg, #f2f7fd 0%, #fff 72%);
	box-shadow: 0 12px 32px rgba(16, 54, 95, .07);
}

.thsalg-google-review__stars {
	color: #f6b500;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
}

.thsalg-google-review h2 {
	margin: 0 0 5px;
	color: #10365f;
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.2;
}

.thsalg-google-review p {
	margin: 0;
	color: #58708b;
	font-size: 15px;
}

.thsalg-google-review__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 20px;
	border-radius: 9px;
	background: #0057b8;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: transform .15s ease, background-color .15s ease;
}

.thsalg-google-review__button:hover,
.thsalg-google-review__button:focus {
	background: #004794;
	transform: translateY(-1px);
}

.thsalg-review-consent {
	margin: 14px 0 18px;
	padding: 14px 16px 10px;
	border: 1px solid #c9dcf2;
	border-radius: 9px;
	background: #f5f9fe;
}

.thsalg-review-consent .form-row {
	margin-bottom: 4px;
}

.thsalg-review-consent .description {
	display: block;
	margin: 6px 0 0 25px;
	color: #58708b;
	font-size: 12px;
}

@media (max-width: 820px) {
	.thsalg-google-review__inner {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 24px;
		text-align: center;
	}

	.thsalg-google-review__button {
		width: 100%;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.thsalg-google-review {
		width: calc(100% - 20px);
		margin: 24px auto;
	}

	.thsalg-google-review__stars {
		font-size: 21px;
	}
}

