:root {
	--sv-content-max: 1320px;
	--sv-reading-max: 820px;
	--sv-gutter: clamp(16px, 3vw, 32px);
	--sv-section-gap: clamp(44px, 7vw, 88px);
	--sv-card-gap: clamp(12px, 1.7vw, 24px);
	--sv-radius-xs: 8px;
	--sv-radius-sm: 12px;
	--sv-radius-md: 18px;
	--sv-radius-lg: 28px;
	--sv-shadow: 0 24px 70px rgba(0, 0, 0, .22);
	--sv-live: #ef3340;
	--sv-focus: var(--palette-accent, #d4af37);
	--sv-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
	--sv-ui: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[data-theme-style] { background: var(--palette-page); }
html[data-theme-style] body.sv-body {
	min-width: 320px;
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 88% 4%, color-mix(in srgb, var(--palette-accent) 9%, transparent) 0, transparent 28rem),
		var(--palette-page);
	color: var(--palette-text);
	font-family: var(--sv-ui);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
body.sv-layer-open { overflow: hidden; }
.sv-body img { max-width: 100%; }
.sv-body a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.sv-body a:hover { color: var(--palette-accent); }
.sv-body button,
.sv-body input,
.sv-body select,
.sv-body textarea { font: inherit; }
.sv-body button { color: inherit; }
.sv-body :focus-visible { outline: 3px solid var(--sv-focus); outline-offset: 3px; }
.sv-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.sv-skip-link {
	position: fixed;
	z-index: 10000;
	left: 16px;
	top: 10px;
	transform: translateY(-160%);
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--palette-accent);
	color: var(--palette-on-accent);
	font-weight: 800;
	text-decoration: none;
}
.sv-skip-link:focus { transform: none; }

.sv-body h1,
.sv-body h2,
.sv-body h3 {
	margin-top: 0;
	color: var(--palette-text);
	font-family: var(--sv-display);
	font-weight: 850;
	letter-spacing: -.025em;
	line-height: .98;
	text-wrap: balance;
}
.sv-body h1 { font-size: clamp(2.45rem, 6vw, 5.6rem); }
.sv-body h2 { font-size: clamp(1.75rem, 3.5vw, 3.2rem); }
.sv-body h3 { font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.sv-eyebrow,
.sv-type-label {
	display: block;
	margin: 0 0 8px;
	color: var(--palette-accent);
	font-size: .73rem;
	font-weight: 850;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}
.sv-lede {
	max-width: 62ch;
	margin: 0;
	color: var(--palette-muted);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.55;
}

/* Header */
.sv-site-header {
	position: sticky;
	z-index: 500;
	top: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--palette-border) 72%, transparent);
	background: color-mix(in srgb, var(--palette-page) 90%, transparent);
	box-shadow: 0 8px 30px transparent;
	backdrop-filter: blur(18px);
	transition: box-shadow .2s ease, background .2s ease;
}
.sv-site-header.is-scrolled { box-shadow: 0 12px 38px var(--palette-shadow); }
.sv-header-row {
	width: min(100%, var(--sv-content-max));
	min-height: 84px;
	margin: 0 auto;
	padding: 12px var(--sv-gutter);
	display: grid;
	grid-template-columns: minmax(148px, 186px) auto minmax(270px, 1fr) auto;
	gap: clamp(18px, 2.4vw, 34px);
	align-items: center;
}
.sv-logo {
	display: grid;
	gap: 2px;
	min-width: 0;
	text-decoration: none;
}
.sv-logo img {
	display: block;
	width: auto;
	max-width: 176px;
	max-height: 42px;
}
.sv-logo > span {
	color: var(--palette-muted);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .17em;
	text-transform: uppercase;
}
.sv-primary-nav {
	display: flex;
	align-items: stretch;
	gap: clamp(12px, 1.5vw, 24px);
	align-self: stretch;
}
.sv-primary-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	color: var(--palette-muted);
	font-size: .86rem;
	font-weight: 850;
	letter-spacing: .055em;
	text-decoration: none;
	text-transform: uppercase;
}
.sv-primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: -12px;
	left: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: var(--palette-accent);
	content: "";
	opacity: 0;
	transform: scaleX(.4);
	transition: opacity .2s ease, transform .2s ease;
}
.sv-primary-nav a:hover,
.sv-primary-nav a[aria-current="page"] { color: var(--palette-text); }
.sv-primary-nav a[aria-current="page"]::after {
	opacity: 1;
	transform: scaleX(1);
}
.sv-header-search {
	min-width: 0;
	height: 46px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	padding-left: 15px;
	overflow: hidden;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-control);
	box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
}
.sv-header-search > span { color: var(--palette-muted); font-size: 1.2rem; }
.sv-header-search input {
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 0 12px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--palette-text);
}
.sv-header-search input::placeholder { color: var(--palette-muted); opacity: .82; }
.sv-header-search button,
.sv-search-form button,
.sv-mobile-search form button {
	height: 100%;
	min-height: 44px;
	padding: 0 20px;
	border: 0;
	background: var(--palette-accent);
	color: var(--palette-on-accent);
	font-weight: 850;
	cursor: pointer;
}
.sv-header-utilities { display: flex; align-items: center; gap: 10px; }
.sv-account-link,
.sv-action,
.sv-save,
.sv-more,
.sv-entity-cta,
.sv-live-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-surface);
	font-size: .86rem;
	font-weight: 850;
	text-decoration: none;
}
.sv-account-link:hover,
.sv-action:hover,
.sv-save:hover,
.sv-more:hover,
.sv-entity-cta:hover {
	border-color: var(--palette-accent);
	background: var(--palette-accent);
	color: var(--palette-on-accent);
}
.sv-mobile-search-button {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--palette-border);
	border-radius: 50%;
	background: var(--palette-surface);
	cursor: pointer;
}
.sv-mobile-search {
	position: fixed;
	z-index: 900;
	inset: 0;
	display: grid;
	place-items: start center;
	padding: 9vh var(--sv-gutter) 30px;
	overflow: auto;
	background: color-mix(in srgb, var(--palette-page) 96%, transparent);
	backdrop-filter: blur(24px);
}
.sv-mobile-search[hidden] { display: none; }
.sv-mobile-search__dialog {
	width: min(100%, 720px);
	padding: clamp(24px, 5vw, 48px);
	border: 1px solid var(--palette-border);
	border-radius: var(--sv-radius-lg);
	background: var(--palette-surface);
	box-shadow: var(--sv-shadow);
}
.sv-mobile-search__dialog h2 { margin-bottom: 28px; }
.sv-mobile-search__close {
	min-height: 44px;
	margin-bottom: 42px;
	border: 0;
	background: transparent;
	font-weight: 800;
	cursor: pointer;
}
.sv-mobile-search form > div,
.sv-search-form > div {
	height: 52px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: 8px;
	overflow: hidden;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-control);
}
.sv-mobile-search input,
.sv-search-form input {
	width: 100%;
	min-width: 0;
	padding: 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--palette-text);
}

