:root {
	--bg: #0a0c0f;
	--bg-soft: #0d1117;
	--bg-card: #131821;
	--line: rgba(255, 255, 255, 0.1);
	--line-strong: rgba(255, 255, 255, 0.16);
	--text: #ffffff;
	--muted: rgba(255, 255, 255, 0.66);
	--muted-soft: rgba(255, 255, 255, 0.44);
	--blue: #1848ff;
	--blue-soft: #9ebcff;
	--red: #df2028;
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--container: 1180px;
	--container-wide: 1520px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Onest', system-ui, sans-serif;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

.container--wide {
	width: min(calc(100% - 32px), var(--container-wide));
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 10, 10, 0.88);
	backdrop-filter: blur(24px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	min-height: 82px;
	padding: 18px 0;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__brand-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 240px;
	max-height: 46px;
	object-fit: contain;
}

.site-header__brand-logo--mobile {
	display: none;
}

.site-header__brand-text {
	display: inline-block;
}

.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	cursor: pointer;
}

.site-header__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #fff;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header__toggle[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}

.site-header__toggle[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav-link {
	position: relative;
	padding: 10px 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.site-header__nav-link::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transform: translateX(-50%);
	transition: width 0.25s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link.is-active {
	color: #fff;
}

.site-header__nav-link.is-active::after,
.site-header__nav-link:hover::after {
	width: 34px;
}

.site-header__app {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: 1px solid rgba(36, 83, 255, 0.4);
	border-radius: 999px;
	background: var(--blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header__mobile-panel {
	display: none;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 10, 10, 0.96);
	backdrop-filter: blur(24px);
}

.site-header__mobile-inner {
	display: grid;
	gap: 18px;
	padding: 18px 0 22px;
}

.site-header__mobile-nav {
	display: grid;
	gap: 8px;
}

.site-header__mobile-link {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__mobile-link.is-active {
	color: #fff;
}

.site-header__mobile-app {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid rgba(36, 83, 255, 0.4);
	border-radius: 999px;
	background: var(--blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__app:hover {
	background: #0b37d6;
	border-color: rgba(36, 83, 255, 0.66);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 14px 24px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.22s ease;
}

.button--primary {
	background: var(--blue);
	color: #fff;
}

.button--primary:hover {
	background: #0b37d6;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
}

.button--ghost:hover,
.button--subtle:hover {
	background: rgba(255, 255, 255, 0.08);
}

.button--subtle {
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
}

.button--small {
	padding: 12px 18px;
	font-size: 0.72rem;
}

.button--youtube {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
	min-width: 168px;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(26, 40, 70, 0.86), rgba(15, 24, 42, 0.96));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button--youtube:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.16);
	background: linear-gradient(180deg, rgba(32, 51, 92, 0.92), rgba(18, 30, 55, 0.98));
}

.button--youtube span {
	color: rgba(158, 188, 255, 0.72);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.button--youtube strong {
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero-live {
	position: relative;
	min-height: calc(100svh - 82px);
	overflow: hidden;
	background: #02060d;
}

.hero-live__media,
.hero-live__media > div {
	position: absolute;
	inset: 0;
}

.hero-live__media {
	overflow: hidden;
}

.hero-live__media > * {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
}

.hero-live__media > * > iframe,
.hero-live__media > iframe {
	width: 100% !important;
	height: 100% !important;
}

.hero-live__media-controls {
	position: absolute;
	top: 24px;
	left: 24px;
	right: 24px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	pointer-events: none;
}

.hero-live__media iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: calc(100svh - 82px);
	border: 0;
	transform: none;
	transform-origin: center center;
}

.hero-live__media:fullscreen,
.hero-live__media:-webkit-full-screen {
	background: #000;
}

.hero-live__media:fullscreen iframe,
.hero-live__media:-webkit-full-screen iframe {
	left: 0;
	width: 100%;
	min-height: 100vh;
	height: 100vh;
	transform: none;
}

.hero-live__fallback {
	display: grid;
	place-items: center;
	min-height: calc(100svh - 82px);
	padding: 32px;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(2, 6, 13, 0.42), rgba(2, 6, 13, 0.9)),
		url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.hero-live.is-animated .hero-live__fallback {
	background: linear-gradient(180deg, rgba(2, 6, 13, 0.24), rgba(2, 6, 13, 0.68));
}

.hero-live__animated-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 25%, rgba(34, 82, 255, 0.22), transparent 22%),
		radial-gradient(circle at 82% 18%, rgba(118, 72, 255, 0.18), transparent 20%),
		radial-gradient(circle at 72% 72%, rgba(32, 70, 255, 0.14), transparent 24%),
		linear-gradient(180deg, #05070b 0%, #09101b 52%, #05070b 100%);
}

.hero-live__orb,
.hero-live__grid {
	position: absolute;
	inset: auto;
	pointer-events: none;
}

.hero-live__orb {
	border-radius: 999px;
	filter: blur(14px);
	opacity: 0.9;
	mix-blend-mode: screen;
	animation: heroOrbFloat 16s ease-in-out infinite;
}

.hero-live__orb--one {
	top: 12%;
	left: 8%;
	width: 28vw;
	height: 28vw;
	min-width: 220px;
	min-height: 220px;
	background: radial-gradient(circle, rgba(44, 91, 255, 0.34) 0%, rgba(44, 91, 255, 0) 70%);
}

.hero-live__orb--two {
	right: 10%;
	bottom: 16%;
	width: 24vw;
	height: 24vw;
	min-width: 180px;
	min-height: 180px;
	background: radial-gradient(circle, rgba(128, 86, 255, 0.24) 0%, rgba(128, 86, 255, 0) 72%);
	animation-duration: 18s;
	animation-delay: -4s;
}

.hero-live__orb--three {
	top: 36%;
	left: 48%;
	width: 18vw;
	height: 18vw;
	min-width: 140px;
	min-height: 140px;
	background: radial-gradient(circle, rgba(74, 180, 255, 0.14) 0%, rgba(74, 180, 255, 0) 70%);
	animation-duration: 20s;
	animation-delay: -7s;
}

.hero-live__grid {
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 96px 96px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 1));
	opacity: 0.28;
	animation: heroGridPan 22s linear infinite;
}

.hero-live__fallback-label,
.section-heading__eyebrow,
.page-heading__eyebrow,
.site-footer__eyebrow {
	margin-bottom: 12px;
	color: #93c5fd;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-live__fallback h2,
.section-heading__title,
.page-heading h1 {
	margin: 0;
	font-size: clamp(2.6rem, 6vw, 5rem);
	font-weight: 900;
	line-height: 0.94;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.hero-live__fallback p,
.section-heading__description,
.page-heading p,
.site-footer__description,
.single-news__excerpt {
	color: var(--muted);
	line-height: 1.9;
}

.hero-live__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 7, 13, 0.92) 0%, rgba(3, 7, 13, 0.58) 38%, rgba(3, 7, 13, 0.16) 100%),
		linear-gradient(180deg, rgba(3, 7, 13, 0.08) 0%, rgba(3, 7, 13, 0.18) 58%, rgba(3, 7, 13, 0.78) 100%);
	transition: opacity 0.18s ease;
}

.hero-live__overlay--soft {
	background:
		radial-gradient(circle at 75% 20%, rgba(90, 119, 255, 0.2), transparent 22%),
		radial-gradient(circle at 85% 70%, rgba(32, 70, 255, 0.16), transparent 28%);
}

.hero-live.is-animated .hero-live__overlay--soft {
	background:
		radial-gradient(circle at 18% 82%, rgba(90, 119, 255, 0.12), transparent 28%),
		radial-gradient(circle at 84% 18%, rgba(32, 70, 255, 0.16), transparent 24%);
}

.hero-live__content {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: calc(100svh - 82px);
	align-items: flex-end;
	padding: 48px 0 108px;
	transition: opacity 0.18s ease;
}

.hero-live__inner {
	max-width: 520px;
	padding-bottom: 24px;
}

.hero-live__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 77, 77, 0.25);
	border-radius: 999px;
	background: var(--red);
	box-shadow: 0 10px 24px rgba(223, 32, 40, 0.24);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-live__badge-dot,
