/**
 * Блок reb/hub-tabs (блок 03 хаба услуг).
 * Плашки направлений со счетчиками. На мобильном - горизонтальный скролл.
 */

.reb-hub-tabs {
	background: #fff;
	border-bottom: 1px solid var(--reb-border);
	padding: 18px 0;
}

.reb-hub-tabs__list {
	display: flex;
	gap: 10px;
}

.reb-hub-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	background: var(--reb-bg);
	border: 1px solid var(--reb-border);
	font-size: 14px;
	font-weight: 700;
	color: var(--reb-text);
	white-space: nowrap;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.reb-hub-tabs__tab:hover {
	border-color: var(--reb-accent);
	color: var(--reb-accent);
}

.reb-hub-tabs__tab--active,
.reb-hub-tabs__tab--active:hover {
	background: var(--reb-accent);
	border-color: var(--reb-accent);
	color: #fff;
}

.reb-hub-tabs__tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 22px;
	padding: 0 7px;
	background: #fff;
	border: 1px solid var(--reb-border);
	font-family: var(--reb-font-mono);
	font-size: 12px;
	font-weight: 500;
	color: var(--reb-text-muted);
}

.reb-hub-tabs__tab--active .reb-hub-tabs__tab-count {
	background: rgba(255, 255, 255, 0.18);
	border-color: transparent;
	color: #fff;
}

@media (max-width: 768px) {
	.reb-hub-tabs__list {
		overflow-x: auto;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}
}
