.bhtvp {
	--bhtvp-navy: #0a3c68;
	--bhtvp-steel: #87a4bd;
	--bhtvp-mist: #beccdd;
	--bhtvp-ink: #10243a;
	--bhtvp-surface: #fff;
	--bhtvp-soft: #f3f7fb;
	--bhtvp-border: #d9e4ee;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	color: var(--bhtvp-ink);
}

.bhtvp *,
.bhtvp *::before,
.bhtvp *::after {
	box-sizing: border-box;
}

.bhtvp__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 24px;
	color: #fff;
	background: linear-gradient(135deg, #0a3c68 0%, #145d8f 100%);
	border-radius: 10px 10px 0 0;
}

.bhtvp__eyebrow {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	color: var(--bhtvp-mist);
}

.bhtvp .bhtvp__header h1 {
	margin: 0;
	color: #fff !important;
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.05;
}

.bhtvp__selected-date {
	margin: 8px 0 0;
	color: #dbe8f3;
}

.bhtvp__date-picker {
	display: grid;
	gap: 6px;
	min-width: 180px;
	font-size: 12px;
	font-weight: 700;
}

.bhtvp__date-picker input {
	width: 100%;
	min-height: 42px;
	padding: 8px 10px;
	color: var(--bhtvp-ink);
	background: #fff;
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 6px;
}

.bhtvp__days {
	display: flex;
	overflow-x: auto;
	scrollbar-width: thin;
	background: #eef4f9;
	border: 1px solid var(--bhtvp-border);
	border-top: 0;
}

.bhtvp__days a {
	display: flex;
	flex: 1 0 105px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2px;
	padding: 11px 8px;
	text-align: center;
	font-size: 13px;
	color: var(--bhtvp-navy);
	border-right: 1px solid var(--bhtvp-border);
	text-decoration: none;
}

.bhtvp__days a strong {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .035em;
}

.bhtvp__days a span {
	font-size: 12px;
	font-weight: 700;
	opacity: .72;
}

.bhtvp__days a:last-child {
	border-right: 0;
}

.bhtvp__days a:hover,
.bhtvp__days a.is-active {
	color: #fff;
	background: var(--bhtvp-navy);
}

.bhtvp__days a.is-active span {
	opacity: .9;
}

.bhtvp__filter-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: var(--bhtvp-surface);
	border-right: 1px solid var(--bhtvp-border);
	border-bottom: 1px solid var(--bhtvp-border);
	border-left: 1px solid var(--bhtvp-border);
}

.bhtvp__filter-label {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 800;
	color: #587087;
}

.bhtvp__filter-scroll {
	display: flex;
	gap: 7px;
	min-width: 0;
	overflow-x: auto;
	padding: 2px 0;
	scrollbar-width: thin;
}

.bhtvp__filter-scroll button {
	flex: 0 0 auto;
	min-height: 32px;
	padding: 6px 11px;
	font: inherit;
	font-size: 12px;
	font-weight: 750;
	color: var(--bhtvp-navy);
	background: #edf3f8;
	border: 1px solid #d6e2ec;
	border-radius: 999px;
	cursor: pointer;
}

.bhtvp__filter-scroll button:hover,
.bhtvp__filter-scroll button.is-active {
	color: #fff;
	background: var(--bhtvp-navy);
	border-color: var(--bhtvp-navy);
}

.bhtvp__events {
	display: grid;
	gap: 8px;
	padding: 12px;
	background: #eaf1f7;
	border: 1px solid var(--bhtvp-border);
	border-top: 0;
	border-radius: 0 0 10px 10px;
}

.bhtvp-card {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr) minmax(180px, 30%);
	align-items: center;
	gap: 16px;
	min-height: 82px;
	padding: 12px 16px;
	background: var(--bhtvp-surface);
	border: 1px solid var(--bhtvp-border);
	border-left: 4px solid var(--bhtvp-navy);
	border-radius: 7px;
	box-shadow: 0 2px 8px rgba(10, 60, 104, .05);
}

.bhtvp-card[hidden] {
	display: none;
}

.bhtvp-card__time {
	font-size: 24px;
	font-weight: 850;
	line-height: 1;
	color: var(--bhtvp-navy);
}

.bhtvp-card__main {
	min-width: 0;
}

.bhtvp-card__main h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
	color: var(--bhtvp-ink);
}

.bhtvp-card__main h3 a {
	color: inherit;
	text-decoration: none;
}