.player-bar__dot,
.program-row__live-badge span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	animation: radioPulse 1.8s ease-in-out infinite;
}

.hero-live__site-title {
	margin: 16px 0 12px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	line-height: 1;
	text-transform: uppercase;
}

.hero-live__title {
	margin: 0 0 18px;
	font-size: clamp(3.7rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 0.88;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.hero-live__description {
	max-width: 460px;
	margin: 0;
	padding-left: 16px;
	border-left: 2px solid rgba(147, 197, 253, 0.8);
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.06rem;
	line-height: 1.9;
}

.hero-live__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.hero-live__expand {
	margin-top: 16px;
}

.hero-live__kick,
.hero-live__close {
	position: static;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
	pointer-events: auto;
}

.hero-live__close {
	cursor: pointer;
}

.hero-live[data-expanded='true'] {
	position: fixed;
	inset: 0;
	z-index: 90;
	min-height: 100vh;
	background: #000;
}

.hero-live[data-expanded='true'] .hero-live__media iframe {
	left: 0;
	width: 100%;
	transform: none;
}

.hero-live[data-expanded='true'] .hero-live__media {
	inset: 0;
}

.section-dark {
	background: #0a0c0f;
}

.section-dark--soft {
	background: #0a0c0f;
}

.section-dark--blue {
	background: #0a0c0f;
	padding-bottom: 128px;
}

.home-schedule,
.home-news,
.youtube-section {
	padding: 76px 0 86px;
}

.youtube-section {
	padding-bottom: 180px;
}

.home-news {
	padding-top: 70px;
	padding-bottom: 74px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.section-heading__controls {
	display: flex;
	gap: 12px;
}

.round-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.round-button:hover {
	background: rgba(255, 255, 255, 0.08);
}

.round-button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.schedule-rail-viewport {
	overflow: hidden;
}

.schedule-rail {
	display: flex;
	gap: 20px;
	padding-bottom: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.schedule-rail::-webkit-scrollbar,
.youtube-carousel__track::-webkit-scrollbar {
	display: none;
}

.schedule-card {
	flex: 0 0 340px;
	min-height: 404px;
	display: flex;
	flex-direction: column;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.03);
	scroll-snap-align: start;
}

.schedule-card.is-featured {
	background: linear-gradient(180deg, #2a42ff 0%, #1d33ed 100%);
	border-color: rgba(255, 255, 255, 0.12);
}

.schedule-card__label,
.schedule-card__tag,
.program-row__subtitle,
.news-card__meta,
.youtube-card__meta,
.single-news__meta,
.sidebar-news__category,
.sidebar-news__date {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.schedule-card__tag,
.program-row__subtitle {
	color: #9fb8ff;
}

.schedule-card.is-featured .schedule-card__label,
.schedule-card.is-featured .schedule-card__tag {
	color: rgba(255, 255, 255, 0.88);
}

.schedule-card__title {
	margin: 18px 0 16px;
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
}

.schedule-card__description {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.8;
}

.schedule-card__footer {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-card__time,
.schedule-card__days {
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.news-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.85fr);
	align-items: start;
	gap: 28px;
}

.news-showcase__main-stack {
	display: grid;
	align-content: start;
	gap: 20px;
}

.news-showcase__main {
	min-width: 0;
}

.news-showcase--bottom {
	grid-template-columns: minmax(0, 1fr);
	margin-top: 0;
	gap: 14px;
}

.news-showcase__side {
	display: grid;
	align-content: start;
	gap: 16px;
}

.news-card {
	height: auto;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
	transition: transform 0.24s ease, border-color 0.24s ease;
	align-self: start;
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.18);
}

.news-card__link {
	display: block;
	height: auto;
	padding: 16px;
}

.news-card__media {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.28), rgba(5, 10, 18, 0.8)), linear-gradient(180deg, #203047 0%, #0b1220 100%);
}

.news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.news-card:hover .news-card__media img {
	transform: scale(1.04);
}

.news-card--featured .news-card__media {
	aspect-ratio: 16 / 9;
	margin-bottom: 22px;
}

.news-card--default .news-card__media,
.news-card--compact .news-card__media {
	aspect-ratio: 16 / 10;
	margin-bottom: 18px;
}

.news-card__body {
	padding: 0 4px 4px;
}

.news-card__meta,
.single-news__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	color: #9fb8ff;
}

.news-card__title {
	margin: 16px 0 12px;
	font-size: 1.48rem;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.news-card--featured .news-card__title {
	font-size: clamp(2.05rem, 4vw, 3.5rem);
	line-height: 0.97;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.news-card__excerpt {
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.94rem;
	line-height: 1.7;
}

.news-card--featured .news-card__excerpt {
	max-width: 92%;
	font-size: 0.96rem;
}

.news-card--compact .news-card__link {
	padding: 12px;
}

.news-card--compact .news-card__media {
	margin-bottom: 14px;
}

.news-card--compact .news-card__title {
	margin: 10px 0 8px;
	font-size: 1.12rem;
	line-height: 1.08;
}

.news-card--compact .news-card__meta {
	gap: 8px;
	font-size: 0.6rem;
}

.news-card--default .news-card__title {
	font-size: 1.24rem;
	line-height: 1.1;
}

.news-card--default .news-card__excerpt {
	font-size: 0.9rem;
	line-height: 1.65;
}

.news-showcase--bottom .news-card {
	max-width: 100%;
	border-radius: 22px;
}

.news-showcase--bottom .news-card__link {
	padding: 12px;
}

.news-showcase--bottom .news-card__media {
	aspect-ratio: 16 / 8.8;
	margin-bottom: 12px;
	border-radius: 16px;
}

.news-showcase--bottom .news-card__body {
	padding: 0 2px 2px;
}

.news-showcase--bottom .news-card__meta {
	gap: 8px;
	font-size: 0.58rem;
}

.news-showcase--bottom .news-card__title {
	margin: 10px 0 8px;
	font-size: 1.02rem;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.news-showcase--bottom .news-card__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 0.78rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.58);
}

.youtube-carousel {
	overflow: hidden;
}

.youtube-carousel__viewport {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.youtube-carousel__track {
	display: flex;
	align-items: stretch;
	gap: 18px;
	width: max-content;
	animation: youtubeMarquee 95s linear infinite;
	will-change: transform;
}

.youtube-carousel:hover .youtube-carousel__track {
	animation-play-state: paused;
}

.youtube-card {
	flex: 0 0 320px;
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(17, 26, 41, 0.96), rgba(12, 18, 30, 0.98));
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.youtube-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.18);
}

.youtube-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #0b1020;
}

.youtube-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.02);
	transition: transform 0.35s ease;
}