/* Global page rhythm */
.sv-body > .content.sv-page { display: block; }
.sv-page,
.sv-body > .content:not(.sv-page) {
	width: min(100%, var(--sv-content-max));
	min-height: 62vh;
	margin: 0 auto;
	padding: clamp(34px, 5vw, 72px) var(--sv-gutter) clamp(72px, 9vw, 124px);
}
.sv-page > section + section,
.sv-page > section + aside,
.sv-page > aside + section { margin-top: var(--sv-section-gap); }
.sv-page-intro {
	position: relative;
	padding: clamp(28px, 5vw, 64px);
	overflow: hidden;
	border-radius: var(--sv-radius-lg);
	background: var(--palette-elevated);
}
.sv-page-intro::after {
	position: absolute;
	width: 220px;
	height: 220px;
	right: -70px;
	bottom: -130px;
	border: 44px solid color-mix(in srgb, var(--palette-accent) 18%, transparent);
	border-radius: 50%;
	content: "";
}
.sv-page-intro h1 { max-width: 900px; margin-bottom: 18px; }
.sv-section-header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	margin: 0 0 clamp(22px, 3vw, 38px);
}
.sv-section-header__copy { max-width: 720px; }
.sv-section-header h1,
.sv-section-header h2 { margin: 0; }
.sv-section-header p { margin: 12px 0 0; color: var(--palette-muted); }
.sv-section-index {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 10px;
	color: var(--palette-accent);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.sv-section-index::before { width: 24px; height: 2px; background: currentColor; content: ""; }

/* Home */
.sv-home { padding-top: clamp(28px, 4vw, 54px); }
.sv-home-new {
	position: relative;
	padding: clamp(24px, 4vw, 52px);
	border-radius: var(--sv-radius-lg);
	background: var(--palette-surface);
	box-shadow: var(--sv-shadow);
}
.sv-home-new::before {
	position: absolute;
	top: 0;
	left: clamp(24px, 4vw, 52px);
	width: 76px;
	height: 4px;
	background: var(--palette-accent);
	content: "";
}
.sv-home-bridge {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding: clamp(30px, 5vw, 64px);
	border-radius: var(--sv-radius-lg);
	background:
		linear-gradient(105deg, color-mix(in srgb, var(--palette-accent) 16%, var(--palette-elevated)), var(--palette-elevated));
}
.sv-home-bridge h2 { margin-bottom: 12px; }
.sv-home-bridge p { max-width: 58ch; margin: 0; color: var(--palette-muted); }
.sv-home-bridge > a {
	display: inline-flex;
	align-items: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	background: var(--palette-accent);
	color: var(--palette-on-accent);
	font-weight: 850;
	text-decoration: none;
}
.sv-guide,
.sv-live-summary,
.sv-live-compact { padding: clamp(24px, 4vw, 46px); border-radius: var(--sv-radius-lg); background: var(--palette-elevated); }

/* Video cards */
.sv-video-grid,
.sv-entity-grid,
.sv-live-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 52px) var(--sv-card-gap);
}
.sv-video-card,
.sv-entity-card,
.sv-live-card { min-width: 0; }
.sv-video-card { position: relative; }
.sv-video-media,
.sv-entity-media,
.sv-live-card > a:first-child {
	position: relative;
	display: block;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--sv-radius-md);
	background: var(--palette-control);
	box-shadow: 0 12px 32px color-mix(in srgb, var(--palette-shadow) 70%, transparent);
}
.sv-video-media { aspect-ratio: 16 / 9; }
.sv-video-media::after,
.sv-entity-media::after,
.sv-live-card > a:first-child::after {
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(transparent, rgba(0,0,0,.72));
	content: "";
	pointer-events: none;
	z-index: 1;
}
.sv-video-media img,
.sv-entity-media img,
.sv-live-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transform: scale(1.001);
	transition: transform .35s ease, filter .35s ease;
}
.sv-video-card:hover .sv-video-media img,
.sv-entity-card:hover .sv-entity-media img,
.sv-live-card:hover > a:first-child img { transform: scale(1.035); filter: saturate(1.08); }
.sv-media-fallback { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--palette-control), var(--palette-elevated)); }
.sv-duration,
.sv-disclosure,
.sv-live-status {
	position: absolute;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(8, 8, 10, .86);
	color: #fff;
	font-size: .69rem;
	font-weight: 850;
	letter-spacing: .045em;
}
.sv-duration { right: 8px; bottom: 8px; }
.sv-disclosure { left: 8px; bottom: 8px; }
.sv-card-body { padding: 15px 3px 0; }
.sv-video-card h3 { min-height: 2.15em; margin: 0 0 10px; line-height: 1.08; }
.sv-video-card h3 a { display: -webkit-box; overflow: hidden; text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.sv-card-meta {
	min-height: 28px;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: baseline;
	gap: 8px;
	color: var(--palette-muted);
	font-size: .79rem;
	line-height: 1.35;
}
.sv-card-meta > span:first-child {
	color: color-mix(in srgb, var(--palette-muted) 76%, transparent);
	font-size: .61rem;
	font-weight: 850;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.sv-card-meta a { color: var(--palette-text); text-decoration: none; }
.sv-card-links { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Entity, profile and channel surfaces */
.sv-entity-media { aspect-ratio: 4 / 5; }
.sv-entity-card--studio .sv-entity-media,
.sv-entity-card--channel .sv-entity-media { aspect-ratio: 16 / 10; }
.sv-entity-copy { padding: 18px 4px 0; }
.sv-entity-copy h3 { margin: 5px 0 10px; }
.sv-entity-copy h3 a { text-decoration: none; }
.sv-entity-copy p {
	min-height: 3em;
	margin: 0 0 16px;
	display: -webkit-box;
	overflow: hidden;
	color: var(--palette-muted);
	font-size: .88rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.sv-entity-cta { min-height: 38px; padding-inline: 14px; font-size: .76rem; }
.sv-entity-fallback {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--palette-control), var(--palette-elevated));
	color: var(--palette-accent);
	font-family: var(--sv-display);
	font-size: clamp(3rem, 9vw, 7rem);
	font-weight: 900;
}
.sv-profile-header {
	position: relative;
	display: grid;
	grid-template-columns: minmax(180px, 310px) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
	margin-bottom: clamp(48px, 7vw, 88px);
	padding: clamp(26px, 5vw, 58px);
	overflow: hidden;
	border-radius: var(--sv-radius-lg);
	background: var(--palette-elevated);
}
.sv-profile-header::after {
	position: absolute;
	right: -80px;
	top: -100px;
	width: 300px;
	height: 300px;
	border: 55px solid color-mix(in srgb, var(--palette-accent) 10%, transparent);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}
.sv-profile-header > img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: 390px;
	border-radius: var(--sv-radius-md);
	object-fit: cover;
	box-shadow: var(--sv-shadow);
}
.sv-profile-header > .sv-entity-fallback {
	position: relative;
	z-index: 1;
	min-height: 300px;
	border-radius: var(--sv-radius-md);
	box-shadow: var(--sv-shadow);
}
.sv-profile-header > div { position: relative; z-index: 1; max-width: 720px; }
.sv-profile-header h1 { margin-bottom: 20px; }
.sv-profile-header p { color: var(--palette-muted); }
.sv-owner { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sv-collaborators {
	padding: 24px;
	border-left: 4px solid var(--palette-accent);
	background: var(--palette-surface);
}
.sv-collaborators h2 { font-size: 1.35rem; }
.sv-collaborators ul { margin: 0; padding: 0; list-style: none; }

/* Catalog, search and filters */
.sv-catalog-tools,
.sv-search-tabs,
.sv-catalog-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
	padding: 8px;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-surface);
}
.sv-filter-chip,
.sv-search-tabs a,
.sv-catalog-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	color: var(--palette-muted);
	font-size: .79rem;
	font-weight: 850;
	text-decoration: none;
}
.sv-filter-chip,
.sv-search-tabs a[aria-current="page"],
.sv-catalog-nav a[aria-current="page"] {
	background: var(--palette-accent);
	color: var(--palette-on-accent);
}
.sv-search-page > h1 { margin-bottom: 12px; }
.sv-search-page > .sv-lede { margin-bottom: 30px; }
.sv-search-form {
	margin: 0 0 26px;
	padding: clamp(20px, 3vw, 34px);
	border-radius: var(--sv-radius-md);
	background: var(--palette-elevated);
}
.sv-search-form label { display: block; color: var(--palette-muted); font-size: .82rem; font-weight: 800; }
.sv-search-group,
.sv-search-entities { margin-top: clamp(42px, 6vw, 76px); }
.sv-search-group > h2,
.sv-search-entities > h2 { margin-bottom: 26px; }