.bhtvp-card__main h3 a:hover {
	color: var(--bhtvp-navy);
}

.bhtvp-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 650;
	color: #627a90;
}

.bhtvp-card__meta span + span::before {
	content: "•";
	margin-right: 10px;
	color: var(--bhtvp-steel);
}

.bhtvp-card__note {
	margin: 5px 0 0;
	font-size: 12px;
	color: #6b7f91;
}

.bhtvp-card__channels {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px;
	min-width: 0;
}

.bhtvp-channel {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	padding: 6px 9px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--bhtvp-navy);
	background: var(--bhtvp-soft);
	border: 1px solid var(--bhtvp-border);
	border-radius: 5px;
	text-decoration: none;
}

.bhtvp-channel__logo {
	width: auto;
	height: 20px;
	max-width: 54px;
	object-fit: contain;
}

.bhtvp__empty,
.bhtvp__no-filter-results {
	margin: 0;
	padding: 42px 20px;
	text-align: center;
	color: #536c82;
	background: #fff;
	border: 1px dashed var(--bhtvp-steel);
	border-radius: 7px;
}

.bhtvp__empty .dashicons {
	display: block;
	width: auto;
	height: auto;
	margin-bottom: 10px;
	font-size: 34px;
}

.bhtvp__empty p {
	margin: 5px 0 0;
}

.bhtvp-today {
	--bhtvp-today-bg: #fff;
	--bhtvp-today-text: #10243a;
	--bhtvp-today-muted: #66788a;
	--bhtvp-today-border: #d9e4ee;
	margin: 28px 0;
	color: var(--bhtvp-today-text);
	background: var(--bhtvp-today-bg);
	border: 1px solid var(--bhtvp-today-border);
	border-radius: 9px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

.bhtvp-today__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 16px;
	color: #fff;
	background: #0f172a;
}

.bhtvp-today__header span {
	display: block;
	margin-bottom: 2px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	color: #93c5fd;
}

.bhtvp-today .bhtvp-today__header h2 {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .025em;
	color: #fff !important;
}

.bhtvp-today__header > time {
	flex: 0 0 auto;
	padding: 5px 7px;
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	background: #1673b8;
	border-radius: 5px;
}

.bhtvp-today__scroll {
	max-height: 430px;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: #87a4bd transparent;
}

.bhtvp-today__item {
	display: grid;
	grid-template-columns: 49px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding: 12px 13px;
	border-bottom: 1px solid var(--bhtvp-today-border);
}

.bhtvp-today__item > time {
	padding-top: 1px;
	font-size: 14px;
	font-weight: 900;
	color: #1673b8;
}

.bhtvp-today__item h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.3;
	color: var(--bhtvp-today-text);
}

.bhtvp-today__item p {
	margin: 4px 0 0;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--bhtvp-today-muted);
}

.bhtvp-today__empty {
	margin: 0;
	padding: 24px 15px;
	text-align: center;
	color: var(--bhtvp-today-muted);
}

.bhtvp-today__more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 13px 15px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .025em;
	color: #fff !important;
	background: #1673b8;
	text-decoration: none !important;
}

.bhtvp-today__more:hover {
	color: #fff;
	background: #0a3c68;
}

html.s-dark .bhtvp-today {
	--bhtvp-today-bg: #111827;
	--bhtvp-today-text: #f8fafc;
	--bhtvp-today-muted: #a8b7c8;
	--bhtvp-today-border: #293548;
}

@media (max-width: 760px) {
	.bhtvp__header {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
		padding: 20px;
	}

	.bhtvp__date-picker {
		min-width: 0;
	}

	.bhtvp__filter-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.bhtvp__filter-scroll {
		width: 100%;
	}

	.bhtvp-card {
		grid-template-columns: 68px minmax(0, 1fr);
		gap: 10px 12px;
		padding: 12px;
	}

	.bhtvp-card__time {
		align-self: start;
		padding-top: 2px;
		font-size: 21px;
	}

	.bhtvp-card__channels {
		grid-column: 2;
		justify-content: flex-start;
	}
}

@media (max-width: 420px) {
	.bhtvp__events {
		padding: 8px;
	}

	.bhtvp-card {
		grid-template-columns: 58px minmax(0, 1fr);
		border-left-width: 3px;
	}

	.bhtvp-card__time {
		font-size: 18px;
	}

	.bhtvp-card__main h3 {
		font-size: 15px;
	}

	.bhtvp-channel {
		white-space: normal;
	}
}