.youtube-card:hover .youtube-card__media img {
	transform: scale(1.07);
}

.youtube-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 8, 14, 0.02), rgba(4, 8, 14, 0.28));
	opacity: 1;
	transition: background 0.25s ease;
	pointer-events: none;
}

.youtube-card:hover .youtube-card__overlay {
	background: linear-gradient(180deg, rgba(4, 8, 14, 0), rgba(4, 8, 14, 0.18));
}

.youtube-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.youtube-card:hover .youtube-card__play {
	transform: translate(-50%, -50%) scale(1.08);
	opacity: 0.92;
}

.youtube-card__play span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #fff;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
	font-size: 0;
	line-height: 0;
}

.youtube-card__body {
	display: flex;
	flex-direction: column;
	padding: 18px;
}

.youtube-card__meta {
	color: #8fb1ff;
}

.youtube-card__title {
	margin: 10px 0 14px;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.youtube-card__date {
	margin-top: auto;
	color: rgba(255, 255, 255, 0.46);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: 24px;
}

.video-modal[hidden] {
	display: none;
}

.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 6, 12, 0.84);
	backdrop-filter: blur(10px);
}

.video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(1100px, calc(100vw - 32px));
}

.video-modal__close {
	position: absolute;
	top: -54px;
	right: 0;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.video-modal__frame-wrap {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: #000;
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.video-modal__frame {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

.video-modal__title {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.5;
}

@keyframes youtubeMarquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-50% - 9px));
	}
}