/* Video detail and the KVS player */
.sv-video-page { width: min(100%, 1480px); padding-top: clamp(20px, 3vw, 42px); }
.sv-video-detail { max-width: 1240px; margin: 0 auto; }
.sv-video-detail__player {
	width: 100%;
	overflow: hidden;
	border-radius: var(--sv-radius-lg);
	background: #000;
	box-shadow: 0 30px 80px rgba(0,0,0,.42);
}
.sv-video-detail__player .player-wrap,
.sv-video-detail__player .embed-wrap,
.sv-video-detail__player .no-player {
	position: relative !important;
	width: 100% !important;
	overflow: hidden;
}
.sv-video-detail__player .player-wrap #kt_player,
.sv-video-detail__player .player-wrap #kt_player_internal,
.sv-video-detail__player .embed-wrap iframe,
.sv-video-detail__player .no-player > img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}
.sv-video-detail__player #kt_player.is-fullscreen { position: fixed !important; }
.sv-video-detail__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 30px;
	align-items: end;
	padding: clamp(24px, 4vw, 48px) 4px 0;
}
.sv-video-detail__title h1 { max-width: 980px; margin-bottom: 16px; font-size: clamp(2.25rem, 5vw, 4.8rem); }
.sv-video-detail__meta,
.sv-video-detail__taxonomy,
.sv-video-detail__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	align-items: center;
}
.sv-video-detail__facts { color: var(--palette-muted); font-size: .82rem; }
.sv-video-detail__facts span + span::before { margin-right: 10px; content: "·"; }
.sv-video-detail__meta { margin-top: 18px; }
.sv-video-detail__meta a,
.sv-video-detail__taxonomy a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 13px;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-surface);
	font-size: .79rem;
	font-weight: 800;
	text-decoration: none;
}
.sv-video-detail__meta a span,
.sv-video-detail__taxonomy a span { margin-right: 5px; color: var(--palette-muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.sv-video-detail__actions { display: flex; gap: 10px; }
.sv-save { border-color: var(--palette-accent); background: var(--palette-accent); color: var(--palette-on-accent); }
.sv-video-detail__description {
	max-width: var(--sv-reading-max);
	margin-top: clamp(34px, 5vw, 60px);
	padding-top: 28px;
	border-top: 1px solid var(--palette-border);
}
.sv-video-detail__description h2 { font-size: 1.55rem; }
.sv-video-detail__description p { color: var(--palette-muted); }
.sv-video-detail__taxonomy { margin-top: 28px; }
.sv-video-channels,
.sv-continue,
.sv-offer {
	max-width: 1240px;
	margin-right: auto;
	margin-left: auto;
}
.sv-video-channels h2 { margin-bottom: 24px; }
.sv-video-channels ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sv-video-channels a {
	display: grid;
	gap: 4px;
	min-height: 108px;
	padding: 22px;
	border-radius: var(--sv-radius-md);
	background: var(--palette-elevated);
	font-family: var(--sv-display);
	font-size: 1.45rem;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
}
.sv-video-channels a span { color: var(--palette-accent); font-family: var(--sv-ui); font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.sv-offer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 24px;
	border: 1px solid var(--palette-border);
	border-radius: var(--sv-radius-md);
	background: var(--palette-surface);
}
.sv-offer > span { color: var(--palette-muted); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

/* Live, empty and pagination */
.sv-live-card > a:first-child { aspect-ratio: 4 / 3; }
.sv-live-status { left: 8px; top: 8px; background: var(--sv-live); }
.sv-live-status > span {
	width: .58em;
	height: .58em;
	display: inline-block;
	margin-right: .42em;
	border-radius: 50%;
	background: #fff;
}
.sv-live-card h3 { margin: 15px 0 6px; }
.sv-live-card p,
.sv-live-card small { display: block; margin: 0 0 12px; color: var(--palette-muted); }
.sv-live-cta { border-color: var(--sv-live); background: var(--sv-live); color: #fff; }
.sv-empty,
.sv-outage {
	position: relative;
	min-height: 220px;
	display: grid;
	align-content: center;
	justify-items: start;
	padding: clamp(28px, 5vw, 58px);
	overflow: hidden;
	border-radius: var(--sv-radius-lg);
	background: var(--palette-elevated);
}
.sv-empty::after,
.sv-outage::after {
	position: absolute;
	right: -24px;
	bottom: -68px;
	color: color-mix(in srgb, var(--palette-accent) 14%, transparent);
	font-family: var(--sv-display);
	font-size: 13rem;
	font-weight: 900;
	line-height: 1;
	content: "•";
}
.sv-live-results { margin-top: clamp(34px, 6vw, 72px); }
.sv-empty p,
.sv-outage p { position: relative; z-index: 1; margin: 0 0 18px; color: var(--palette-muted); }
.sv-outage h2 { position: relative; z-index: 1; margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.sv-outage button,
.sv-empty a {
	position: relative;
	z-index: 1;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-surface);
	color: var(--palette-text);
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}
.sv-pagination,
.sv-page .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: clamp(36px, 6vw, 70px);
}
.sv-pagination a,
.sv-pagination span,
.sv-page .pagination a,
.sv-page .pagination span {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border: 1px solid var(--palette-border);
	border-radius: 999px;
	background: var(--palette-surface);
	text-decoration: none;
}

/* Footer */
.sv-site-footer {
	padding: clamp(52px, 8vw, 96px) var(--sv-gutter) calc(34px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--palette-border);
	background: var(--palette-surface);
}
.sv-footer-grid,
.sv-footer-bottom {
	width: min(100%, var(--sv-content-max));
	margin: 0 auto;
}
.sv-footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(140px, 1fr));
	gap: clamp(28px, 5vw, 74px);
}
.sv-footer-brand p { max-width: 42ch; color: var(--palette-muted); }
.sv-footer-logo {
	display: inline-block;
	margin-bottom: 20px;
	font-family: var(--sv-display);
	font-size: clamp(2.4rem, 4vw, 4rem);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}
.sv-footer-logo span { color: var(--palette-accent); }
.sv-footer-grid nav,
.sv-footer-theme { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.sv-footer-grid h2 { margin: 0 0 12px; font-family: var(--sv-ui); font-size: .72rem; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.sv-footer-grid nav a { color: var(--palette-muted); text-decoration: none; }
.sv-palette-picker { display: grid; gap: 8px; }
.sv-palette-picker button {
	min-height: 38px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--palette-muted);
	cursor: pointer;
}
.sv-palette-picker button.is-active { color: var(--palette-text); font-weight: 850; }
.sv-palette-swatch { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; }
.sv-palette-swatch--dark { background: #111; box-shadow: inset 0 0 0 5px #d4af37; }
.sv-palette-swatch--cream { background: #fff7e8; box-shadow: inset 0 0 0 5px #e60023; }
.sv-palette-swatch--taupe { background: #b8aa9c; box-shadow: inset 0 0 0 5px #e60023; }
.sv-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 56px;
	padding-top: 22px;
	border-top: 1px solid var(--palette-border);
	color: var(--palette-muted);
	font-size: .74rem;
	letter-spacing: .04em;
}
.sv-footer-bottom p { margin: 0; }

/* Legacy KVS pages inherit the same visual system without changing their data contracts. */
.sv-body > .content:not(.sv-page) { color: var(--palette-text); }
.sv-body > .content:not(.sv-page) .headline,
.sv-body > .content:not(.sv-page) .block-form,
.sv-body > .content:not(.sv-page) .block-details,
.sv-body > .content:not(.sv-page) .page-error,
.sv-body > .content:not(.sv-page) .member-menu,
.sv-body > .content:not(.sv-page) .generic-error,
.sv-body > .content:not(.sv-page) .success {
	border-color: var(--palette-border);
	background: var(--palette-surface);
	color: var(--palette-text);
}
.sv-body > .content:not(.sv-page) .headline { padding: 22px; border-radius: var(--sv-radius-md); }
.sv-body > .content:not(.sv-page) form .textfield,
.sv-body > .content:not(.sv-page) form .textarea,
.sv-body > .content:not(.sv-page) form .selectbox {
	border-color: var(--palette-border);
	background: var(--palette-control);
	color: var(--palette-text);
}
.sv-body > .content:not(.sv-page) form .submit {
	min-height: 44px;
	border-radius: 999px;
	background: var(--palette-accent);
	color: var(--palette-on-accent);
}

/* Responsive gates */
@media (max-width: 1160px) {
	.sv-header-row { grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) auto; }
	.sv-primary-nav { grid-row: 2; grid-column: 1 / -1; min-height: 46px; justify-content: center; border-top: 1px solid var(--palette-border); }
	.sv-primary-nav a::after { bottom: -1px; }
	.sv-header-search { grid-column: 2; }
	.sv-header-utilities { grid-column: 3; }
	.sv-footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
@media (max-width: 820px) {
	.sv-site-header { position: sticky; }
	.sv-header-row {
		min-height: 66px;
		grid-template-columns: minmax(118px, 1fr) auto;
		padding-block: 10px;
	}
	.sv-logo img { max-width: 145px; max-height: 36px; }
	.sv-logo > span { display: none; }
	.sv-primary-nav,
	.sv-header-search { display: none; }
	.sv-header-utilities { grid-column: 2; }
	.sv-mobile-search-button { display: inline-grid; place-items: center; }
	.sv-bottom-nav {
		position: fixed;
		z-index: 700;
		inset: auto 0 0;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		padding: 5px 4px calc(5px + env(safe-area-inset-bottom));
		border-top: 1px solid var(--palette-border);
		background: color-mix(in srgb, var(--palette-page) 94%, transparent);
		box-shadow: 0 -12px 40px var(--palette-shadow);
		backdrop-filter: blur(18px);
	}
	.sv-bottom-nav a {
		position: relative;
		min-width: 0;
		min-height: 54px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 3px;
		border-radius: var(--sv-radius-sm);
		color: var(--palette-muted);
		font-size: .65rem;
		font-weight: 800;
		text-decoration: none;
	}
	.sv-bottom-nav svg { width: 21px; height: 21px; fill: currentColor; }
	.sv-bottom-nav a[aria-current="page"] { background: var(--palette-elevated); color: var(--palette-accent); }
	.sv-page,
	.sv-body > .content:not(.sv-page) { padding-bottom: calc(108px + env(safe-area-inset-bottom)); }
	.sv-video-grid,
	.sv-entity-grid,
	.sv-live-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sv-profile-header { grid-template-columns: minmax(150px, 220px) 1fr; }
	.sv-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
	.sv-footer-theme { grid-column: 2 / -1; }
	.sv-site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}
@media (min-width: 821px) {
	.sv-bottom-nav { display: none; }
}
@media (max-width: 640px) {
	:root { --sv-gutter: 12px; --sv-card-gap: 10px; --sv-radius-lg: 20px; --sv-radius-md: 12px; }
	html[data-theme-style] body.sv-body { font-size: 15px; }
	.sv-account-link { min-height: 40px; padding-inline: 14px; }
	.sv-page,
	.sv-body > .content:not(.sv-page) { padding-top: 24px; }
	.sv-home-new,
	.sv-guide,
	.sv-live-summary,
	.sv-live-compact { padding: 22px 12px 28px; }
	.sv-home-new::before { left: 12px; }
	.sv-section-header { align-items: start; gap: 12px; }
	.sv-section-header .sv-more { min-height: 38px; padding-inline: 12px; white-space: nowrap; }
	.sv-video-grid,
	.sv-entity-grid,
	.sv-live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sv-video-grid { row-gap: 34px; }
	.sv-video-media { border-radius: 10px; }
	.sv-card-body { padding-top: 11px; }
	.sv-card-meta { min-height: 25px; grid-template-columns: 45px minmax(0, 1fr); font-size: .72rem; }
	.sv-card-meta > span:first-child { font-size: .55rem; }
	.sv-entity-copy { padding-top: 12px; }
	.sv-entity-copy p { display: none; }
	.sv-profile-header { grid-template-columns: 1fr; padding: 22px; }
	.sv-profile-header > img { max-height: 360px; }
	.sv-home-bridge { grid-template-columns: 1fr; padding: 28px 22px; }
	.sv-home-bridge > a { justify-self: start; }
	.sv-catalog-tools,
	.sv-search-tabs,
	.sv-catalog-nav {
		margin-right: -12px;
		margin-left: -12px;
		padding: 8px 12px;
		overflow-x: auto;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
		flex-wrap: nowrap;
		scrollbar-width: none;
	}
	.sv-search-tabs a,
	.sv-catalog-nav a { flex: 0 0 auto; }
	.sv-video-detail__player {
		width: calc(100% + 24px);
		margin-left: -12px;
		border-radius: 0;
	}
	.sv-video-detail__content { grid-template-columns: 1fr; padding-top: 24px; }
	.sv-video-detail__title h1 { font-size: clamp(2rem, 12vw, 3.5rem); }
	.sv-video-detail__actions { grid-row: 2; }
	.sv-save { width: 100%; }
	.sv-video-channels ul { grid-template-columns: 1fr; }
	.sv-offer { align-items: flex-start; flex-direction: column; }
	.sv-footer-grid { grid-template-columns: 1fr 1fr; }
	.sv-footer-brand { grid-column: 1 / -1; }
	.sv-footer-theme { grid-column: auto; }
	.sv-footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 390px) {
	.sv-video-grid,
	.sv-entity-grid,
	.sv-live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sv-footer-grid { grid-template-columns: 1fr; }
	.sv-footer-brand,
	.sv-footer-theme { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
