.och-channel-strip {
	margin: 6px 10px 14px;
}

.och-channel-strip__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
	gap: 4px;
	padding: 5px;
	border: 1px solid rgba(var(--theme-color-rgb), 0.1);
	border-radius: var(--theme-border-radius-xl);
	background:
		linear-gradient(120deg, rgba(var(--theme-color-rgb), 0.055), transparent 34%),
		var(--main-bg-color);
	box-shadow: 0 12px 30px -24px var(--main-shadow);
}

.och-channel-link {
	display: flex;
	min-width: 0;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid transparent;
	border-radius: var(--theme-border-radius-lg);
	color: var(--main-color);
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.och-channel-link:hover,
.och-channel-link:focus-visible {
	border-color: rgba(var(--theme-color-rgb), 0.16);
	color: var(--focus-color);
	background: var(--theme-color-bg);
	transform: translateY(-1px);
}

.och-channel-link:focus-visible {
	outline: 2px solid rgba(var(--theme-color-rgb), 0.3);
	outline-offset: 1px;
}

.och-channel-link.is-active {
	border-color: rgba(var(--theme-color-rgb), 0.46);
	color: #fff;
	background: linear-gradient(135deg, var(--theme-color), var(--hover-color));
	box-shadow: 0 9px 20px -12px var(--focus-shadow-color);
}

.och-channel-link__icon {
	display: inline-flex;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	color: var(--focus-color);
	background: var(--theme-color-bg);
	font-size: 15px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.och-channel-link.is-active .och-channel-link__icon {
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
}

/* OneNav normally pulls the first search banner underneath the fixed header.
 * A channel strip now precedes it, so keep that banner in normal flow. */
.och-channel-strip ~ .header-banner.header-calculate {
	margin-top: 0;
}

@media (max-width: 991.98px) {
	.och-channel-strip {
		margin: 3px 0 12px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.och-channel-strip::-webkit-scrollbar {
		display: none;
	}

	.och-channel-strip__inner {
		display: flex;
		width: max-content;
		min-width: 100%;
		gap: 3px;
		padding: 4px 12px;
		border-width: 1px 0;
		border-radius: 0;
	}

	.och-channel-link {
		min-width: 112px;
		min-height: 42px;
		gap: 6px;
		padding: 7px 10px;
		font-size: 13px;
	}

	.och-channel-link__icon {
		width: 26px;
		height: 26px;
		flex-basis: 26px;
		border-radius: 8px;
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.och-channel-link,
	.och-channel-link__icon {
		transition: none;
	}
}