.inner-page,
.single-news,
.default-page {
	padding: 56px 0 120px;
	background: #0a0c0f;
}

.page-heading {
	margin-bottom: 34px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-heading p {
	max-width: 820px;
	margin-top: 18px;
}

.program-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-tabs__button,
.news-filters__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s ease;
}

.program-tabs__button.is-active,
.news-filters__button.is-active {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.program-panel {
	display: none;
}

.program-panel.is-active {
	display: block;
}

.program-row {
	display: grid;
	grid-template-columns: 92px 92px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-row.is-live {
	margin: 0 -20px;
	padding: 24px 20px;
	background: linear-gradient(90deg, #1a40ff 0%, #1848ff 52%, #1130d0 100%);
}

.program-row__time {
	padding-top: 8px;
	color: #7da8ff;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.program-row.is-live .program-row__time {
	color: rgba(255, 255, 255, 0.84);
}

.program-row__thumb {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #11161d;
}

.program-row__thumb img,
.single-news__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program-row__thumb,
.program-row__placeholder {
	aspect-ratio: 1 / 1;
}

.program-row__placeholder {
	display: grid;
	place-items: center;
	background: #0f141b;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.program-row__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.program-row__header h2 {
	margin: 0;
	font-size: 1.85rem;
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.program-row__live-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--red);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.program-row__content p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
}

.program-row.is-live .program-row__content p,
.program-row.is-live .program-row__subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.news-page__layout,
.single-news__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) 320px;
	gap: 30px;
}

