/*--------------------------------------------------------------
Homepage — Where we listen (coverage strip)
Design: dark centered band. Behaviour: boss radar sweep + hover bloom.
--------------------------------------------------------------*/
.coverage-strip .container {
	text-align: center;
	max-width: 1000px;
}

.coverage-strip .cs-head .fade-anim-box,
.coverage-strip .cs-foot .fade-anim-box {
	display: block;
}

.coverage-strip .cs-label {
	margin: 0 0 14px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: -0.5px;
	color: #fff;
}

.coverage-strip .cs-sub {
	margin: 0 auto;
	max-width: 640px;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.82);
}

.coverage-strip .cs-channels {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 42px auto 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.coverage-strip .cs-channels li {
	line-height: 0;
	position: relative;
	opacity: 0;
	transform: translateY(9px);
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.1);
	cursor: default;
}

.coverage-strip .cs-channels li.on {
	opacity: 1;
	transform: none;
}

.coverage-strip .cs-channels svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: #fff;
	transition: fill 0.85s ease, transform 0.6s cubic-bezier(0.3, 0.7, 0.4, 1);
	will-change: fill, transform;
}

/* Sweep pulse — keep white on dark band (boss on-dark behaviour) */
.coverage-strip .cs-channels li.lit svg {
	fill: #fff;
	transform: scale(1.3);
	transition: fill 0.1s ease-out, transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.45);
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

@media (hover: hover) {
	.coverage-strip .cs-channels li:hover svg {
		fill: var(--c, #fff);
		transform: translateY(-3px) scale(1.18);
		transition: fill 0.12s ease-out, transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.3);
		filter: none;
	}

	.coverage-strip .cs-channels li:hover + li svg,
	.coverage-strip .cs-channels li:has(+ li:hover) svg {
		fill: rgba(255, 255, 255, 0.55);
		transform: translateY(-1px);
		transition: fill 0.18s ease, transform 0.2s ease;
		filter: none;
	}

	.coverage-strip .cs-channels li::after {
		content: attr(data-n);
		position: absolute;
		left: 50%;
		top: calc(100% + 9px);
		transform: translate(-50%, -3px);
		font-family: 'Oswald', sans-serif;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.55);
		line-height: 1;
		white-space: nowrap;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.18s ease 0.05s, transform 0.2s ease 0.05s;
	}

	.coverage-strip .cs-channels li:hover::after {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

.coverage-strip .cs-foot {
	max-width: 720px;
	margin: 44px auto 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
}

.coverage-strip .cs-figure {
	color: var(--brand-orange);
	font-weight: 600;
}

.coverage-strip .cs-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

@media only screen and (max-width: 767px) {
	.coverage-strip .cs-channels {
		gap: 24px;
	}

	.coverage-strip .cs-channels svg {
		width: 20px;
		height: 20px;
	}

	.coverage-strip .cs-sub {
		font-size: 16px;
	}

	.coverage-strip .cs-foot {
		font-size: 15px;
		margin-top: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.coverage-strip .cs-channels li,
	.coverage-strip .cs-channels svg {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}

	.coverage-strip .cs-channels li.lit svg {
		fill: #fff;
		filter: none;
	}
}
