/* ─── HappySouper Reviews ────────────────────────────────────────────────── */

.hs-reviews {
	margin-top: 2.5rem;
	font-family: inherit;
}

.hs-reviews__heading {
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #19273a;
	border-bottom: 2px solid #19273a;
	padding-bottom: 0.4rem;
	margin-bottom: 1.25rem;
}

/* ─── Grid ───────────────────────────────────────────────────────────────── */

.hs-reviews__grid {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* ─── Karte ──────────────────────────────────────────────────────────────── */

.hs-review-card {
	background: #fff;
	border: 1px solid #e0e4ea;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
	display: flex;
	flex-direction: column;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */

.hs-review-card__header {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	background: #19273a;
	color: #fff;
	padding: 0.75rem 1rem;
}

.hs-review-card__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.hs-review-card__avatar--photo {
	object-fit: cover;
	border: 3px solid rgba(255,255,255,0.25);
}

.hs-review-card__name {
	font-weight: 600;
	font-size: 0.95rem;
	flex: 1;
	line-height: 1.2;
}

/* ─── Verdict Badge ──────────────────────────────────────────────────────── */

.hs-review-card__verdict {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.2rem 0.55rem;
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
}

.hs-verdict--super     { background: #1b8a3e; color: #fff; }
.hs-verdict--sehr-gut  { background: #2ecc71; color: #fff; }
.hs-verdict--gut       { background: #82c91e; color: #fff; }
.hs-verdict--okay      { background: #f59f00; color: #fff; }
.hs-verdict--meh       { background: #e67e22; color: #fff; }
.hs-verdict--schlecht  { background: #e03131; color: #fff; }
.hs-verdict--neutral   { background: #868e96; color: #fff; }

/* ─── Ratings ────────────────────────────────────────────────────────────── */

.hs-review-card__ratings {
	padding: 0.85rem 1rem 0.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.hs-rating {
	display: grid;
	grid-template-columns: 120px 1fr 2.5rem;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
}

.hs-rating__label {
	color: #495057;
	white-space: nowrap;
}

.hs-rating__bar {
	background: #e9ecef;
	border-radius: 4px;
	height: 7px;
	overflow: hidden;
}

.hs-rating__fill {
	height: 100%;
	background: #19273a;
	border-radius: 4px;
	transition: width 0.3s ease;
}

.hs-rating__value {
	color: #19273a;
	font-weight: 700;
	font-size: 0.8rem;
	text-align: right;
}

/* Schärfe: etwas abgesetzt, orangefarbener Balken */
.hs-rating--schaerfe .hs-rating__fill {
	background: #e67e22;
}

.hs-rating--schaerfe .hs-rating__label {
	color: #b85c00;
	font-weight: 600;
}

/* Gesamt: hervorgehoben */
.hs-rating--gesamt .hs-rating__fill {
	background: #1b8a3e;
}

.hs-rating--gesamt .hs-rating__label {
	font-weight: 700;
	color: #1b5e20;
}

.hs-rating--gesamt .hs-rating__value {
	color: #1b5e20;
}

/* Trennlinie zwischen Schärfe / Rest / Gesamt */
.hs-rating-divider {
	height: 1px;
	background: #e9ecef;
	margin: 0.2rem 0;
}

/* ─── Meinung ────────────────────────────────────────────────────────────── */

.hs-review-card__meinung {
	padding: 0.5rem 1rem 0.9rem;
	margin-top: auto;
	font-size: 0.88rem;
	line-height: 1.6;
	color: #343a40;
	border-top: 1px solid #e9ecef;
}

.hs-review-card__meinung p:last-child {
	margin-bottom: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
	.hs-rating {
		grid-template-columns: 100px 1fr 2.5rem;
	}
}