.single-news__header {
	max-width: none;
	margin-bottom: 24px;
}

.single-news__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.news-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.news-grid,
.single-news__related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.news-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.news-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.news-pagination .current {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.sidebar-box,
.sidebar-promo {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.sidebar-box + .sidebar-box,
.sidebar-box + .sidebar-promo,
.sidebar-promo + .sidebar-box {
	margin-top: 18px;
}

.sidebar-box__title,
.single-news__section-title {
	margin-bottom: 16px;
	color: #93c5fd;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sidebar-box--info p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.sidebar-stack {
	display: grid;
	gap: 16px;
}

.sidebar-news {
	display: block;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-news:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sidebar-news h3 {
	margin: 8px 0 10px;
	font-size: 1.02rem;
	line-height: 1.15;
}

.single-news__meta {
	margin-bottom: 16px;
}

.single-news__title {
	max-width: 100%;
	margin: 0 0 18px;
	font-size: clamp(2.4rem, 4.2vw, 4rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.single-news__excerpt {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.9;
}

.single-news__article {
	min-width: 0;
	padding: 0 0 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(19, 24, 33, 0.86), rgba(14, 18, 24, 0.96));
	overflow: hidden;
}

.single-news__cover {
	margin: 0;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
}

.single-news__hero-promo {
	margin: 0 0 30px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
}

.single-news__hero-promo a,
.single-news__hero-promo img {
	display: block;
	width: 100%;
}

.single-news__hero-promo img {
	height: clamp(96px, 14vw, 164px);
	object-fit: contain;
	object-position: center;
	background: rgba(255, 255, 255, 0.02);
}

.single-news__content {
	padding: 24px 28px 0;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.9;
}

.single-news__content p,
.default-page__content p {
	margin: 0 0 18px;
}

.single-news__content h2,
.single-news__content h3,
.default-page__content h2,
.default-page__content h3 {
	margin: 36px 0 16px;
	font-size: 1.7rem;
}

.single-news__related {
	margin: 42px 28px 0;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-promo img {
	width: 100%;
	border-radius: 18px;
}

.single-news__sidebar {
	align-self: start;
	display: grid;
	gap: 18px;
}

.single-news__sidebar .sidebar-box,
.single-news__sidebar .sidebar-promo {
	margin-top: 0;
}

.single-news__sidebar .sidebar-promo img {
	min-height: 280px;
	object-fit: cover;
}

.default-page__content {
	max-width: 880px;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.9;
}

.empty-box {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.62);
}

.player-bar {
	position: fixed;
	left: 50%;
	bottom: calc(12px + var(--player-footer-offset, 0px));
	z-index: 50;
	width: min(calc(100vw - 20px), 540px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 10px 14px 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(24, 72, 255, 0.09), transparent 42%),
		linear-gradient(180deg, rgba(11, 14, 20, 0.96), rgba(8, 10, 15, 0.985));
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(18px);
	transform: translateX(-50%);
	transition:
		width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.28s ease,
		gap 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s ease;
}

.player-bar:hover {
	width: min(calc(100vw - 20px), 700px);
	gap: 22px;
	padding: 16px 18px 16px 20px;
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 28px 86px rgba(0, 0, 0, 0.56);
}

.player-bar__info {
	min-width: 0;
}

.player-bar__topline {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 2px;
	transition: margin-bottom 0.28s ease;
}

.player-bar__live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	color: #ff6464;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.player-bar:hover .player-bar__topline {
	margin-bottom: 6px;
}

.player-bar__title {
	min-width: 0;
	font-size: 0.94rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: font-size 0.28s ease;
}

.player-bar__status {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
	opacity: 0;
	max-width: 0;
	overflow: hidden;
	transition: opacity 0.28s ease, max-width 0.28s ease, font-size 0.28s ease;
}

.player-bar:hover .player-bar__title {
	font-size: 1.04rem;
}

.player-bar:hover .player-bar__status {
	opacity: 1;
	max-width: 180px;
	font-size: 0.67rem;
}

.player-bar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: #fff;
	color: #000;
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: height 0.28s ease, padding 0.28s ease, font-size 0.28s ease, gap 0.28s ease;
}

.player-bar__button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	background: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.45);
}

