/**
 * Homepage review badges — [hnm_review_badges] (task 86ey735h5).
 * Centered row of review cards matching the Austin Natural Mattress layout:
 * a green top bar, brand logo, and either a rating (Google/Yelp) or a
 * "Read Reviews" link (Trustpilot).
 */

.hnm-review-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 16px;
	margin: 4px 0 0;
}

.hnm-review-card {
	display: flex;
	flex-direction: column;
	width: 232px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	overflow: hidden;
	text-decoration: none;
	font-family: Barlow, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hnm-review-bar {
	display: block;
	height: 6px;
	background: #2b9947; /* HNM brand green */
}

.hnm-review-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
}

.hnm-review-logo svg {
	display: block;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.hnm-review-meta {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	min-width: 0;
}

/* Rating cards (Google / Yelp) */
.hnm-review-label {
	font-size: 14px;
	color: #4a4a4a;
	font-weight: 400;
}

.hnm-review-score {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 1px 0;
}

.hnm-review-num {
	font-size: 19px;
	font-weight: 600;
	color: #e7711b; /* Google-style orange score */
	line-height: 1;
}

.hnm-stars {
	position: relative;
	display: inline-block;
	font-family: Arial, sans-serif;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 1px;
}

.hnm-stars::before {
	content: "\2605\2605\2605\2605\2605";
	color: #dcdcdc;
}

.hnm-stars-fill {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
}

.hnm-stars-fill::before {
	content: "\2605\2605\2605\2605\2605";
	color: #e7b21b; /* filled star gold */
}

.hnm-review-count {
	font-size: 13px;
	color: #666;
}

/* Link cards (Trustpilot) */
.hnm-review-name {
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.hnm-review-sub {
	font-size: 13px;
	color: #666;
}

.hnm-review-cta {
	font-size: 13px;
	color: #2b9947;
	margin-top: 2px;
}

.hnm-review-card:hover .hnm-review-cta {
	text-decoration: underline;
}

@media (max-width: 540px) {
	.hnm-review-card {
		width: calc(50% - 8px);
	}
	.hnm-review-inner {
		padding: 12px;
		gap: 8px;
	}
}
