.gmbrs-section {
	--gmbrs-accent: #1967d2;
	--gmbrs-bg: #eaf3fb;
	background: var(--gmbrs-bg);
	padding: 48px 20px;
	box-sizing: border-box;
}
.gmbrs-section * {
	box-sizing: border-box;
}
.gmbrs-inner {
	max-width: 1180px;
	margin: 0 auto;
}
.gmbrs-heading {
	text-align: center;
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 24px;
	color: #14202e;
}

/* Badges */
.gmbrs-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-bottom: 32px;
}
.gmbrs-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.92rem;
	line-height: 1.2;
	white-space: nowrap;
}
.gmbrs-badge--outline {
	background: #f1eee9;
	color: #33302b;
}
.gmbrs-badge--filled {
	background: var(--gmbrs-accent);
	color: #fff;
}
.gmbrs-badge__label {
	font-weight: 700;
}
.gmbrs-badge__rating {
	font-weight: 700;
}
.gmbrs-badge__stars {
	color: #fbbc04;
	font-size: 0.85em;
	margin-left: 2px;
}
.gmbrs-badge--filled .gmbrs-badge__stars {
	color: #ffd766;
}
.gmbrs-badge__count {
	opacity: 0.75;
	font-size: 0.85em;
}

/* Slider shell */
.gmbrs-slider-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.gmbrs-viewport {
	overflow: hidden;
	flex: 1 1 auto;
	width: 100%;
}
.gmbrs-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}
.gmbrs-nav {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #14202e;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(20, 32, 46, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}
.gmbrs-nav:hover {
	background: var(--gmbrs-accent);
	color: #fff;
}
.gmbrs-nav:disabled {
	opacity: 0.35;
	cursor: default;
	background: #fff;
	color: #14202e;
}

/* Card */
.gmbrs-card {
	flex: 0 0 calc(100% / var(--gmbrs-cards, 3) - (16px * (var(--gmbrs-cards, 3) - 1) / var(--gmbrs-cards, 3)));
	margin-right: 16px;
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 14px rgba(20, 32, 46, 0.08);
	display: flex;
	flex-direction: column;
}
.gmbrs-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 10px;
}
.gmbrs-card__person {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gmbrs-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}
.gmbrs-avatar--fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gmbrs-accent);
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
}
.gmbrs-card__namewrap {
	display: flex;
	flex-direction: column;
}
.gmbrs-card__name {
	font-weight: 700;
	color: #14202e;
	font-size: 0.98rem;
}
.gmbrs-card__date {
	font-size: 0.82rem;
	color: #6b7785;
}
.gmbrs-card__source {
	flex: 0 0 auto;
	display: inline-flex;
}
.gmbrs-card__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}
.gmbrs-stars {
	color: #fbbc04;
	letter-spacing: 1px;
	font-size: 1rem;
}
.gmbrs-star--empty {
	color: #e1e4e8;
}
.gmbrs-card__verified {
	display: inline-flex;
}
.gmbrs-card__text {
	margin: 0 0 12px;
	color: #33302b;
	font-size: 0.95rem;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1 1 auto;
}
.gmbrs-card__readmore {
	color: #8a8f98;
	font-size: 0.88rem;
	text-decoration: none;
	align-self: flex-start;
}
.gmbrs-card__readmore:hover {
	color: var(--gmbrs-accent);
	text-decoration: underline;
}

/* Responsive card widths (JS sets --gmbrs-cards on the track element) */
@media (max-width: 900px) {
	.gmbrs-heading {
		font-size: 1.6rem;
	}
}
@media (max-width: 600px) {
	.gmbrs-section {
		padding: 32px 14px;
	}
	.gmbrs-badge {
		padding: 8px 14px;
		font-size: 0.82rem;
	}
	.gmbrs-nav {
		width: 32px;
		height: 32px;
		font-size: 1.1rem;
	}
}