.player-bar__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	transition: gap 0.28s ease;
}

.player-bar:hover .player-bar__actions {
	gap: 12px;
}

.player-bar:hover .player-bar__button {
	height: 52px;
	padding: 0 18px;
	font-size: 0.76rem;
}

.player-bar__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
}

.player-bar__button-icon svg {
	width: 100%;
	height: 100%;
}

.player-bar__button-icon--pause {
	display: none;
}

.player-bar__button.is-playing .player-bar__button-icon--play {
	display: none;
}

.player-bar__button.is-playing .player-bar__button-icon--pause {
	display: inline-flex;
}

.player-bar__button-label {
	display: inline-block;
}

.player-bar__volume {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateX(8px);
	transition: all 0.28s ease;
}

.player-bar:hover .player-bar__volume {
	max-width: 220px;
	opacity: 1;
	transform: translateX(0);
}

.player-bar__mute {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.86);
	cursor: pointer;
	transition: width 0.28s ease, height 0.28s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.player-bar__mute:hover {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
}

.player-bar__mute svg {
	width: 14px;
	height: 14px;
}

.player-bar:hover .player-bar__mute {
	width: 38px;
	height: 38px;
}

.player-bar[data-muted='true'] .player-bar__mute {
	color: rgba(255, 255, 255, 0.48);
}

.player-bar__volume input {
	width: 120px;
	accent-color: #2453ff;
}

.site-footer {
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, #090b0e 0%, #05070a 100%);
}

.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(36, 83, 255, 0.14), transparent 28%),
		radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.05), transparent 18%);
	pointer-events: none;
}

.site-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
	gap: 40px;
	padding: 84px 0 110px;
}

.site-footer__title {
	margin: 0;
	font-size: clamp(2.4rem, 5vw, 4.25rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.site-footer__social-block {
	display: grid;
	gap: 24px;
}

.site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.025);
}

.site-footer__social {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@keyframes radioPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
}

@keyframes heroOrbFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	33% {
		transform: translate3d(18px, -20px, 0) scale(1.05);
	}
	66% {
		transform: translate3d(-14px, 16px, 0) scale(0.96);
	}
}

@keyframes heroGridPan {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(0, 96px, 0);
	}
}

@media (max-width: 1100px) {
	.news-showcase,
	.news-page__layout,
	.single-news__layout,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.news-showcase--bottom,
	.news-grid,
	.single-news__related-grid {
		grid-template-columns: 1fr;
	}

	.news-showcase__main-stack {
		gap: 18px;
	}

	.news-card--featured .news-card__excerpt {
		max-width: 100%;
	}

	.single-news__header {
		max-width: 100%;
	}

	.single-news__title {
		max-width: 100%;
	}
}

@media (max-width: 820px) {
	.hero-live__title,
	.single-news__title {
		font-size: clamp(2.6rem, 10vw, 4rem);
	}

	.hero-live {
		min-height: max(760px, calc(100svh - 82px));
	}

	.hero-live__content {
		min-height: max(760px, calc(100svh - 82px));
		align-items: flex-end;
	}

	.program-row {
		grid-template-columns: 1fr;
	}

	.program-row.is-live {
		margin: 0;
		padding: 22px 0;
		background: transparent;
	}

	.player-bar {
		grid-template-columns: 1fr auto;
		gap: 12px;
	}

	.player-bar__actions {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.player-bar__volume {
		max-width: none;
		opacity: 1;
		overflow: visible;
		transform: none;
	}

	.player-bar__volume input {
		display: none;
	}

	.player-bar__status {
		display: none;
	}
}

@media (max-width: 640px) {
	.hero-live__actions,
	.section-heading,
	.site-footer__meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.schedule-card {
		flex-basis: 290px;
		min-height: 360px;
	}

	.youtube-carousel__track {
		gap: 14px;
		animation-duration: 75s;
	}

	.youtube-card {
		flex-basis: 270px;
	}

	.video-modal {
		padding: 16px;
	}

	.video-modal__dialog {
		width: calc(100vw - 20px);
	}

	.video-modal__close {
		top: -48px;
	}

	.player-bar {
		left: 0;
		bottom: calc(var(--player-footer-offset, 0px));
		width: 100%;
		padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 20px 20px 0 0;
		transform: none;
	}

	.player-bar:hover {
		width: 100%;
	}

	.player-bar__button {
		height: 48px;
		padding: 0 16px;
	}

	.player-bar__button-label {
		font-size: 0.72rem;
	}

	.player-bar__title {
		font-size: 0.94rem;
	}

	.hero-live__media iframe {
		left: 0;
		width: 100%;
		transform: none;
	}

	.hero-live {
		min-height: calc(100svh - 82px);
	}

	.hero-live__content {
		min-height: calc(100svh - 82px);
		padding: 24px 0 132px;
	}

	.hero-live__inner {
		max-width: 100%;
		padding-bottom: 0;
	}

	.hero-live__site-title {
		margin: 14px 0 10px;
		font-size: 0.9rem;
		letter-spacing: 0.18em;
	}

	.hero-live__description {
		max-width: 100%;
		font-size: 0.98rem;
		line-height: 1.8;
	}
}

@media (max-width: 980px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 14px;
		padding: 14px 0;
	}

	.site-header__brand {
		font-size: 0.96rem;
	}

	.site-header__brand-logo--desktop {
		display: none;
	}

	.site-header__brand-logo--mobile {
		display: block;
		max-width: 190px;
		max-height: 56px;
	}

	.site-header__toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-header__nav,
	.site-header__app {
		display: none;
	}

	.site-header__mobile-panel:not([hidden]) {
		position: fixed;
		inset: 83px 0 0;
		z-index: 39;
		display: block;
		min-height: calc(100svh - 83px);
		background: rgba(7, 9, 14, 0.98);
		backdrop-filter: blur(24px);
	}

	.site-header__mobile-inner {
		min-height: calc(100svh - 83px);
		align-content: center;
		padding: 28px 0 40px;
	}

	.site-header__mobile-nav {
		gap: 0;
		justify-items: center;
	}

	.site-header__mobile-link {
		padding: 18px 0;
		text-align: center;
		font-size: 1rem;
	}

	.site-header__mobile-app {
		margin-top: 10px;
		align-self: center;
	}
}
