/* ==========================================================================
   1TV Eurasia — Main Stylesheet
   ========================================================================== */

/* ===== FONTS ===== */
/* Google Fonts are loaded via <link> tag in enqueue.php for better performance. */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	/* Colors */
	--color-background: #f6f7fb;
	--color-foreground: #0f172a;
	--color-surface: #ffffff;
	--color-surface-muted: #eef1f7;
	--color-surface-strong: #e2e8f0;
	--color-line: rgba(15, 23, 42, 0.08);
	--color-glow: rgba(59, 130, 246, 0.14);
	--color-brand: #111827;
	--color-brand-strong: #0f172a;
	--color-accent: #3b82f6;
	--color-accent-soft: #bfdbfe;
	--color-accent-strong: #2563eb;
	--color-slate-100: #f1f5f9;
	--color-slate-200: #e2e8f0;
	--color-slate-400: #94a3b8;
	--color-slate-500: #64748b;
	--color-slate-600: #475569;
	--color-slate-700: #334155;
	--color-slate-900: #0f172a;
	--color-white: #ffffff;
	--color-red-400: #f87171;
	--color-red-500: #ef4444;
	--color-red-600: #dc2626;
	--color-emerald-500: #10b981;
	--color-emerald-100: #d1fae5;
	--color-emerald-600: #059669;
	--color-emerald-700: #047857;
	--color-amber-950: #451a03;
	--color-blue-400: #60a5fa;
	--color-blue-500: #3b82f6;
	--color-blue-700: #1d4ed8;
	--color-slate-300: #cbd5e1;
	--color-slate-800: #1e293b;

	/* Fonts */
	--font-primary: 'Arimo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--font-secondary: 'Arimo', system-ui, sans-serif;

	/* Spacing */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 0.75rem;
	--spacing-base: 1rem;
	--spacing-lg: 1.25rem;
	--spacing-xl: 1.5rem;
	--spacing-2xl: 2rem;
	--spacing-3xl: 2.5rem;
	--spacing-4xl: 3rem;

	/* Border radius */
	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--radius-2xl: 1.75rem;
	--radius-pill: 9999px;

	/* Shadows */
	--shadow-soft: 0 18px 45px -30px rgba(15, 23, 42, 0.3);
	--shadow-glow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 0 30px rgba(59, 130, 246, 0.2);
	--shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);

	/* Layout */
	--container-max: 80rem;
	--container-padding: 1.5rem;
	--max-width: 80rem;
	--nav-height: 3.5rem;
}

/* ==========================================================================
   Dark Mode — CSS Variable Overrides
   ========================================================================== */
html[data-theme="dark"] {
	--color-background: #0a0f1a;
	--color-foreground: #e8edf5;
	--color-surface: #111827;
	--color-surface-muted: #1e293b;
	--color-surface-strong: #273348;
	--color-line: rgba(255, 255, 255, 0.07);
	--color-glow: rgba(59, 130, 246, 0.22);
	--color-brand: #e8edf5;
	--color-brand-strong: #f1f5f9;
	--color-slate-400: #94a3b8;
	--color-slate-500: #94a3b8;
	--color-slate-600: #cbd5e1;
	--color-slate-700: #e2e8f0;
	--color-slate-800: #334155;
	--color-slate-900: #f1f5f9;
	--shadow-soft: 0 18px 45px -30px rgba(0, 0, 0, 0.6);
	--shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] body {
	background:
		radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.07), transparent 55%),
		radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.05), transparent 45%),
		var(--color-background);
}

html[data-theme="dark"] {
	color-scheme: dark;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	color-scheme: light;
	scroll-behavior: smooth;
}

body {
	color: var(--color-foreground);
	background:
		radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.14), transparent 55%),
		radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.08), transparent 45%),
		var(--color-background);
	font-family: var(--font-primary);
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0 var(--container-padding);
}

body.otv-front-hero-page {
	padding: 0;
}

body.otv-front-hero-page .page-wrapper {
	top: 0;
}

body.otv-front-hero-page .hero-slider {
	top: calc(-1 * var(--nav-height));
	margin-bottom: calc(-1 * var(--nav-height));
	height: calc(95vh + var(--nav-height));
}

body.otv-front-hero-page .hero-slider__slide {
	height: calc(95vh + var(--nav-height));
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

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

button {
	cursor: pointer;
	border: none;
	font-family: inherit;
	background: none;
}

ul, ol {
	list-style: none;
}

::selection {
	background: rgba(59, 130, 246, 0.18);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(15, 23, 42, 0.2); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: rgba(15, 23, 42, 0.35); }

button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--color-accent-strong);
	outline-offset: 3px;
	border-radius: var(--radius-pill);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes live-pulse-glow {
	0%, 100% {
		opacity: 1;
		transform: translateY(-50%) scale(1);
		box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.8), 0 0 8px 2px rgba(255, 255, 255, 0.4);
	}
	50% {
		opacity: 0.7;
		transform: translateY(-50%) scale(0.85);
		box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.9), 0 0 12px 4px rgba(255, 255, 255, 0.5);
	}
}

@keyframes float-soft {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Liquid Glass System
   ========================================================================== */

/* Noise overlay (used on glass containers) */
.liquid-glass-noise {
	position: relative;
}

.liquid-glass-noise::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	opacity: 0.02;
	mix-blend-mode: overlay;
	pointer-events: none;
	border-radius: inherit;
}

/* Glass pill container (nav menu wrapper, buttons) */
.liquid-glass-pill {
	position: relative;
	padding: 5px;
	border-radius: var(--radius-2xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.8),
		inset 0 2px 4px rgba(255, 255, 255, 0.4),
		inset 0 -1px 2px rgba(0, 0, 0, 0.06),
		0 0 0 1px rgba(255, 255, 255, 0.5),
		0 8px 32px -8px rgba(0, 0, 0, 0.2),
		0 4px 16px -4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.liquid-glass-pill::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.liquid-glass-pill:hover {
	transform: translateY(-2px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 2px 6px rgba(255, 255, 255, 0.5),
		inset 0 -1px 2px rgba(0, 0, 0, 0.06),
		0 0 0 1px rgba(255, 255, 255, 0.6),
		0 0 20px rgba(255, 255, 255, 0.3),
		0 12px 40px -10px rgba(0, 0, 0, 0.25),
		0 6px 20px -6px rgba(0, 0, 0, 0.15);
}

/* Glass nav item */
.liquid-glass-item {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-radius: var(--radius-2xl);
	padding: 0.625rem 1rem;
	font-size: 13px;
	font-weight: 500;
	color: rgba(31, 41, 55, 0.9);
	letter-spacing: -0.01em;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.liquid-glass-item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.liquid-glass-item::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
	z-index: -1;
}

.liquid-glass-item:hover {
	color: var(--color-foreground);
	background: rgba(255, 255, 255, 0.45);
	transform: scale(1.02);
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.8),
		0 0 0 1px rgba(255, 255, 255, 0.5),
		0 4px 12px -4px rgba(0, 0, 0, 0.15);
}

.liquid-glass-item:hover::before,
.liquid-glass-item:hover::after {
	opacity: 1;
}

.liquid-glass-item:active {
	transform: scale(0.96);
	transition-duration: 0.1s;
}

.liquid-glass-item--active {
	background: rgba(255, 255, 255, 0.35);
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.6),
		0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Live button (red pulsing) */
.liquid-glass-live {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-radius: var(--radius-2xl);
	padding: 0.625rem 1.25rem 0.625rem 2rem;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-white);
	letter-spacing: -0.01em;
	background: linear-gradient(180deg, var(--color-red-400) 0%, var(--color-red-500) 30%, var(--color-red-600) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.4),
		inset 0 2px 4px rgba(255, 200, 200, 0.3),
		0 0 0 1px rgba(239, 68, 68, 0.5),
		0 0 20px rgba(239, 68, 68, 0.4),
		0 4px 16px -4px rgba(220, 38, 38, 0.6);
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.liquid-glass-live::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%);
	pointer-events: none;
}

.liquid-glass-live::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	animation: live-pulse-glow 1.5s ease-in-out infinite;
	box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.8), 0 0 8px 2px rgba(255, 255, 255, 0.4);
}

.liquid-glass-live:hover {
	transform: translateY(-2px) scale(1.03);
	background: linear-gradient(180deg, #fca5a5 0%, var(--color-red-400) 30%, var(--color-red-500) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.5),
		inset 0 2px 6px rgba(255, 200, 200, 0.4),
		0 0 0 1px rgba(248, 113, 113, 0.6),
		0 0 30px rgba(239, 68, 68, 0.5),
		0 8px 24px -6px rgba(220, 38, 38, 0.7);
}

.liquid-glass-live:active {
	transform: scale(0.96);
	transition-duration: 0.1s;
}

.liquid-glass-live--small {
	padding: 0.5rem 1rem 0.5rem 1.75rem;
	font-size: 12px;
}

/* ==========================================================================
   Dark Mode — Glassmorphism Overrides
   ========================================================================== */

[data-theme="dark"] .liquid-glass-pill {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.12),
		inset 0 2px 4px rgba(255, 255, 255, 0.06),
		inset 0 -1px 2px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.08),
		0 8px 32px -8px rgba(0, 0, 0, 0.6),
		0 4px 16px -4px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .liquid-glass-pill::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
}

[data-theme="dark"] .liquid-glass-pill:hover {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.15),
		inset 0 2px 6px rgba(255, 255, 255, 0.08),
		inset 0 -1px 2px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.12),
		0 0 20px rgba(255, 255, 255, 0.05),
		0 12px 40px -10px rgba(0, 0, 0, 0.7),
		0 6px 20px -6px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .liquid-glass-item {
	color: rgba(232, 237, 245, 0.85);
}

[data-theme="dark"] .liquid-glass-item::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

[data-theme="dark"] .liquid-glass-item:hover {
	color: rgba(232, 237, 245, 1);
	background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .liquid-glass-item--active {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

/* Dark mode toggle button icon switching */
.darkmode-icon--sun { display: none; }
.darkmode-icon--moon { display: block; }

[data-theme="dark"] .darkmode-icon--moon { display: none; }
[data-theme="dark"] .darkmode-icon--sun { display: block; }

/* Protect elements that intentionally use slate-900 as a dark background */
[data-theme="dark"] .dark-card {
	background: linear-gradient(135deg, #1e293b, #273348);
	color: var(--color-white);
}

[data-theme="dark"] .btn--primary {
	background: #334155;
	color: var(--color-white);
}

[data-theme="dark"] .btn--primary:hover {
	background: #475569;
}

/* Glass card dark override (article content, related, share blocks) */
[data-theme="dark"] .glass-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 45px -30px rgba(0, 0, 0, 0.5);
}

/* News card dark glass override */
[data-theme="dark"] .news-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.12),
		inset 0 -1px 0 rgba(0,0,0,0.2),
		0 0 0 0.5px rgba(255,255,255,0.08),
		0 8px 32px -8px rgba(0,0,0,0.5),
		0 4px 16px -4px rgba(0,0,0,0.3);
}

/* Footer dark override — lighter glass so text is readable */
[data-theme="dark"] .site-footer {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.07) 0%,
		rgba(255, 255, 255, 0.04) 100%
	);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.08),
		0 -4px 24px -8px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Site Navigation
   ========================================================================== */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 0.75rem 0;
	background: transparent;
	transition: all 0.5s ease-out;
}

.site-nav.scrolled {
	padding: 0.5rem 0;
}

.site-nav__inner {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.5s ease-out;
}

.site-nav__logo {
	display: none;
}

.site-nav__logo-mobile {
	display: block;
}

.site-nav__logo-mobile img {
	width: auto;
	max-width: 120px;
	height: 2rem;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.site-nav__logo {
		display: block;
	}

	.site-nav__logo-mobile {
		display: none;
	}
}

.site-nav__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

@media (min-width: 1024px) {
	.site-nav__row {
		justify-content: center;
		width: auto;
	}
}

.site-nav__logo img {
	width: auto;
	max-width: 100px;
	height: 2rem;
	object-fit: contain;
	transition: all 0.5s;
}

/* Liquid glass logo */
.liquid-glass-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 14px;
	border-radius: var(--radius-2xl);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.55) 0%,
		rgba(255, 255, 255, 0.15) 40%,
		rgba(255, 255, 255, 0.25) 60%,
		rgba(255, 255, 255, 0.5) 100%
	);
	backdrop-filter: blur(24px) saturate(200%);
	-webkit-backdrop-filter: blur(24px) saturate(200%);
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.9),
		inset 0 -1px 2px rgba(0, 0, 0, 0.04),
		0 0 0 1px rgba(255, 255, 255, 0.6),
		0 8px 32px -8px rgba(0, 0, 0, 0.18),
		0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.liquid-glass-logo::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.4) 30%,
		rgba(255, 255, 255, 0.1) 70%,
		rgba(255, 255, 255, 0.5) 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/* Caustic light refraction highlight */
.liquid-glass-logo::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 15%;
	right: 15%;
	height: 40%;
	border-radius: 50%;
	background: radial-gradient(
		ellipse at center,
		rgba(255, 255, 255, 0.7) 0%,
		rgba(255, 255, 255, 0.2) 50%,
		transparent 70%
	);
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.liquid-glass-logo:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 1),
		inset 0 -1px 2px rgba(0, 0, 0, 0.04),
		0 0 0 1px rgba(255, 255, 255, 0.7),
		0 0 24px rgba(255, 255, 255, 0.35),
		0 12px 40px -10px rgba(0, 0, 0, 0.22),
		0 4px 12px rgba(0, 0, 0, 0.08);
}



/* Desktop menu */
.site-nav__menu {
	display: none;
	gap: 0.25rem;
	align-items: center;
}

/* Logo integrated inside menu pill */
.site-nav__logo-inline {
	display: flex;
	align-items: center;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-xl);
	transition: all 0.3s ease;
}

.site-nav__logo-inline img {
	height: 1.75rem;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.site-nav__logo-inline:hover {
	background: rgba(255, 255, 255, 0.3);
}


/* Mobile controls */
.site-nav__mobile {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-nav__burger {
	padding: 0.625rem;
}

.site-nav__burger-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--color-slate-700);
}

/* Mobile menu overlay */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: none;
}

.mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.mobile-menu__panel {
	position: absolute;
	top: 5rem;
	left: 1rem;
	right: 1rem;
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.95);
	padding: var(--spacing-xl);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mobile-menu__link {
	display: block;
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-slate-700);
	transition: background-color 0.15s ease;
}

.mobile-menu__link:hover {
	background: var(--color-slate-100);
}

.mobile-menu__link--active {
	background: var(--color-blue-50, #eff6ff);
	color: var(--color-blue-600, #2563eb);
	font-weight: 600;
}

@media (min-width: 768px) {
	.site-nav__logo img {
		height: 2rem;
	}
}

@media (min-width: 1024px) {
	.site-nav__menu {
		display: flex;
	}

	.site-nav__mobile {
		display: none;
	}

	.mobile-menu {
		display: none !important;
	}
}

/* WordPress admin bar fix */
.admin-bar .site-nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-nav {
		top: 46px;
	}
}

/* ==========================================================================
   Page Wrapper
   ========================================================================== */
.page-wrapper {
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: 100vh;
	background: transparent;
}

.page-wrapper > *:not(.page-wrapper__bg-logo) {
	position: relative;
	z-index: 1;
}

body:not(.home) .page-wrapper {
	padding-top: var(--nav-height);
}

body.otv-front-hero-page .page-wrapper {
	padding-top: 0;
}

/* Fixed background logo */
.page-wrapper__bg-logo {
	pointer-events: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	display: flex;
	align-items: flex-start;
}

.page-wrapper__bg-logo img {
	height: 100vh;
	width: auto;
	max-width: none;
	object-fit: contain;
	opacity: 0.7;
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 95vh;
	overflow: hidden;
}

.hero-slider__track {
	display: flex;
	height: 100%;
	transition: transform 0.7s ease-out;
}

a.hero-slider__slide {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hero-slider__slide {
	position: relative;
	min-width: 100%;
	height: 95vh;
}

.hero-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slider__overlay-dark {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.2), transparent);
}

.hero-slider__overlay-bottom {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.1), transparent);
}

.hero-slider__content {
	position: absolute;
	bottom: 8rem;
	left: var(--container-padding);
	right: var(--container-padding);
	color: var(--color-white);
	max-width: 36rem;
}

.hero-slider__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1rem;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: rgba(255, 255, 255, 0.7);
}

.hero-slider__title {
	margin-top: var(--spacing-lg);
	font-size: 2.25rem;
	font-weight: 600;
	letter-spacing: -0.025em;
	color: var(--color-white);
}

.hero-slider__actions {
	margin-top: var(--spacing-xl);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero-slider__btn-primary {
	border-radius: var(--radius-lg);
	background: var(--color-white);
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-slate-900);
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease;
}

.hero-slider__btn-primary:hover {
	transform: translateY(-2px);
}

.hero-slider__btn-secondary {
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-white);
	transition: background-color 0.25s ease;
}

.hero-slider__btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Preview thumbnails */
.hero-slider__preview-nav {
	position: absolute;
	right: var(--container-padding);
	bottom: var(--spacing-lg);
	z-index: 30;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-slider__previews-window {
	width: min(27rem, calc(100vw - 9rem));
	overflow: hidden;
	padding: 0.35rem 0.25rem;
}

.hero-slider__previews {
	display: flex;
	gap: 1rem;
	transition: transform 0.35s ease;
	will-change: transform;
}

.hero-slider__preview {
	flex: 0 0 calc((100% - 3rem) / 4);
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	height: 144px;
	cursor: pointer;
	padding: 0;
	background: none;
	border: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.hero-slider__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slider__preview--active {
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.28),
		0 12px 28px rgba(15, 23, 42, 0.22);
	transform: translateY(-2px);
}

.hero-slider__preview-arrow {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: rgba(15, 23, 42, 0.42);
	color: #fff;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-slider__preview-arrow span {
	font-size: 1.5rem;
	line-height: 1;
}

.hero-slider__preview-arrow:hover:not(:disabled) {
	transform: translateY(-1px);
	background: rgba(15, 23, 42, 0.56);
}

.hero-slider__preview-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

@media (min-width: 768px) {
	.hero-slider__content {
		left: 4rem;
		right: auto;
	}

	.hero-slider__title {
		font-size: 3rem;
	}

	.hero-slider__preview-nav {
		right: 2.5rem;
	}
}

@media (max-width: 767px) {
	.hero-slider__preview-nav {
		left: 1rem;
		right: 1rem;
		gap: 0.5rem;
	}

	.hero-slider__previews-window {
		width: auto;
		flex: 1 1 auto;
	}

	.hero-slider__preview {
		flex-basis: calc((100% - 1rem) / 2);
		height: 128px;
	}

	.hero-slider__preview-arrow {
		width: 2.25rem;
		height: 2.25rem;
	}
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.main-content {
	position: relative;
	z-index: 10;
	background: transparent;
}

/* ==========================================================================
   Section Header (reusable)
   ========================================================================== */
.section-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.section-header__subtitle {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.45em;
	color: var(--color-slate-400);
}

.section-header__title {
	margin-top: 0.75rem;
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--color-slate-900);
	text-wrap: balance;
}

.section-header__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-slate-600);
	transition: color 0.15s ease;
}

.section-header__link:hover {
	color: var(--color-slate-900);
}

/* ==========================================================================
   Section (reusable spacing)
   ========================================================================== */
.section {
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding: 0 var(--container-padding) var(--spacing-lg);
}

.section--first {
	margin-top: var(--spacing-lg);
}

.section__body {
	margin-top: var(--spacing-xl);
}

/* ==========================================================================
   Online Broadcast Section
   ========================================================================== */
.broadcast {
	display: grid;
	align-items: stretch;
	gap: 1.25rem;
	border-radius: 1.5rem;
	padding: 1.25rem;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.22) 0%,
		rgba(255, 255, 255, 0.08) 50%,
		rgba(200, 220, 255, 0.1) 100%
	);
	backdrop-filter: blur(32px) saturate(1.4);
	-webkit-backdrop-filter: blur(32px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow:
		0 16px 64px rgba(0, 0, 0, 0.06),
		0 4px 16px rgba(0, 0, 0, 0.03),
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.broadcast__player {
	position: relative;
	aspect-ratio: 16 / 9;
	height: 100%;
	width: 100%;
	overflow: hidden;
	border-radius: 1rem;
	background: linear-gradient(
		145deg,
		rgba(15, 30, 60, 0.85) 0%,
		rgba(20, 40, 80, 0.7) 40%,
		rgba(30, 60, 120, 0.5) 100%
	);
	backdrop-filter: blur(24px) saturate(1.3);
	-webkit-backdrop-filter: blur(24px) saturate(1.3);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		0 12px 48px rgba(0, 0, 0, 0.12),
		0 4px 16px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -1px 0 rgba(255, 255, 255, 0.05);
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.broadcast__player:hover {
	transform: translateY(-2px);
	box-shadow:
		0 20px 64px rgba(0, 0, 0, 0.16),
		0 8px 24px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.broadcast__player-logo {
	position: absolute;
	left: 1.25rem;
	top: 1.25rem;
}

.broadcast__player-logo img {
	height: 2rem;
	width: auto;
	max-width: 120px;
	opacity: 0.7;
}

.broadcast__player-cta {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: var(--color-white);
}

.broadcast__play-icon {
	display: flex;
	width: 4.5rem;
	height: 4.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		0 4px 16px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.broadcast__player:hover .broadcast__play-icon {
	transform: scale(1.12);
	background: rgba(255, 255, 255, 0.18);
}

.broadcast__play-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	margin-left: 3px;
}

.broadcast__play-label {
	text-align: center;
}

.broadcast__play-label-tag {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-pill);
	background: rgba(239, 68, 68, 0.8);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-white);
}

.broadcast__play-label-main {
	margin-top: 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

/* ===== Live Stream Popup ===== */
.live-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.live-popup--open {
	opacity: 1;
	visibility: visible;
}

.live-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.live-popup__glass {
	position: relative;
	width: 92vw;
	max-width: 960px;
	aspect-ratio: 16 / 9;
	max-height: 85vh;
	border-radius: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.15) 0%,
		rgba(255, 255, 255, 0.05) 50%,
		rgba(200, 220, 255, 0.1) 100%);
	backdrop-filter: blur(32px) saturate(1.4);
	-webkit-backdrop-filter: blur(32px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.3),
		0 8px 32px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(255, 255, 255, 0.1);
	transform: scale(0.92) translateY(20px);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.live-popup--open .live-popup__glass {
	transform: scale(1) translateY(0);
}

.live-popup__close {
	position: absolute;
	top: -3rem;
	right: 0;
	z-index: 3;
	display: flex;
	width: 2.5rem;
	height: 2.5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--color-white);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.live-popup__close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.live-popup__close svg {
	width: 1.125rem;
	height: 1.125rem;
}

.live-popup__video {
	width: 100%;
	height: 100%;
}

.live-popup__video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Schedule sidebar — liquid glass */
.broadcast__schedule {
	display: flex;
	height: 100%;
	flex-direction: column;
	gap: 0;
	align-self: stretch;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.18) 0%,
		rgba(255, 255, 255, 0.06) 100%
	);
	backdrop-filter: blur(20px) saturate(1.2);
	-webkit-backdrop-filter: blur(20px) saturate(1.2);
	padding: 0;
	overflow: hidden;
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.schedule-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	transition: background 0.2s ease;
}

.schedule-item:hover {
	background: rgba(255, 255, 255, 0.12);
}

.schedule-item__label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--color-slate-400);
}

.schedule-item__label--live {
	color: var(--color-red-500);
}

.schedule-item__title {
	margin-top: 0.375rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-slate-900);
}

.schedule-item__time {
	margin-top: 0.25rem;
	font-size: 0.8125rem;
	color: var(--color-slate-500);
}

.schedule-item__badge {
	border-radius: var(--radius-pill);
	padding: 0.25rem 0.625rem;
	font-size: 0.6875rem;
	font-weight: 600;
	white-space: nowrap;
	border: 1px solid transparent;
}

.schedule-item__badge--done {
	background: rgba(148, 163, 184, 0.1);
	border-color: rgba(148, 163, 184, 0.2);
	color: var(--color-slate-400);
}

.schedule-item__badge--live {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.25);
	color: var(--color-red-600);
}

.schedule-item__badge--next {
	background: rgba(148, 163, 184, 0.1);
	border-color: rgba(148, 163, 184, 0.2);
	color: var(--color-slate-400);
}

.schedule-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.broadcast__schedule-link {
	display: block;
	margin-top: auto;
	padding: 0.875rem 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-slate-700);
	text-align: center;
	text-decoration: none;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease, color 0.2s ease;
}

.broadcast__schedule-link:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--color-slate-900);
}

@media (min-width: 1024px) {
	.broadcast {
		grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr);
	}
}

/* ==========================================================================
   News Section (Newspaper Layout)
   ========================================================================== */
/* ===== Home News ===== */
.home-news {
	position: relative;
	border-radius: var(--radius-2xl);
	background: linear-gradient(145deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 100%);
	backdrop-filter: blur(48px) saturate(200%);
	-webkit-backdrop-filter: blur(48px) saturate(200%);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.6),
		inset 0 -0.5px 0 rgba(0,0,0,0.04),
		0 0 0 0.5px rgba(255,255,255,0.4),
		0 1px 3px rgba(0,0,0,0.04),
		0 8px 24px -6px rgba(0,0,0,0.08),
		0 20px 50px -12px rgba(0,0,0,0.06);
	padding: 1rem;
	isolation: isolate;
	overflow: hidden;
}
/* Gradient border */
.home-news::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.05) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}
/* Caustic highlight */
.home-news::after {
	content: '';
	position: absolute;
	top: -50%; left: -20%;
	width: 60%; height: 100%;
	background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}

/* Layout */
.home-news__top {
	display: grid;
	gap: 1rem;
}
.home-news__primary {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* --- Featured --- */
.home-news__featured {
	display: block;
	text-decoration: none;
	color: var(--color-slate-900);
	border-radius: calc(var(--radius-2xl) - 4px);
	background: rgba(255,255,255,0.1);
	overflow: hidden;
	transition: background 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.home-news__featured:hover {
	background: rgba(255,255,255,0.22);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(0,0,0,0.1);
}
.home-news__thumb {
	aspect-ratio: 2.2/1;
	overflow: hidden;
	position: relative;
}
.home-news__thumb::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.03) 100%);
	pointer-events: none;
}
.home-news__thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-news__featured:hover .home-news__thumb img {
	transform: scale(1.04);
}
.home-news__body {
	padding: 0.4rem 0.65rem 0.45rem;
}
.home-news__meta {
	display: flex; align-items: center; gap: 0.5rem;
	font-size: 0.65rem; color: var(--color-slate-500);
	letter-spacing: 0.01em;
}
.home-news__cat {
	font-weight: 700; color: var(--color-primary);
	text-transform: uppercase; letter-spacing: 0.06em;
	font-size: 0.6rem;
}
.home-news__title {
	margin-top: 0.35rem;
	font-family: var(--font-secondary);
	font-size: 1.05rem; font-weight: 700; line-height: 1.35;
	color: var(--color-slate-900); transition: color 0.25s;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.home-news__featured:hover .home-news__title { color: var(--color-primary); }

/* --- Mini cards row (below featured) --- */
.home-news__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6rem;
}
.home-news__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--color-slate-900);
	border-radius: calc(var(--radius-xl) - 2px);
	background: rgba(255,255,255,0.06);
	overflow: hidden;
	transition: background 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-news__card:hover {
	background: rgba(255,255,255,0.18);
	transform: translateY(-2px);
}
.home-news__card-thumb {
	aspect-ratio: 3/2;
	overflow: hidden;
}
.home-news__card-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-news__card:hover .home-news__card-thumb img {
	transform: scale(1.05);
}
.home-news__card-body {
	padding: 0.4rem 0.5rem 0.5rem;
}
.home-news__card-date {
	font-size: 0.5rem; color: var(--color-slate-500);
	letter-spacing: 0.03em;
}
.home-news__card-title {
	margin-top: 0.1rem;
	font-family: var(--font-secondary);
	font-size: 0.72rem; font-weight: 700; line-height: 1.3;
	color: var(--color-slate-900); transition: color 0.2s;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-news__card:hover .home-news__card-title { color: var(--color-primary); }

/* --- List (latest news, right column) --- */
.home-news__list {
	border-radius: calc(var(--radius-2xl) - 4px);
	background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
	padding: 0.7rem 0.85rem;
	border: 0.5px solid rgba(255,255,255,0.15);
}
.home-news__list-heading {
	font-family: var(--font-secondary);
	font-size: 0.6rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.12em;
	color: var(--color-slate-400);
	margin-bottom: 0.35rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}
.home-news__list-item {
	display: flex; gap: 0.55rem; align-items: flex-start;
	text-decoration: none; color: var(--color-slate-900);
	padding: 0.4rem 0.25rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	border-radius: var(--radius-md);
	transition: background 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-news__list-item:last-child { border-bottom: none; }
.home-news__list-item:hover {
	background: rgba(255,255,255,0.1);
	transform: translateX(2px);
}
.home-news__list-time {
	flex-shrink: 0;
	font-size: 0.65rem; font-weight: 700;
	color: var(--color-primary);
	min-width: 2.2rem;
	padding-top: 0.15rem;
	font-variant-numeric: tabular-nums;
}
.home-news__list-cat {
	display: block;
	font-size: 0.55rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em;
	color: var(--color-slate-400);
	margin-bottom: 0.1rem;
}
.home-news__list-title {
	font-family: var(--font-secondary);
	font-size: 0.78rem; font-weight: 600; line-height: 1.35;
	color: var(--color-slate-900); transition: color 0.2s;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-news__list-item:hover .home-news__list-title { color: var(--color-primary); }

/* --- List scroll wrapper --- */
.home-news__list-scroll {
	overflow-y: auto;
	flex: 1;
	min-height: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(0,0,0,0.12) transparent;
}
.home-news__list-scroll::-webkit-scrollbar { width: 4px; }
.home-news__list-scroll::-webkit-scrollbar-track { background: transparent; }
.home-news__list-scroll::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.12);
	border-radius: 4px;
}
.home-news__list-scroll::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

/* --- "All news" button --- */
.home-news__list-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.55rem 1.25rem;
	margin-top: 0.5rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	border: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 100%);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	color: var(--color-slate-700);
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.02em;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		inset 0 0 0 0.5px rgba(255,255,255,0.15),
		0 1px 3px rgba(0,0,0,0.03);
	transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
	flex-shrink: 0;
}
.home-news__list-btn:hover {
	transform: translateY(-1px);
	background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.7),
		0 4px 12px rgba(0,0,0,0.06);
	color: var(--color-primary);
}

/* --- Responsive --- */
@media (max-width: 639px) {
	.home-news__cards {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	.home-news__card {
		flex-direction: row;
		align-items: center;
		gap: 0.6rem;
	}
	.home-news__card-thumb {
		width: 5rem; height: 3.5rem;
		flex-shrink: 0;
		aspect-ratio: auto;
		border-radius: var(--radius-md);
	}
	.home-news__card-body {
		padding: 0.2rem 0;
	}
}

@media (min-width: 640px) {
	.home-news__top {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1024px) {
	.home-news { padding: 1rem; }
	.home-news__top {
		grid-template-columns: 1.4fr 1fr;
		align-items: stretch;
		gap: 1rem;
	}
	.home-news__featured .home-news__title {
		font-size: 1.15rem;
	}
	.home-news__cards {
		gap: 0.5rem;
	}
	.home-news__card-thumb {
		aspect-ratio: 3/2;
	}
	.home-news__top {
		position: relative;
	}
	.home-news__list {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: calc((100% - 1rem) * 10 / 24);
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}
	.home-news__list-heading {
		flex-shrink: 0;
	}
	.home-news__list-btn {
		flex-shrink: 0;
	}
}

/* ==========================================================================
   Section Slider (reusable horizontal scroll)
   ========================================================================== */
.section-slider {
	position: relative;
}

.section-slider__track {
	display: flex;
	gap: var(--spacing-xl);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 0 3rem 0.75rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.section-slider__track::-webkit-scrollbar {
	display: none;
}

.section-slider__btn {
	position: absolute;
	top: 50%;
	z-index: 20;
	display: flex;
	width: 2.75rem;
	height: 2.75rem;
	transform: translateY(-50%);
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(226, 232, 240, 0.8);
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-slate-900);
	box-shadow: var(--shadow-soft);
	cursor: pointer;
	transition:
		background 0.2s ease,
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0.25s ease;
}

.section-slider__btn:hover {
	background: var(--color-white);
}

.section-slider__btn--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-50%) scale(0.88);
}

.section-slider__btn--left {
	left: 0;
}

.section-slider__btn--right {
	right: 0;
}

.section-slider__btn svg {
	width: 1.25rem;
	height: 1.25rem;
}

/* ==========================================================================
   Project Card
   ========================================================================== */
.project-card {
	position: relative;
	display: block;
	flex-shrink: 0;
	scroll-snap-align: start;
	width: 216px;
	min-width: 216px;
	overflow: hidden;
	border-radius: 1.25rem;
	text-decoration: none;
	color: var(--color-slate-900);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 767px) {
	.project-card {
		width: 220px;
		min-width: 220px;
	}
}

.section-slider--projects {
	margin: -1.25rem -0.75rem -1.75rem;
}

.section-slider__track--projects {
	padding: 1.5rem 4rem 2.25rem 0.75rem;
	scroll-padding-left: 0.75rem;
	scroll-padding-right: 4rem;
}

@media (max-width: 767px) {
	.section-slider--projects {
		margin: -1rem -0.35rem -1.35rem;
	}

	.section-slider__track--projects {
		padding: 1rem 2.5rem 1.85rem 0.35rem;
		scroll-padding-left: 0.35rem;
		scroll-padding-right: 2.5rem;
	}
}

.project-card__image-wrap {
	margin: 0;
	isolation: isolate;
	transition:
		background 0.45s ease,
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.45s ease;
}

.project-card:hover,
.project-card:focus-visible {
	transform: translateY(-4px);
}

.project-card:focus-visible {
	outline: none;
}

.project-card__title-glass {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 3;
	padding: 0.95rem 1rem 1rem;
	border-radius: calc(var(--radius-xl) - 2px);
	border: 1px solid rgba(255,255,255,0.28);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(191,219,254,0.14) 36%, rgba(15,23,42,0.28) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.48),
		inset 0 -1px 0 rgba(255,255,255,0.06),
		0 16px 34px -20px rgba(15,23,42,0.46),
		0 18px 44px -24px rgba(59,130,246,0.3);
	backdrop-filter: blur(26px) saturate(1.45);
	-webkit-backdrop-filter: blur(26px) saturate(1.45);
	overflow: hidden;
	isolation: isolate;
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.35s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		background 0.35s ease;
	pointer-events: none;
}

.project-card__title-glass::before,
.project-card__title-glass::after {
	content: '';
	position: absolute;
	pointer-events: none;
}

.project-card__title-glass::before {
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0.12) 24%, transparent 58%, rgba(148,163,184,0.08) 100%),
		radial-gradient(circle at 18% 0%, rgba(255,255,255,0.54) 0%, transparent 52%),
		radial-gradient(circle at 85% 100%, rgba(96,165,250,0.26) 0%, transparent 44%);
	z-index: 0;
}

.project-card__title-glass::after {
	inset: 1px;
	border-radius: calc(var(--radius-xl) - 4px);
	border: 1px solid rgba(255,255,255,0.14);
	z-index: 0;
}

.project-card:hover .project-card__title-glass,
.project-card:focus-visible .project-card__title-glass {
	opacity: 1;
	transform: translateY(0);
	border-color: rgba(255,255,255,0.36);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(219,234,254,0.18) 34%, rgba(15,23,42,0.32) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.62),
		inset 0 -1px 0 rgba(255,255,255,0.08),
		0 18px 38px -18px rgba(15,23,42,0.52),
		0 22px 52px -22px rgba(59,130,246,0.4);
}

.project-card__title {
	margin: 0;
	position: relative;
	z-index: 1;
	font-family: var(--font-secondary);
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: rgba(248,250,252,0.98);
	text-shadow:
		0 1px 1px rgba(15,23,42,0.3),
		0 8px 24px rgba(15,23,42,0.24);
	text-wrap: balance;
}

@media (hover: none) {
	.project-card__title-glass {
		opacity: 1;
		transform: translateY(0);
	}
}

.project-card:hover .project-card__image-wrap,
.project-card:focus-visible .project-card__image-wrap {
	background: linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(224,236,255,0.08) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.42),
		inset 0 -0.5px 0 rgba(0,0,0,0.06),
		inset 0 0 0 0.5px rgba(255,255,255,0.08),
		0 10px 24px rgba(15,23,42,0.08),
		0 18px 40px -24px rgba(59,130,246,0.18);
	filter: saturate(1.01) brightness(1.01);
}

.project-card .project-card__image-wrap::before {
	background: linear-gradient(175deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.12) 30%, rgba(200,220,255,0.04) 60%, rgba(255,255,255,0.08) 100%);
}

/* ==========================================================================
   Shorts Section
   ========================================================================== */
/* -- Shorts: liquid glass container -- */
.section--shorts {
	padding-left: var(--container-padding);
	padding-right: 0;
}

.shorts-glass {
	position: relative;
	padding: 2rem 0 2.5rem;
	border-radius: var(--radius-2xl);
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.12) 0%,
		rgba(255, 255, 255, 0.04) 50%,
		rgba(200, 220, 255, 0.08) 100%);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.shorts-glass::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 60%;
	height: 120%;
	background: radial-gradient(ellipse, rgba(99, 140, 255, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

/* -- Shorts header -- */
.shorts-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 2rem;
	margin-bottom: 1.5rem;
}

.shorts-header__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	flex-shrink: 0;
	border-radius: 0.875rem;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: var(--color-white);
	box-shadow:
		0 4px 12px rgba(239, 68, 68, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.shorts-header__badge svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}

.shorts-header__title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1;
	color: var(--color-slate-900);
	letter-spacing: -0.02em;
}

.shorts-header__label {
	margin-top: 0.125rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-slate-400);
}

.section--shorts .section-slider__track {
	padding: 0 2rem 0.75rem 0;
	gap: 1rem;
}

.section--shorts .section-slider__track::before {
	content: '';
	flex-shrink: 0;
	width: 1.5rem;
	scroll-snap-align: start;
}

.section--shorts .section-slider__btn--left {
	left: 1.5rem;
}

/* -- Shorts card: liquid glass -- */
.shorts-card {
	position: relative;
	flex-shrink: 0;
	scroll-snap-align: start;
	overflow: hidden;
	border-radius: 1.25rem;
	width: 170px;
	height: 300px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.shorts-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shorts-card__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shorts-card:hover .shorts-card__bg {
	transform: scale(1.08);
}

.shorts-card__iframe {
	pointer-events: none;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: scale(1.35);
}

.shorts-card__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		transparent 35%,
		rgba(0, 0, 0, 0.75) 100%
	);
}

.shorts-card__link {
	position: absolute;
	inset: 0;
	z-index: 20;
}

.shorts-card__menu {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.12);
	padding: 0.5rem;
	backdrop-filter: blur(16px) saturate(1.4);
	-webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.shorts-card__menu svg {
	width: 1rem;
	height: 1rem;
	color: var(--color-white);
}

.shorts-card__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
}

.shorts-card__title {
	margin-bottom: 0.5rem;
	font-family: var(--font-secondary);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-white);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.shorts-card__views {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.2rem 0.5rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-family: var(--font-secondary);
	font-size: 10px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.shorts-card__views svg {
	width: 0.75rem;
	height: 0.75rem;
	opacity: 0.8;
}

.shorts-card__play-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.shorts-card:hover .shorts-card__play-overlay {
	opacity: 1;
}

.shorts-card__play-btn {
	display: flex;
	width: 3.25rem;
	height: 3.25rem;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(20px) saturate(1.5);
	-webkit-backdrop-filter: blur(20px) saturate(1.5);
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease, background 0.3s ease;
}

.shorts-card:hover .shorts-card__play-btn {
	transform: scale(1.08);
	background: rgba(255, 255, 255, 0.25);
}

.shorts-card__play-btn svg {
	width: 1.5rem;
	height: 1.5rem;
	margin-left: 0.2rem;
	color: var(--color-white);
	fill: currentColor;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (min-width: 768px) {
	.shorts-glass {
		padding: 2.5rem 0 3rem;
		border-radius: 1.75rem;
	}

	.shorts-header {
		padding: 0 2.5rem;
	}

	.section--shorts .section-slider__track {
		padding-left: 0;
		padding-right: 2.5rem;
	}

	.section--shorts .section-slider__track::before {
		width: 2rem;
	}

	.shorts-card {
		width: 220px;
		height: 390px;
	}

	.shorts-card__title {
		font-size: 0.9375rem;
	}
}

/* -- Shorts video popup -- */
.shorts-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.shorts-popup--open {
	opacity: 1;
	visibility: visible;
}

.shorts-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.shorts-popup__glass {
	position: relative;
	width: 90vw;
	max-width: 400px;
	aspect-ratio: 9 / 16;
	max-height: 85vh;
	border-radius: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.15) 0%,
		rgba(255, 255, 255, 0.05) 50%,
		rgba(200, 220, 255, 0.1) 100%);
	backdrop-filter: blur(32px) saturate(1.4);
	-webkit-backdrop-filter: blur(32px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.3),
		0 8px 32px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(255, 255, 255, 0.1);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.shorts-popup--open .shorts-popup__glass {
	transform: scale(1) translateY(0);
}

.shorts-popup__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--color-white);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.shorts-popup__close:hover {
	background: rgba(0, 0, 0, 0.6);
	transform: scale(1.1);
}

.shorts-popup__close svg {
	width: 1.25rem;
	height: 1.25rem;
}

.shorts-popup__video {
	width: 100%;
	height: 100%;
}

.shorts-popup__video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* -- Shorts popup nav buttons -- */
.shorts-popup__nav {
	position: relative;
	z-index: 2;
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--color-white);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s, opacity 0.3s;
}

.shorts-popup__nav:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.shorts-popup__nav svg {
	width: 1.5rem;
	height: 1.5rem;
}

.shorts-popup__nav--hidden {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 767px) {
	.shorts-popup__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
	}

	.shorts-popup__prev {
		left: 0.5rem;
	}

	.shorts-popup__next {
		right: 0.5rem;
	}

	.shorts-popup__nav:hover {
		transform: translateY(-50%) scale(1.1);
	}
}

/* ==========================================================================
   Social Subscribe — Liquid Glass
   ========================================================================== */
.social-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 1rem;
	padding: 2rem 1.5rem;
}

.social-bar__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	text-decoration: none;
	border-radius: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.05) 50%,
		rgba(200, 220, 255, 0.1) 100%
	);
	backdrop-filter: blur(24px) saturate(1.3);
	-webkit-backdrop-filter: blur(24px) saturate(1.3);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 2px 8px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		inset 0 -1px 0 rgba(255, 255, 255, 0.1);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.3s ease,
	            border-color 0.3s ease;
	cursor: pointer;
}

.social-bar__item:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.12),
		0 4px 16px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.social-bar__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	transition: transform 0.3s ease;
}

.social-bar__item:hover .social-bar__icon {
	transform: scale(1.1);
}

.social-bar__icon svg {
	width: 2rem;
	height: 2rem;
}

/* — Per-network icon colors — */
.social-bar__item--instagram .social-bar__icon {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	color: var(--color-white);
}
.social-bar__item--instagram:hover {
	border-color: rgba(225, 48, 108, 0.35);
}

.social-bar__item--facebook .social-bar__icon {
	background: #1877F2;
	color: var(--color-white);
}
.social-bar__item--facebook:hover {
	border-color: rgba(24, 119, 242, 0.35);
}

.social-bar__item--threads .social-bar__icon {
	background: #000;
	color: var(--color-white);
}
.social-bar__item--threads:hover {
	border-color: rgba(0, 0, 0, 0.25);
}

.social-bar__item--tiktok .social-bar__icon {
	background: #000;
	color: var(--color-white);
}
.social-bar__item--tiktok:hover {
	border-color: rgba(0, 0, 0, 0.25);
}

.social-bar__item--youtube .social-bar__icon {
	background: #FF0000;
	color: var(--color-white);
}
.social-bar__item--youtube:hover {
	border-color: rgba(255, 0, 0, 0.3);
}

.social-bar__item--telegram .social-bar__icon {
	background: #229ED9;
	color: var(--color-white);
}
.social-bar__item--telegram:hover {
	border-color: rgba(34, 158, 217, 0.35);
}

@media (max-width: 479px) {
	.social-bar {
		gap: 0.75rem;
		padding: 1.5rem 1rem;
	}
	.social-bar__item {
		padding: 0.75rem;
	}
}

/* ==========================================================================
   Doc Films Card
   ========================================================================== */
.doc-card {
	position: relative;
	display: block;
	flex-shrink: 0;
	scroll-snap-align: start;
	overflow: hidden;
	border-radius: var(--radius-2xl);
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.8);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	width: 320px;
	min-width: 320px;
	aspect-ratio: 16 / 9;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doc-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.doc-card__image-wrap {
	position: absolute;
	inset: 0;
}

.doc-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.doc-card:hover .doc-card__image {
	transform: scale(1.05);
}

.doc-card__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.doc-card__content {
	position: relative;
	z-index: 10;
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.25rem;
	color: var(--color-white);
}

.doc-card__tag {
	font-family: var(--font-secondary);
	font-size: 10px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: rgba(255, 255, 255, 0.8);
}

.doc-card__title {
	margin-top: 0.75rem;
	font-family: var(--font-secondary);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.375;
	color: var(--color-white);
}

.doc-card__meta {
	margin-top: 0.5rem;
	font-family: var(--font-secondary);
	font-size: 0.75rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
}

.doc-card__cta {
	display: block;
	margin-top: 1rem;
	width: 100%;
	border-radius: var(--radius-pill);
	background: var(--color-white);
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--color-slate-900);
	text-align: center;
	transition: background 0.15s ease;
}

.doc-card:hover .doc-card__cta {
	background: var(--color-slate-100);
}

/* ==========================================================================
   Showcase Block
   ========================================================================== */
.showcase {
	display: grid;
	gap: 2rem;
	border-radius: var(--radius-2xl);
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.8);
	padding: 2.5rem;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.showcase__subtitle {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	color: var(--color-slate-400);
}

.showcase__title {
	margin-top: 1rem;
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--color-slate-900);
	text-wrap: balance;
}

.showcase__desc {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--color-slate-500);
}

.showcase__tags {
	margin-top: var(--spacing-xl);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.showcase__tag {
	border-radius: var(--radius-pill);
	background: var(--color-slate-100);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-slate-600);
}

.showcase__btn {
	margin-top: 2rem;
	display: inline-block;
	border-radius: var(--radius-pill);
	background: var(--color-slate-900);
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-white);
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, background 0.15s ease;
}

.showcase__btn:hover {
	transform: translateY(-2px);
	background: var(--color-slate-800);
	color: var(--color-white);
}

.showcase__visual {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	background: linear-gradient(to bottom right, #0f172a, #334155, #94a3b8);
	box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
	min-height: 200px;
}

.showcase__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (min-width: 1024px) {
	.showcase {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	}
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
	position: relative;
	z-index: 10;
	margin: 4.5rem var(--container-padding) 0;
	border-radius: var(--radius-2xl);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.6) 0%,
		rgba(255, 255, 255, 0.35) 100%
	);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.8),
		inset 0 2px 4px rgba(255, 255, 255, 0.3),
		0 -4px 24px -8px rgba(0, 0, 0, 0.08);
}

.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.8) 0%,
		rgba(255, 255, 255, 0.2) 50%,
		transparent 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.site-footer__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding: 3rem var(--container-padding);
}

.site-footer__top {
	display: grid;
	gap: 2.5rem;
}

/* Company info */
.site-footer__company-logo img {
	height: 3rem;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.site-footer__copyright {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-slate-500);
}

.site-footer__about {
	margin-top: 1.25rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: var(--color-slate-600);
}

.site-footer__contacts {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-slate-600);
}

/* Footer nav columns */
.site-footer__nav {
	display: grid;
	gap: 2rem;
}

.site-footer__nav-heading {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--color-slate-500);
}

.site-footer__nav-list {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.site-footer__nav-link {
	display: block;
	font-size: 0.875rem;
	color: var(--color-slate-600);
}

.site-footer__nav-link:hover {
	color: var(--color-slate-900);
}

/* Footer bottom bar */
.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
	padding-top: 1.5rem;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-footer__link {
	font-size: 0.875rem;
	color: var(--color-slate-500);
	transition: color 0.15s ease;
}

.site-footer__link:hover {
	color: var(--color-slate-900);
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-footer__social-link {
	font-size: 0.875rem;
	color: var(--color-slate-500);
	transition: color 0.15s ease;
}

.site-footer__social-link:hover {
	color: var(--color-slate-900);
}

@media (min-width: 640px) {
	.site-footer__nav {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.site-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.site-footer__top {
		grid-template-columns: 1.1fr 2fr;
	}

	.site-footer__nav {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   Blog / Archive — Posts Grid
   ========================================================================== */
.site-main {
	max-width: var(--container-max);
	margin: 6rem auto 3rem;
	padding: 0 var(--container-padding);
}

.posts-grid {
	display: grid;
	gap: var(--spacing-xl);
}

.post-card {
	border-radius: var(--radius-xl);
	border: 1px solid rgba(226, 232, 240, 0.7);
	background: rgba(255, 255, 255, 0.7);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

.post-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-card__content {
	padding: var(--spacing-xl);
}

.post-card__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-slate-900);
}

.post-card__title a:hover {
	color: var(--color-accent-strong);
}

.post-card__meta {
	margin-top: var(--spacing-sm);
	font-size: 0.875rem;
	color: var(--color-slate-500);
}

.post-card__excerpt {
	margin-top: var(--spacing-md);
	font-size: 0.875rem;
	color: var(--color-slate-600);
	line-height: 1.6;
}

@media (min-width: 640px) {
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.posts-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   Single Post / Page
   ========================================================================== */
.entry-header {
	margin-bottom: var(--spacing-2xl);
}

.entry-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--color-slate-900);
	text-wrap: balance;
}

.entry-meta {
	margin-top: var(--spacing-md);
	font-size: 0.875rem;
	color: var(--color-slate-500);
}

.entry-thumbnail {
	margin-bottom: var(--spacing-2xl);
	border-radius: var(--radius-xl);
	overflow: hidden;
}

.entry-thumbnail img {
	width: 100%;
	height: auto;
}

.entry-content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--color-slate-700);
}

.entry-content h2 { font-size: 1.75rem; margin-top: 2rem; margin-bottom: 1rem; }
.entry-content h3 { font-size: 1.375rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote { border-left: 3px solid var(--color-accent); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: var(--color-slate-600); }
.entry-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }

/* Post navigation */
.post-navigation {
	margin-top: var(--spacing-3xl);
	padding-top: var(--spacing-2xl);
	border-top: 1px solid rgba(226, 232, 240, 0.7);
}

/* ==========================================================================
   Archive Header
   ========================================================================== */
.archive-header {
	margin-bottom: var(--spacing-2xl);
}

.archive-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-slate-900);
}

.archive-description {
	margin-top: var(--spacing-md);
	font-size: 1rem;
	color: var(--color-slate-600);
}

/* ==========================================================================
   Search
   ========================================================================== */
.search-header {
	margin-bottom: var(--spacing-2xl);
}

.search-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-slate-900);
}

.search-title span {
	color: var(--color-accent-strong);
}

/* ==========================================================================
   404
   ========================================================================== */
.error-404 {
	text-align: center;
	padding: 4rem 0;
}

.error-404 h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-slate-900);
}

.error-404 p {
	margin-top: 1rem;
	font-size: 1.125rem;
	color: var(--color-slate-500);
}

.error-404 .search-form {
	margin-top: 2rem;
}

/* ==========================================================================
   Widget Area / Sidebar
   ========================================================================== */
.widget-area {
	margin-top: var(--spacing-2xl);
}

.widget {
	margin-bottom: var(--spacing-2xl);
	padding: var(--spacing-xl);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(226, 232, 240, 0.7);
	background: rgba(255, 255, 255, 0.7);
}

.widget-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-slate-900);
	margin-bottom: var(--spacing-base);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination,
.nav-links {
	margin-top: var(--spacing-2xl);
	display: flex;
	justify-content: center;
	gap: var(--spacing-sm);
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: calc(var(--radius-2xl) - 4px);
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(31,41,55,0.7);
	background: transparent;
	border: none;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-numbers:hover {
	background: rgba(255,255,255,0.5);
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 1px 4px rgba(0,0,0,0.06);
	color: rgba(31,41,55,1);
}

.page-numbers.current {
	background: rgba(255,255,255,0.55);
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.9), 0 2px 8px rgba(0,0,0,0.08);
	font-weight: 700;
	color: var(--color-primary);
}

/* ==========================================================================
   Shared Page Components
   ========================================================================== */

/* --- Glass Card --- */
.glass-card {
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.8);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 1.5rem;
}

/* --- Dark Card --- */
.dark-card {
	border-radius: var(--radius-2xl);
	background: linear-gradient(135deg, var(--color-slate-900), var(--color-slate-800));
	color: var(--color-white);
	padding: 2rem;
}

@media (min-width: 768px) {
	.dark-card { padding: 3rem; }
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.625rem 1.5rem;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }

.btn--primary {
	background: var(--color-slate-900);
	color: var(--color-white);
}
.btn--primary:hover { background: var(--color-slate-800); }

.btn--success {
	background: var(--color-emerald-500);
	color: var(--color-white);
}
.btn--success:hover { background: var(--color-emerald-600); }

.btn--outline {
	background: rgba(255, 255, 255, 0.8);
	color: var(--color-slate-700);
	border: 1px solid var(--color-slate-200);
}
.btn--outline:hover { background: var(--color-slate-100); }

.btn--white {
	background: var(--color-white);
	color: var(--color-slate-900);
}
.btn--white:hover { background: var(--color-slate-100); }

.btn--outline-white {
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.2); }

/* --- Section Subtitle --- */
.section-subtitle {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.45em;
	color: var(--color-slate-400);
}

/* --- Page Hero --- */
.page-hero {
	padding: 0 1.5rem 2rem;
	max-width: var(--max-width);
	margin: 0 auto;
}

.page-hero__inner { padding-top: 0.5rem; }

.page-hero__title {
	margin-top: 0.5rem;
	margin-bottom: 0;
	font-family: var(--font-secondary);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--color-slate-900);
}

.page-hero__desc {
	margin-top: 1.5rem;
	max-width: 48rem;
	font-size: 1.25rem;
	line-height: 1.7;
	color: var(--color-slate-600);
}

/* --- Breadcrumb --- */
.breadcrumb-section {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 1rem 1.5rem;
}

.breadcrumb-section__inner { display: flex; }

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-slate-500);
}

.breadcrumb a {
	color: var(--color-slate-500);
	text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-slate-900); }

.breadcrumb__sep { color: var(--color-slate-400); }

/* --- Filter Buttons --- */
.filter-btn {
	display: inline-flex;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	border: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	color: var(--color-slate-600);
	cursor: pointer;
	text-decoration: none;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		inset 0 0 0 0.5px rgba(255,255,255,0.15),
		0 1px 3px rgba(0,0,0,0.03);
	transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.filter-btn:hover {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.7),
		0 4px 12px rgba(0,0,0,0.06);
}
.filter-btn--active {
	background: linear-gradient(180deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.95) 100%);
	color: var(--color-white);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.1),
		0 4px 14px rgba(0,0,0,0.12);
}

/* --- No Results --- */
.no-results {
	padding: 3rem 1rem;
	font-size: 1rem;
	text-align: center;
	color: var(--color-slate-500);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero {
	padding: 0 1.5rem 2rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.about-hero__inner { padding-top: 2rem; }
.about-hero__title {
	margin-top: 1rem;
	font-family: var(--font-secondary);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 700;
	color: var(--color-slate-900);
}
.about-hero__desc {
	margin-top: 1.5rem;
	max-width: 48rem;
	font-size: 1.25rem;
	line-height: 1.7;
	color: var(--color-slate-600);
}

.about-stats { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.about-stats__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .about-stats__inner { grid-template-columns: repeat(4, 1fr); } }
.about-stats__card { text-align: center; }
.about-stats__value { font-family: var(--font-secondary); font-size: 2.5rem; font-weight: 700; color: var(--color-slate-900); }
.about-stats__label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-slate-500); }

.about-mission { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.about-mission__inner {}
.about-mission__grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .about-mission__grid { grid-template-columns: repeat(3, 1fr); } }
.about-mission__card-title { font-family: var(--font-secondary); font-size: 1.25rem; font-weight: 700; color: var(--color-slate-900); }
.about-mission__card-text { margin-top: 0.75rem; font-size: 0.9375rem; color: var(--color-slate-600); line-height: 1.6; }

.about-timeline { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.about-timeline__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.about-timeline__item { display: flex; gap: 1.5rem; align-items: flex-start; }
.about-timeline__year { flex-shrink: 0; width: 4rem; font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-slate-900); }
.about-timeline__content h3 { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.about-timeline__content p { margin-top: 0.5rem; font-size: 0.9375rem; color: var(--color-slate-600); line-height: 1.6; }

.about-leadership { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.about-leadership__grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .about-leadership__grid { grid-template-columns: repeat(4, 1fr); } }
.about-leadership__avatar { width: 5rem; height: 5rem; border-radius: 50%; background: var(--color-slate-200); margin-bottom: 1rem; }
.about-leadership__name { font-family: var(--font-secondary); font-weight: 700; color: var(--color-slate-900); }
.about-leadership__role { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-500); }

.about-cta { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.about-cta__grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .about-cta__grid { grid-template-columns: 1fr auto; } }
.about-cta__title { font-family: var(--font-secondary); font-size: 1.875rem; font-weight: 700; }
.about-cta__text { margin-top: 1rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.about-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.about-faces {
	padding: 0 1.5rem 3rem;
	max-width: var(--max-width);
	margin: 0 auto;
}

.about-faces__intro {
	max-width: 56rem;
	margin-bottom: 2rem;
}

.about-faces__lead {
	margin-bottom: 1.25rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
	color: var(--color-slate-900);
}

.about-faces__grid {
	margin-top: 1.5rem;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) {
	.about-faces__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.about-faces__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.about-face-card {
	display: block;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	text-align: left;
	position: relative;
	z-index: 2;
}

.about-face-card__media {
	border-radius: 1.35rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.38);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	pointer-events: none;
}

.about-face-card:hover .about-face-card__media {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.about-face-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	pointer-events: none;
}

.about-face-card__image--placeholder {
	min-height: 260px;
	background: linear-gradient(180deg, rgba(226, 232, 240, 0.95) 0%, rgba(203, 213, 225, 0.95) 100%);
}

@media (max-width: 640px) {
	.about-face-card__media {
		max-width: none;
	}
}

/* ==========================================================================
   Contacts Page
   ========================================================================== */

.contacts-offices,
.contacts-departments,
.contacts-form-section,
.contacts-social { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }

.contacts-offices__grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .contacts-offices__grid { grid-template-columns: repeat(2, 1fr); } }
.contacts-offices__badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; background: var(--color-emerald-500); color: var(--color-white); margin-bottom: 0.75rem; }
.contacts-offices__card h3 { font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-slate-900); }
.contacts-offices__info { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.9375rem; color: var(--color-slate-600); }

.contacts-departments__grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .contacts-departments__grid { grid-template-columns: repeat(2, 1fr); } }
.contacts-departments__card h3 { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.contacts-departments__desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-slate-500); }
.contacts-departments__meta { margin-top: 1rem; font-size: 0.875rem; color: var(--color-slate-600); }
.contacts-departments__meta a { color: var(--color-accent); text-decoration: none; }
.contacts-departments__meta a:hover { text-decoration: underline; }

.contacts-form { max-width: 40rem; margin: 2rem auto 0; }
.contacts-form__form { display: flex; flex-direction: column; gap: 1rem; }
.contacts-form__row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contacts-form__row { grid-template-columns: 1fr 1fr; } }
.contacts-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.contacts-form__field label { font-size: 0.875rem; font-weight: 600; color: var(--color-slate-700); }
.contacts-form__field input,
.contacts-form__field select,
.contacts-form__field textarea {
	border: 1px solid var(--color-slate-200);
	border-radius: var(--radius-lg);
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	background: var(--color-white);
	outline: none;
	font-family: inherit;
}
.contacts-form__field input:focus,
.contacts-form__field select:focus,
.contacts-form__field textarea:focus { border-color: var(--color-slate-400); }

.contacts-social__grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .contacts-social__grid { grid-template-columns: repeat(4, 1fr); } }
.contacts-social__card { display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; color: var(--color-slate-900); transition: transform 0.2s, box-shadow 0.2s; }
.contacts-social__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.contacts-social__card h3 { margin-top: 0.5rem; font-weight: 600; }
.contacts-social__card p { font-size: 0.8125rem; color: var(--color-slate-500); }
.contacts-social__icon { width: 3.5rem; height: 3.5rem; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--color-white); }
.contacts-social__icon--telegram { background: #229ED9; }
.contacts-social__icon--youtube { background: #ff0000; }
.contacts-social__icon--instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.contacts-social__icon--facebook { background: #1877F2; }
.contacts-social__icon--threads { background: #000; }

/* ==========================================================================
   Schedule Page
   ========================================================================== */

/* --- Schedule Days — Liquid Glass --- */
.schedule-days__list { display: flex; gap: 0.5rem; overflow-x: auto; overflow-y: visible; padding: 0.5rem 0 1rem; }
.schedule-days__btn {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 5rem;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-xl);
	border: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(16px) saturate(1.3);
	-webkit-backdrop-filter: blur(16px) saturate(1.3);
	color: var(--color-slate-600);
	cursor: pointer;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		inset 0 0 0 0.5px rgba(255,255,255,0.15),
		0 1px 4px rgba(0,0,0,0.04);
	transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
	position: relative;
}
.schedule-days__btn::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(175deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.schedule-days__btn:hover {
	transform: translateY(-2px);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.7),
		0 4px 14px rgba(0,0,0,0.07);
}
.schedule-days__btn--active {
	background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(240,246,255,0.2) 100%);
	color: var(--color-slate-900);
	font-weight: 700;
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.8),
		inset 0 0 0 0.5px rgba(255,255,255,0.3),
		0 4px 16px rgba(0,0,0,0.08);
}
.schedule-days__btn--active::before {
	background: linear-gradient(175deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 40%, rgba(200,220,255,0.1) 100%);
}
.schedule-days__label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; }
.schedule-days__num { margin-top: 0.25rem; font-size: 1.125rem; font-weight: 600; }
.schedule-days__today { margin-top: 0.25rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* --- Schedule List — Liquid Glass --- */
.schedule-list { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.schedule-days { padding: 0 1.5rem 2rem; max-width: var(--max-width); margin: 0 auto; overflow: visible; }
.schedule-list__card {
	width: min(100%, 60rem);
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
/* Schedule row — liquid glass */
.schedule-list__row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.1rem 1.5rem;
	border-radius: 20px;
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(240,248,255,0.45) 50%, rgba(255,255,255,0.55) 100%);
	border: 1.5px solid rgba(255,255,255,0.7);
	box-shadow:
		0 1px 2px rgba(0,0,0,0.02),
		0 4px 16px rgba(0,0,0,0.04),
		inset 0 1px 0 rgba(255,255,255,0.8),
		inset 0 -1px 0 rgba(255,255,255,0.2);
	transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.schedule-list__row:hover {
	background: linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(230,242,255,0.6) 50%, rgba(255,255,255,0.7) 100%);
	border-color: rgba(255,255,255,0.85);
	box-shadow:
		0 2px 4px rgba(0,0,0,0.03),
		0 8px 32px rgba(0,0,0,0.07),
		0 0 0 1px rgba(255,255,255,0.3),
		inset 0 1px 0 rgba(255,255,255,0.9),
		inset 0 -1px 0 rgba(255,255,255,0.3),
		0 0 24px rgba(120,180,255,0.08);
}
/* Live row */
.schedule-list__row--live {
	background: linear-gradient(135deg, rgba(239,68,68,0.08) 0%, rgba(255,255,255,0.5) 50%, rgba(239,68,68,0.05) 100%);
	border-color: rgba(239,68,68,0.2);
}
.schedule-list__row--live:hover {
	background: linear-gradient(135deg, rgba(239,68,68,0.12) 0%, rgba(255,255,255,0.6) 50%, rgba(239,68,68,0.08) 100%);
	box-shadow:
		0 2px 4px rgba(0,0,0,0.03),
		0 8px 32px rgba(239,68,68,0.1),
		inset 0 1px 0 rgba(255,255,255,0.8),
		0 0 24px rgba(239,68,68,0.1);
}

/* Time — large glass digits */
.schedule-list__time-overlay {
	flex-shrink: 0;
	width: 6.2rem;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 2.35rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	white-space: nowrap;
	padding: 0;
	color: var(--color-slate-900);
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
.schedule-list__row--live .schedule-list__time-overlay {
	color: var(--color-red-600);
}
/* Time fallback (no thumb) */
.schedule-list__time {
	flex-shrink: 0;
	width: 6.2rem;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 2.35rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--color-slate-900);
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
.schedule-list__row--live .schedule-list__time {
	color: var(--color-red-600);
}

/* Row as button reset */
button.schedule-list__row {
	border: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
	width: 100%;
}

/* Poster */
.schedule-list__poster {
	flex-shrink: 0;
	width: 7rem;
	aspect-ratio: 4 / 5;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.7);
	box-shadow:
		0 10px 26px rgba(15,23,42,0.1),
		inset 0 1px 0 rgba(255,255,255,0.35);
	background: linear-gradient(180deg, rgba(248,250,252,0.95) 0%, rgba(226,232,240,0.9) 100%);
}
.schedule-list__poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center top;
	background: linear-gradient(180deg, rgba(248,250,252,0.95) 0%, rgba(226,232,240,0.9) 100%);
}

.schedule-list__content { flex: 1; min-width: 0; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.schedule-list__title {
	font-family: var(--font-secondary);
	font-size: 1.22rem;
	font-weight: 700;
	color: var(--color-slate-900);
	line-height: 1.3;
	word-break: break-word;
}
.schedule-list__row--live .schedule-list__title { color: var(--color-red-600); }
.schedule-list__live-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.2rem 0.65rem;
	border-radius: 9999px;
	background: var(--color-red-500);
	color: var(--color-white);
	font-size: 0.7rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}
.schedule-list__live-dot {
	width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--color-white);
	flex-shrink: 0;
	animation: schedule-dot-pulse 2s infinite;
}
@keyframes schedule-dot-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(0.85); }
}
.schedule-list__cat {
	display: inline-block;
	padding: 0.2rem 0.65rem;
	border-radius: 9999px;
	font-size: 0.7rem;
	font-weight: 500;
	background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(240,248,255,0.3) 100%);
	color: var(--color-slate-500);
	border: 1px solid rgba(255,255,255,0.6);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.6),
		0 1px 3px rgba(0,0,0,0.03);
}
.schedule-list__dur { font-size: 0.75rem; color: var(--color-slate-400); }
.schedule-list__action { flex-shrink: 0; }
@media (max-width: 640px) {
	.schedule-list__row {
		gap: 0.9rem;
		padding: 1rem 1rem;
	}
	.schedule-list__poster {
		width: 4.5rem;
	}
}

/* --- Schedule Show Modal --- */
.sch-modal {
	position: fixed; inset: 0; z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	pointer-events: none; opacity: 0;
	transition: opacity 0.3s;
}
.sch-modal--active { pointer-events: auto; opacity: 1; }
.sch-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(0,0,0,0.15);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.sch-modal__container {
	position: relative; z-index: 1;
	width: min(92vw, 860px);
	max-height: min(82vh, 640px);
	display: flex;
	align-items: stretch;
	background: #fff;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.12);
	transform: translateY(20px) scale(0.95);
	transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.sch-modal--active .sch-modal__container {
	transform: translateY(0) scale(1);
}
.sch-modal__close {
	position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3;
	width: 32px; height: 32px;
	border: none; border-radius: 50%;
	background: rgba(255,255,255,0.85);
	font-size: 1.25rem; line-height: 1;
	color: var(--color-slate-600);
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	transition: background 0.2s;
}
.sch-modal__close:hover { background: #fff; }
.sch-modal__poster {
	flex: 0 0 clamp(190px, 33vw, 280px);
	width: clamp(190px, 33vw, 280px);
	padding: 1rem 0.75rem 1rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(248,250,252,0.95) 0%, rgba(241,245,249,0.9) 100%);
}
.sch-modal__poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center top;
}
.sch-modal__body {
	flex: 1 1 auto;
	min-width: 0;
	padding: 1.25rem 1.5rem 1.75rem 0.75rem;
	overflow-y: auto;
}
.sch-modal__time {
	display: inline-block;
	font-family: var(--font-secondary);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-slate-800);
	background: linear-gradient(180deg, rgba(240,246,255,0.4) 0%, rgba(255,255,255,0.15) 100%);
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 3px rgba(0,0,0,0.04);
	margin-bottom: 0.75rem;
	line-height: 1.15;
}
.sch-modal__title {
	font-family: var(--font-secondary);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-slate-900);
	line-height: 1.25;
}
.sch-modal__meta {
	display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
	margin-top: 0.75rem;
}
.sch-modal__tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 500;
	background: rgba(0,0,0,0.04);
	color: var(--color-slate-600);
}
.sch-modal__dur {
	font-size: 0.8rem;
	color: var(--color-slate-400);
}
.sch-modal__desc {
	margin-top: 0.85rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-slate-600);
}
.sch-modal__actions {
	margin-top: 1.25rem;
	display: flex; gap: 0.65rem; flex-wrap: wrap;
}
.sch-modal__btn {
	display: inline-flex; align-items: center;
	padding: 0.6rem 1.35rem;
	border-radius: var(--radius-pill);
	font-size: 0.85rem; font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.sch-modal__btn--live {
	color: #fff;
	background: var(--color-emerald-500);
	box-shadow: 0 2px 8px rgba(16,185,129,0.25);
}
.sch-modal__btn--live:hover {
	background: var(--color-emerald-600);
	transform: translateY(-1px);
}
.sch-modal__btn--glass {
	color: var(--color-slate-700);
	background: rgba(0,0,0,0.04);
}
.sch-modal__btn--glass:hover {
	background: rgba(0,0,0,0.08);
	transform: translateY(-1px);
}
@media (max-width: 640px) {
	.sch-modal__container {
		width: min(96vw, 720px);
		max-height: 95vh;
	}
	.sch-modal__poster {
		flex-basis: 42%;
		width: 42%;
		padding: 0.85rem 0.5rem 0.85rem 0.85rem;
	}
	.sch-modal__body {
		padding: 1rem 1rem 1.1rem 0.5rem;
	}
	.sch-modal__time {
		font-size: 1.55rem;
	}
	.sch-modal__title {
		font-size: 1.1rem;
	}
}

.schedule-cta { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.schedule-cta__grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .schedule-cta__grid { grid-template-columns: 1fr auto; } }
.schedule-cta__grid h2 { font-family: var(--font-secondary); font-size: 1.875rem; font-weight: 700; }
.schedule-cta__grid p { margin-top: 1rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.schedule-cta__buttons { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.schedule-cta__phones { display: none; }
@media (min-width: 768px) { .schedule-cta__phones { display: flex; justify-content: center; position: relative; } }
.schedule-cta__phone { width: 8rem; height: 16rem; border-radius: 1.5rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); }
.schedule-cta__phone--offset { position: absolute; top: 1rem; left: 2rem; background: rgba(255, 255, 255, 0.2); }

/* ==========================================================================
   Live Page
   ========================================================================== */

.live-page { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.live-page__grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .live-page__grid { grid-template-columns: 1fr 380px; } }

.live-player { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-2xl); overflow: hidden; background: #0f172a; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.live-player__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.8), rgba(15,23,42,.3), rgba(30,41,59,.2)); }
.live-player__logo { position: absolute; left: 1.5rem; top: 1.5rem; z-index: 10; }
.live-player__logo img { height: 2.5rem; width: auto; max-width: 140px; opacity: 0.9; }
.live-player__badge { position: absolute; right: 1.5rem; top: 1.5rem; z-index: 10; display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 9999px; background: var(--color-red-500); color: var(--color-white); font-size: 0.875rem; font-weight: 600; }
.live-player__badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-white); animation: live-pulse-glow 2s infinite; }
.live-player__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--color-white); z-index: 5; }
.live-player__play-btn { width: 5rem; height: 5rem; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, transform 0.2s; color: var(--color-white); font-size: 1.5rem; }
.live-player__play-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.live-player__label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.35em; color: rgba(255,255,255,0.7); }
.live-player__program { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 600; }
.live-player__controls { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; justify-content: space-between; z-index: 10; }
.live-player__controls-left,
.live-player__controls-right { display: flex; align-items: center; gap: 1rem; }
.live-player__ctrl-btn { background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; transition: color 0.2s; }
.live-player__ctrl-btn:hover { color: var(--color-white); }

.live-program { margin-top: 1.5rem; }
.live-program__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
@media (max-width: 640px) { .live-program__header { flex-direction: column; } }
.live-program__badges { display: flex; align-items: center; gap: 0.75rem; }
.live-program__on-air { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--color-emerald-100); font-size: 0.75rem; font-weight: 600; color: var(--color-emerald-600); }
.live-program__on-air-dot { width: 0.5rem; height: 0.5rem; flex-shrink: 0; position: relative; top: 4px; border-radius: 50%; background: var(--color-emerald-500); animation: live-pulse-glow 2s infinite; }
.live-program__time { font-size: 0.875rem; color: var(--color-slate-500); }
.live-program__title { margin-top: 0.75rem; font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-slate-900); }
.live-program__desc { margin-top: 0.5rem; color: var(--color-slate-600); }
.live-program__host { margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-slate-500); }

/* Now playing card in sidebar */
.live-now { margin-bottom: 1rem; }
.live-now__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; color: var(--color-emerald-600); text-transform: uppercase; letter-spacing: 0.05em; }
.live-now__dot { width: 0.5rem; height: 0.5rem; flex-shrink: 0; border-radius: 50%; background: var(--color-emerald-500); animation: live-pulse-glow 2s infinite; }
.live-now__title { margin-top: 0.5rem; font-family: var(--font-secondary); font-size: 1.25rem; font-weight: 700; color: var(--color-slate-900); }
.live-now__desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-600); }
.live-now__time { display: block; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 500; color: var(--color-slate-400); }

.live-schedule { }
.live-schedule__title { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.live-schedule__list { margin-top: 1rem; max-height: 25rem; overflow-y: auto; display: flex; flex-direction: column; gap: 0.25rem; }
.live-schedule__item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: var(--radius-lg); transition: background 0.2s; }
.live-schedule__item--past { opacity: 0.5; }
.live-schedule__item--live { background: rgba(16, 185, 129, 0.08); }
.live-schedule__item--next:hover { background: rgba(241, 245, 249, 0.5); }
.live-schedule__time { font-size: 0.875rem; font-weight: 500; color: var(--color-slate-500); }
.live-schedule__item--live .live-schedule__time { color: var(--color-emerald-600); }
.live-schedule__name { flex: 1; font-size: 0.875rem; color: var(--color-slate-700); }
.live-schedule__item--live .live-schedule__name { font-weight: 600; color: var(--color-slate-900); }
.live-schedule__dot { width: 0.5rem; height: 0.5rem; flex-shrink: 0; position: relative; top: 4px; border-radius: 50%; background: var(--color-emerald-500); animation: live-pulse-glow 2s infinite; }
.live-schedule__link { display: block; margin-top: 1rem; text-align: center; font-size: 0.875rem; font-weight: 500; color: var(--color-slate-600); text-decoration: none; }
.live-schedule__link:hover { color: var(--color-slate-900); }

.live-chat__title { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.live-chat__messages { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.live-chat__msg { padding: 0.75rem; border-radius: var(--radius-lg); background: var(--color-slate-100); }
.live-chat__msg-header { display: flex; justify-content: space-between; align-items: center; }
.live-chat__msg-user { font-size: 0.875rem; font-weight: 600; color: var(--color-slate-900); }
.live-chat__msg-time { font-size: 0.75rem; color: var(--color-slate-400); }
.live-chat__msg-text { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-600); }
.live-chat__input { margin-top: 1rem; display: flex; gap: 0.5rem; }
.live-chat__input input { flex: 1; border: 1px solid var(--color-slate-200); border-radius: 9999px; padding: 0.625rem 1rem; font-size: 0.875rem; background: var(--color-white); outline: none; font-family: inherit; }
.live-chat__input input:focus { border-color: var(--color-slate-400); }

.live-platforms { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.live-platforms__grid { margin-top: 2rem; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .live-platforms__grid { grid-template-columns: repeat(4, 1fr); } }
.live-platforms__card { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--color-slate-900); transition: transform 0.2s, box-shadow 0.2s; }
.live-platforms__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.live-platforms__card h3 { font-weight: 600; }
.live-platforms__card p { font-size: 0.875rem; color: var(--color-slate-500); }
.live-platforms__icon { width: 3rem; height: 3rem; border-radius: var(--radius-lg); flex-shrink: 0; }
.live-platforms__icon--red { background: #ef4444; }
.live-platforms__icon--blue { background: #3b82f6; }
.live-platforms__icon--slate { background: #334155; }
.live-platforms__icon--sky { background: #0ea5e9; }

/* ==========================================================================
   Team Page
   ========================================================================== */

.team-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.team-stats__item { display: flex; flex-direction: column; }
.team-stats__value { font-family: var(--font-secondary); font-size: 2rem; font-weight: 700; color: var(--color-slate-900); }
.team-stats__label { font-size: 0.875rem; color: var(--color-slate-500); }

.team-section { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.team-grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
.team-grid--3 { grid-template-columns: repeat(2, 1fr); }
.team-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .team-grid--3 { grid-template-columns: repeat(3, 1fr); } .team-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.team-card { text-align: center; }
.team-card__avatar { width: 5rem; height: 5rem; border-radius: 50%; background: var(--color-slate-200); margin: 0 auto 1rem; }
.team-card__name { font-family: var(--font-secondary); font-weight: 700; color: var(--color-slate-900); }
.team-card__role { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-500); }
.team-card__desc { margin-top: 0.5rem; font-size: 0.8125rem; color: var(--color-slate-600); }

.team-dept__name { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.team-dept__count { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-slate-500); }
.team-dept__head { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-600); }

.team-cta { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.team-cta__inner { text-align: center; }
.team-cta__inner h2 { font-family: var(--font-secondary); font-size: 1.875rem; font-weight: 700; }
.team-cta__inner p { margin-top: 1rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.team-cta__buttons { margin-top: 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Careers Page
   ========================================================================== */

.careers-benefits,
.careers-vacancies,
.careers-cta { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }

.careers-benefits__grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .careers-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .careers-benefits__grid { grid-template-columns: repeat(3, 1fr); } }
.careers-benefits__card h3 { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.careers-benefits__card p { margin-top: 0.5rem; font-size: 0.9375rem; color: var(--color-slate-600); line-height: 1.6; }

.careers-vacancies__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.careers-vacancy { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
@media (max-width: 640px) { .careers-vacancy { flex-direction: column; align-items: flex-start; } }
.careers-vacancy__title { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }
.careers-vacancy__dept { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-500); }
.careers-vacancy__meta { margin-top: 0.5rem; display: flex; gap: 1rem; font-size: 0.8125rem; color: var(--color-slate-600); }

.careers-cta__grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .careers-cta__grid { grid-template-columns: 1fr auto; } }
.careers-cta__grid h2 { font-family: var(--font-secondary); font-size: 1.875rem; font-weight: 700; }
.careers-cta__grid p { margin-top: 1rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.careers-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   FAQ Page
   ========================================================================== */

.faq-section { padding: 0 1.5rem 2.5rem; max-width: 48rem; margin: 0 auto; }

.faq-category { margin-bottom: 2rem; }
.faq-category__title { font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-slate-900); margin-bottom: 1rem; }
.faq-category__list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item { padding: 0; overflow: hidden; }
.faq-item__question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-slate-900);
	text-align: left;
}
.faq-item__icon { font-size: 1.25rem; color: var(--color-slate-400); transition: transform 0.2s; }
.faq-item--open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { display: none; padding: 0 1.5rem 1rem; }
.faq-item--open .faq-item__answer { display: block; }
.faq-item__answer p { font-size: 0.9375rem; color: var(--color-slate-600); line-height: 1.7; }

.faq-cta { padding: 0 1.5rem 2.5rem; max-width: 48rem; margin: 0 auto; }
.faq-cta__inner { text-align: center; }
.faq-cta__inner h2 { font-family: var(--font-secondary); font-size: 1.875rem; font-weight: 700; }
.faq-cta__inner p { margin-top: 1rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.faq-cta__buttons { margin-top: 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Legal Page
   ========================================================================== */

.legal-content { padding: 0 1.5rem 2.5rem; max-width: 48rem; margin: 0 auto; }

.legal-block { margin-bottom: 2.5rem; }
.legal-block__title { font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; color: var(--color-slate-900); }
.legal-block__card { margin-top: 1.5rem; }

.legal-info { display: flex; flex-direction: column; gap: 0.5rem; color: var(--color-slate-600); }
.legal-info strong { color: var(--color-slate-900); }

.legal-prose h3 { margin-top: 1.5rem; font-weight: 600; color: var(--color-slate-900); }
.legal-prose p { margin-top: 0.75rem; font-size: 0.9375rem; color: var(--color-slate-600); line-height: 1.7; }
.legal-prose a { color: var(--color-accent); text-decoration: none; }
.legal-prose a:hover { text-decoration: underline; }

.legal-updated { margin-top: 3rem; text-align: center; font-size: 0.875rem; color: var(--color-slate-500); }

/* ==========================================================================
   Advertising Page
   ========================================================================== */

.adv-stats { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.adv-stats__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .adv-stats__inner { grid-template-columns: repeat(4, 1fr); } }
.adv-stats__card { text-align: center; }
.adv-stats__value { font-family: var(--font-secondary); font-size: 2rem; font-weight: 700; color: var(--color-slate-900); }
.adv-stats__label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-slate-500); }

.adv-formats,
.adv-partners,
.adv-cta { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }

.adv-formats__grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .adv-formats__grid { grid-template-columns: repeat(2, 1fr); } }
.adv-format { padding: 2rem; transition: box-shadow 0.2s; }
.adv-format:hover { box-shadow: var(--shadow-glow); }
.adv-format__title { font-family: var(--font-secondary); font-size: 1.25rem; font-weight: 700; color: var(--color-slate-900); }
.adv-format__desc { margin-top: 0.75rem; color: var(--color-slate-600); }
.adv-format__features { margin-top: 1rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.adv-format__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-slate-700); }
.adv-format__dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.adv-format__footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.adv-format__price { font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); }

.adv-partners__list { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.adv-partners__item { padding: 1rem 2rem; font-weight: 600; color: var(--color-slate-600); }

.adv-cta__grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .adv-cta__grid { grid-template-columns: 1fr auto; } }
.adv-cta__grid h2 { font-family: var(--font-secondary); font-size: 1.875rem; font-weight: 700; }
.adv-cta__grid p { margin-top: 1rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.adv-cta__contacts { margin-top: 1.5rem; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); }
.adv-cta__contacts a { color: var(--color-white); text-decoration: none; }
.adv-cta__contacts a:hover { text-decoration: underline; }
.adv-cta__actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .adv-cta__actions { align-items: flex-end; } }

/* ==========================================================================
   Specials Page
   ========================================================================== */

.specials-featured { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.specials-featured__card { position: relative; display: block; height: 31.25rem; border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid rgba(255,255,255,0.7); box-shadow: var(--shadow-soft); text-decoration: none; color: var(--color-white); }
.specials-featured__card:hover .specials-featured__img { transform: scale(1.05); }
.specials-featured__card:hover .specials-featured__play { transform: scale(1.1); }
.specials-featured__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.specials-featured__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent); }
.specials-featured__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 5; }
.specials-featured__play span { width: 6rem; height: 6rem; border-radius: 50%; background: rgba(255,255,255,0.9); box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--color-slate-900); transition: transform 0.3s; }
.specials-featured__content { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 2rem; }
@media (min-width: 768px) { .specials-featured__content { padding: 3rem; } }
.specials-featured__badge { display: inline-block; width: fit-content; padding: 0.375rem 1rem; border-radius: 9999px; background: var(--color-red-500); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.specials-featured__title { margin-top: 1rem; font-family: var(--font-secondary); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; }
.specials-featured__desc { margin-top: 1rem; max-width: 40rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); }
.specials-featured__meta { margin-top: 1rem; display: flex; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.specials-filter { padding: 0 1.5rem 2rem; max-width: var(--max-width); margin: 0 auto; }
.specials-filter__inner { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.specials-grid-section { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.specials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .specials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }

.special-card { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid rgba(255,255,255,0.7); box-shadow: var(--shadow-soft); text-decoration: none; color: var(--color-white); transition: transform 0.2s, box-shadow 0.2s; }
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.special-card:hover .special-card__img { transform: scale(1.05); }
.special-card__img-wrap { position: absolute; inset: 0; }
.special-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.special-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent); }
.special-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.special-card:hover .special-card__play { opacity: 1; }
.special-card__play span { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--color-slate-900); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.special-card__body { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 1.5rem; }
.special-card__cat { display: inline-block; width: fit-content; padding: 0.25rem 0.75rem; border-radius: 9999px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); font-size: 0.75rem; font-weight: 500; }
.special-card__title { margin-top: 1rem; font-family: var(--font-secondary); font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.special-card__dur { margin-top: 0.75rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Video Archive Page
   ========================================================================== */

.archive-filter { padding: 0 1.5rem 2rem; max-width: var(--max-width); margin: 0 auto; }
.archive-filter__inner { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.archive-grid-section { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.archive-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .archive-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .archive-grid { grid-template-columns: repeat(4, 1fr); } }

.video-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: var(--color-slate-900); transition: transform 0.2s, box-shadow 0.2s; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.video-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover .video-card__thumb img { transform: scale(1.05); }
.video-card__play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.video-card:hover .video-card__play-overlay { opacity: 1; }
.video-card__play-circle { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; }
.video-card__play-circle span { margin-left: 2px; color: var(--color-slate-900); }
.video-card__duration { position: absolute; bottom: 0.75rem; right: 0.75rem; padding: 0.125rem 0.5rem; border-radius: var(--radius-sm); background: rgba(0,0,0,0.7); color: var(--color-white); font-size: 0.75rem; font-weight: 500; }
.video-card__cat-badge { position: absolute; bottom: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 500; color: var(--color-slate-700); }
.video-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.25rem; }
.video-card__title { font-family: var(--font-secondary); font-size: 0.875rem; font-weight: 600; line-height: 1.4; color: var(--color-slate-900); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-card__meta { margin-top: auto; padding-top: 1rem; font-size: 0.75rem; color: var(--color-slate-500); }

.archive-load-more { margin-top: 3rem; text-align: center; }

/* ==========================================================================
   News Archive Page
   ========================================================================== */

.page-hero__inner { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* --- News Category Dropdown --- */
.news-cat-dropdown { position: relative; margin-bottom: 0.5rem; }
.news-cat-dropdown__toggle {
	display: flex; align-items: center; gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border: none;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.15) 100%);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	box-shadow:
		inset 0 1px 1px rgba(255,255,255,0.7),
		inset 0 -1px 2px rgba(0,0,0,0.04),
		0 0 0 0.5px rgba(255,255,255,0.5),
		0 4px 16px -4px rgba(0,0,0,0.1);
	color: rgba(31,41,55,0.85);
	font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-cat-dropdown__toggle:hover {
	transform: translateY(-2px);
	background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255,255,255,0.9),
		0 0 0 0.5px rgba(255,255,255,0.6),
		0 0 20px rgba(255,255,255,0.2),
		0 8px 24px -6px rgba(0,0,0,0.15);
}
.news-cat-dropdown__toggle svg { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.news-cat-dropdown[data-open] .news-cat-dropdown__toggle svg { transform: rotate(180deg); }
.news-cat-dropdown[data-open] .news-cat-dropdown__toggle {
	background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 100%);
}

.news-cat-dropdown__menu {
	position: absolute; right: 0; top: calc(100% + 0.75rem);
	min-width: 440px; padding: 8px; margin: 0;
	list-style: none; z-index: 100;
	display: none;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
	backdrop-filter: blur(50px) saturate(220%);
	-webkit-backdrop-filter: blur(50px) saturate(220%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.6),
		inset 0 -1px 0 rgba(0,0,0,0.04),
		0 0 0 0.5px rgba(255,255,255,0.4),
		0 20px 60px -15px rgba(0,0,0,0.25),
		0 8px 24px -8px rgba(0,0,0,0.1);
	transform-origin: top right;
	animation: glassDropIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-cat-dropdown[data-open] .news-cat-dropdown__menu { display: grid; }

.news-cat-dropdown__item {
	display: block; padding: 0.55rem 0.875rem;
	border-radius: calc(var(--radius-xl) - 6px);
	text-decoration: none;
	color: rgba(31,41,55,0.8);
	font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-cat-dropdown__item:hover {
	background: rgba(255,255,255,0.5);
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.7), 0 1px 4px rgba(0,0,0,0.05);
	color: rgba(31,41,55,1);
	transform: scale(1.02);
}
.news-cat-dropdown__item--active {
	font-weight: 600;
	color: var(--color-primary);
	background: rgba(255,255,255,0.45);
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.7);
}

.news-grid-section { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.news-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- News Cards --- */
@keyframes glassCardIn {
	from { opacity: 0; transform: translateY(24px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes glassDropIn {
	from { opacity: 0; transform: translateY(-10px) scale(0.95); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes glassShimmer {
	0% { left: -40%; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { left: 110%; opacity: 0; }
}

.news-card {
	position: relative;
	display: flex; flex-direction: column; overflow: hidden; text-decoration: none;
	color: var(--color-slate-900);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	will-change: transform, box-shadow;
	isolation: isolate;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
	animation: glassCardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Stagger animation per card */
.news-card:nth-child(1) { animation-delay: 0s; }
.news-card:nth-child(2) { animation-delay: 0.05s; }
.news-card:nth-child(3) { animation-delay: 0.1s; }
.news-card:nth-child(4) { animation-delay: 0.15s; }
.news-card:nth-child(5) { animation-delay: 0.2s; }
.news-card:nth-child(6) { animation-delay: 0.25s; }
.news-card:nth-child(7) { animation-delay: 0.3s; }
.news-card:nth-child(8) { animation-delay: 0.35s; }
.news-card:nth-child(9) { animation-delay: 0.4s; }
.news-card:nth-child(n+10) { animation-delay: 0.45s; }

/* Gradient border — верхний свет */
.news-card::before {
	content: none;
}
.news-card:hover::before { content: none; }

/* Shimmer — равномерный блик слева направо */
.news-card::after {
	content: none;
}
.news-card:hover::after {
	content: none;
}
.news-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.news-card__thumb {
	position: relative;
	aspect-ratio: 16/9; overflow: hidden;
	margin: 0;
	border-radius: 1.5rem 1.5rem 0 0;
}
/* Glass overlay на фото */
.news-card__thumb::after {
	content: none;
}
.news-card__thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .news-card__thumb img { transform: scale(1.06); }

.news-card__body {
	flex: 1; padding: 0.9rem 1rem 1rem;
	position: relative; z-index: 1;
}
.news-card__meta { font-size: 0.75rem; color: var(--color-slate-500); letter-spacing: 0.01em; }
.news-card__title {
	margin-top: 0.5rem;
	font-family: var(--font-secondary); font-size: 1rem; font-weight: 700;
	color: var(--color-slate-900); line-height: 1.4;
	letter-spacing: -0.01em;
	transition: color 0.2s;
}
.news-card:hover .news-card__title { color: var(--color-primary); }
.news-card__excerpt { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-slate-600); line-height: 1.5; }

/* --- News Pagination --- */
.news-pagination { margin-top: 2.5rem; display: flex; justify-content: center; animation: glassCardIn 0.5s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.news-pagination .nav-links {
	display: flex; align-items: center; gap: 3px;
	padding: 5px;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.06) 100%);
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.6),
		inset 0 -1px 0 rgba(0,0,0,0.04),
		0 0 0 0.5px rgba(255,255,255,0.4),
		0 8px 32px -8px rgba(0,0,0,0.1);
}
.news-pagination .page-numbers {
	display: flex; align-items: center; justify-content: center;
	min-width: 2.5rem; height: 2.5rem;
	padding: 0 0.5rem;
	border-radius: calc(var(--radius-xl) - 4px);
	font-size: 14px; font-weight: 500;
	color: rgba(31,41,55,0.7);
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-pagination .page-numbers:hover {
	background: rgba(255,255,255,0.45);
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), 0 2px 6px rgba(0,0,0,0.06);
	color: rgba(31,41,55,1);
	transform: scale(1.08);
}
.news-pagination .page-numbers.current {
	background: rgba(255,255,255,0.5);
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.9), 0 2px 8px rgba(0,0,0,0.08);
	font-weight: 700;
	color: var(--color-primary);
}
.news-pagination .page-numbers.dots {
	color: rgba(31,41,55,0.3);
	pointer-events: none;
}
.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
	font-size: 18px; font-weight: 400;
}

/* ==========================================================================
   News Modal
   ========================================================================== */

.news-modal {
	position: fixed; inset: 0; z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	pointer-events: none;
}
.news-modal[aria-hidden="true"] { visibility: hidden; }
.news-modal--active { pointer-events: auto; }

/* Backdrop */
.news-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	opacity: 0;
	transition: opacity 0.35s ease;
}
.news-modal--active .news-modal__backdrop { opacity: 1; }

/* Container — белый с glass-рамкой */
.news-modal__container {
	position: relative;
	width: 92vw; max-width: 720px;
	max-height: 90vh;
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow:
		0 0 0 1px rgba(255,255,255,0.5),
		0 32px 80px -20px rgba(0,0,0,0.35),
		0 16px 40px -10px rgba(0,0,0,0.2);
	overflow: hidden;
	display: flex; flex-direction: column;
	opacity: 0;
	transform: translateY(30px) scale(0.96);
	transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-modal--active .news-modal__container {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Glass border — тонкий блик сверху */
.news-modal__container::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 40%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}

/* Close button — glass pill */
.news-modal__close {
	position: absolute; top: 1rem; right: 1rem; z-index: 10;
	width: 2.5rem; height: 2.5rem;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.8),
		0 2px 8px rgba(0,0,0,0.12);
	color: rgba(31,41,55,0.6);
	font-size: 1.5rem; line-height: 1;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-modal__close:hover {
	transform: scale(1.1);
	background: rgba(255,255,255,0.9);
	color: rgba(31,41,55,1);
	box-shadow: inset 0 1px 0 #fff, 0 4px 16px rgba(0,0,0,0.15);
}

/* Body — scrollable */
.news-modal__body {
	overflow-y: auto;
	overscroll-behavior: contain;
	flex: 1;
	-webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.news-modal__body::-webkit-scrollbar { width: 6px; }
.news-modal__body::-webkit-scrollbar-track { background: transparent; }
.news-modal__body::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.12);
	border-radius: 3px;
}
.news-modal__body::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

/* Loader */
.news-modal__loader {
	display: none;
	margin: 4rem auto;
	width: 2rem; height: 2rem;
	border: 3px solid rgba(0,0,0,0.08);
	border-top-color: var(--color-primary);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.news-modal--loading .news-modal__loader { display: block; }
.news-modal--loading .news-modal__content { display: none; }

/* Hero image */
.news-modal__hero {
	width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000; position: relative;
}
.news-modal__hero img {
	width: 100%; height: 100%; object-fit: cover;
}
.news-modal__hero--yt iframe,
.news-modal__hero--video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.news-modal__hero--video video-player,
.news-modal__hero--video video-skin { display: block; width: 100%; height: 100%; }
.news-modal__hero--video video { width: 100%; height: 100%; display: block; object-fit: contain; }

/* Header */
.news-modal__header { padding: 1.5rem 2rem 0; }
.news-modal__meta {
	font-size: 0.8rem; color: var(--color-slate-400); letter-spacing: 0.02em;
	text-transform: uppercase;
}
.news-modal__title {
	margin-top: 0.5rem;
	font-family: var(--font-secondary);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700; line-height: 1.3;
	color: var(--color-slate-900);
	letter-spacing: -0.02em;
}
.news-modal__lead {
	margin-top: 0.75rem;
	font-size: 1rem; color: var(--color-slate-500);
	line-height: 1.6;
	border-left: 3px solid var(--color-primary, #0066cc);
	padding-left: 1rem;
}

/* Content text */
.news-modal__text {
	padding: 1.5rem 2rem 2rem;
	font-size: 0.95rem; line-height: 1.75;
	color: var(--color-slate-700);
}
.news-modal__text p { margin-bottom: 1rem; }
.news-modal__text img { max-width: 100%; height: auto; border-radius: calc(var(--radius-xl) - 8px); margin: 1rem 0; }

/* Tags */
.news-modal__tags {
	padding: 0 2rem 2rem;
	display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.news-modal__tag {
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	background: var(--color-slate-100, #f1f5f9);
	font-size: 0.8rem; font-weight: 500;
	color: var(--color-slate-600);
	text-decoration: none;
	transition: all 0.2s;
}
.news-modal__tag:hover {
	background: var(--color-slate-200, #e2e8f0);
	color: var(--color-primary);
}

/* Progress bar */
.news-modal__progress {
	position: absolute; top: 0; left: 0; right: 0; height: 3px;
	z-index: 20;
	background: rgba(0,0,0,0.06);
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	overflow: hidden;
}
.news-modal__progress-bar {
	height: 100%; width: 0%;
	background: linear-gradient(90deg, var(--color-primary, #0066cc), #00aaff);
	border-radius: 0 2px 2px 0;
	transition: width 0.1s linear;
}

/* Nav arrows */
.news-modal__nav {
	position: fixed; top: 50%;
	transform: translateY(-50%);
	z-index: 10001;
	width: 3rem; height: 3rem;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.9),
		0 2px 12px rgba(0,0,0,0.15);
	color: var(--color-slate-700);
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-modal--active .news-modal__nav { opacity: 1; }
.news-modal__nav:hover {
	transform: translateY(-50%) scale(1.1);
	background: #fff;
	box-shadow: inset 0 1px 0 #fff, 0 4px 20px rgba(0,0,0,0.2);
}
.news-modal__nav--prev { left: max(1rem, calc((100vw - 720px) / 2 - 4.5rem)); }
.news-modal__nav--next { right: max(1rem, calc((100vw - 720px) / 2 - 4.5rem)); }
@media (max-width: 860px) {
	.news-modal__nav--prev { left: 0.5rem; }
	.news-modal__nav--next { right: 0.5rem; }
	.news-modal__nav { width: 2.5rem; height: 2.5rem; }
}

/* Share buttons */
.news-modal__share {
	display: flex; gap: 0.5rem; margin-top: 1rem;
}
.news-modal__share-btn {
	display: flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem;
	border: none;
	border-radius: 50%;
	background: var(--color-slate-100, #f1f5f9);
	color: var(--color-slate-500);
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
}
.news-modal__share-btn:hover {
	background: var(--color-slate-200, #e2e8f0);
	color: var(--color-primary);
	transform: scale(1.08);
}
.news-modal__copy-btn--done {
	background: #10b981 !important;
	color: #fff !important;
}

/* Related news */
.news-modal__related {
	padding: 0 2rem 2rem;
	border-top: 1px solid var(--color-slate-100, #f1f5f9);
	margin-top: 1.5rem;
	padding-top: 1.5rem;
}
.news-modal__related-title {
	font-family: var(--font-secondary);
	font-size: 1rem; font-weight: 700;
	color: var(--color-slate-900);
	margin-bottom: 1rem;
}
.news-modal__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
@media (max-width: 600px) {
	.news-modal__related-grid { grid-template-columns: 1fr; }
}
.news-modal__related-card {
	display: flex; flex-direction: column;
	text-decoration: none;
	border-radius: calc(var(--radius-xl) - 4px);
	overflow: hidden;
	background: var(--color-slate-50, #f8fafc);
	transition: all 0.2s;
}
.news-modal__related-card:hover {
	background: var(--color-slate-100, #f1f5f9);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.news-modal__related-thumb {
	aspect-ratio: 16/9; overflow: hidden;
}
.news-modal__related-thumb img {
	width: 100%; height: 100%; object-fit: cover;
}
.news-modal__related-info {
	padding: 0.75rem;
	display: flex; flex-direction: column; gap: 0.25rem;
}
.news-modal__related-date {
	font-size: 0.7rem; color: var(--color-slate-400);
	text-transform: uppercase; letter-spacing: 0.03em;
}
.news-modal__related-name {
	font-size: 0.8rem; font-weight: 600;
	color: var(--color-slate-800);
	line-height: 1.3;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ==========================================================================
   Single News
   ========================================================================== */

.single-news { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.single-news__grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .single-news__grid { grid-template-columns: 1fr 320px; } }

.single-news__hero { border-radius: var(--radius-2xl); overflow: hidden; margin-bottom: 1.5rem; }
.single-news__hero img { width: 100%; height: auto; display: block; }
.single-news__header { margin-bottom: 1.5rem; }
.single-news__meta { font-size: 0.875rem; color: var(--color-slate-500); }
.single-news__title { margin-top: 0.75rem; font-family: var(--font-secondary); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: var(--color-slate-900); line-height: 1.2; }
.single-news__lead { margin-top: 1rem; font-size: 1.125rem; color: var(--color-slate-600); line-height: 1.6; }
.single-news__content { padding: 2rem; }
.single-news__share { padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.single-news__share span { font-size: 0.875rem; font-weight: 600; color: var(--color-slate-700); }
.single-news__share-links { display: flex; gap: 0.5rem; }
.single-news__share-btn { padding: 0.375rem 1rem; border-radius: 9999px; background: var(--color-slate-100); color: var(--color-slate-600); font-size: 0.8125rem; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.single-news__share-btn:hover { background: var(--color-slate-200); }

.single-news__related h3 { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); margin-bottom: 1rem; }
.single-news__related-item { display: flex; gap: 0.75rem; text-decoration: none; color: var(--color-slate-900); margin-bottom: 1rem; }
.single-news__related-item:hover h4 { color: var(--color-accent); }
.single-news__related-thumb { width: 5rem; height: 3.5rem; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; }
.single-news__related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-news__related-item h4 { font-size: 0.875rem; font-weight: 600; line-height: 1.3; transition: color 0.2s; }
.single-news__related-item time { font-size: 0.75rem; color: var(--color-slate-500); }

/* ==========================================================================
   Projects Archive
   ========================================================================== */

.projects-filter { padding: 0 1.5rem 2rem; max-width: var(--max-width); margin: 0 auto; }
.projects-filter__inner { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.projects-grid-section { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.projects-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Project Archive Card — Liquid Glass --- */
.project-archive-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	color: var(--color-slate-900);
	border-radius: 1.75rem;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.5s ease;
	isolation: isolate;
	will-change: transform;
	animation: glassCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.project-archive-card::before {
	content: none;
}
.project-archive-card:hover::before {
	content: none;
}

.project-archive-card::after {
	content: none;
}
.project-archive-card:hover::after {
	content: none;
}

.project-archive-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Thumbnail — фото за стеклом */
.project-card__image-wrap,
.project-archive-card__thumb,
.sp-header__poster-glass {
	--project-poster-frame-padding: 0px;
	--project-poster-inner-radius: 6px;
	position: relative;
	border-radius: 0.9rem;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.7),
		inset 0 -0.5px 0 rgba(0,0,0,0.05),
		inset 0 0 0 0.5px rgba(255,255,255,0.15),
		0 2px 8px rgba(0,0,0,0.04),
		0 8px 28px rgba(0,0,0,0.07),
		0 20px 50px -10px rgba(0,0,0,0.10);
	padding: var(--project-poster-frame-padding);
}

.project-archive-card__thumb {
	margin: 0;
	border-radius: 0.9rem 0.9rem 0 0;
}
.project-card__image-wrap::after,
.project-archive-card__thumb::after {
	content: none;
}
.project-archive-card__thumb::before,
.project-card__image-wrap::before,
.sp-header__poster-glass::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: linear-gradient(175deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 30%, rgba(200,220,255,0.1) 60%, rgba(255,255,255,0.2) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}
.project-card__image,
.project-archive-card__thumb img,
.sp-header__poster-glass img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: var(--project-poster-inner-radius);
	display: block;
}

.project-archive-card__overlay { display: none; }

.project-archive-card__body {
	flex: 1;
	padding: 0.55rem 0.62rem 0.62rem;
	position: relative;
	z-index: 1;
}
.project-archive-card__body::before {
	content: none;
}
.project-archive-card__title {
	display: block;
	font-family: var(--font-secondary);
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--color-slate-900);
	transition: color 0.3s;
	margin: 0;
	padding: 0.72rem 0.82rem 0.78rem;
	border-radius: 0.95rem;
	background: rgba(255, 255, 255, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.75),
		0 8px 18px rgba(16, 24, 40, 0.06);
}
.project-archive-card:hover .project-archive-card__title {
	color: var(--color-primary);
	background: rgba(255, 255, 255, 0.72);
}
.project-archive-card__excerpt {
	display: none;
}

/* Pagination */
.projects-pagination { text-align: center; padding: 2rem 0 3rem; }

/* Staggered entrance */
.projects-grid .project-archive-card:nth-child(1)  { animation-delay: 0s; }
.projects-grid .project-archive-card:nth-child(2)  { animation-delay: 0.04s; }
.projects-grid .project-archive-card:nth-child(3)  { animation-delay: 0.08s; }
.projects-grid .project-archive-card:nth-child(4)  { animation-delay: 0.12s; }
.projects-grid .project-archive-card:nth-child(5)  { animation-delay: 0.16s; }
.projects-grid .project-archive-card:nth-child(6)  { animation-delay: 0.20s; }
.projects-grid .project-archive-card:nth-child(7)  { animation-delay: 0.24s; }
.projects-grid .project-archive-card:nth-child(8)  { animation-delay: 0.28s; }
.projects-grid .project-archive-card:nth-child(9)  { animation-delay: 0.32s; }
.projects-grid .project-archive-card:nth-child(10) { animation-delay: 0.36s; }
.projects-grid .project-archive-card:nth-child(11) { animation-delay: 0.40s; }
.projects-grid .project-archive-card:nth-child(12) { animation-delay: 0.44s; }
.projects-grid .project-archive-card:nth-child(n+13) { animation-delay: 0.48s; }

.projects-pagination { margin-top: 2rem; display: flex; justify-content: center; }

/* ==========================================================================
   Single Project
   ========================================================================== */

/* ==========================================================================
   Single Project — Liquid Glass
   ========================================================================== */

/* --- Header: poster left + info right --- */
.sp-header {
	padding: 2.65rem 1.5rem 2.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-header__inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2.5rem;
	align-items: start;
}
@media (max-width: 767px) {
	.sp-header__inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.sp-header__poster { max-width: 220px; }
}

/* Poster frame shares the same glass styling as archive cards above. */
/* Info */
.sp-header__info {
	padding-top: 0.5rem;
}
.sp-header__title {
	font-family: var(--font-secondary);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--color-slate-900);
}
.sp-header__desc {
	margin-top: 1rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--color-slate-600);
	max-width: 38rem;
}
.sp-header__tags {
	margin-top: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.sp-header__tag {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border-radius: var(--radius-pill);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--color-slate-600);
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.6);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 3px rgba(0,0,0,0.04);
}
.sp-header__actions {
	margin-top: 1.75rem;
	display: flex;
	gap: 0.75rem;
}
.sp-header__btn {
	display: inline-flex;
	align-items: center;
	padding: 0.7rem 1.75rem;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.sp-header__btn--primary {
	color: #fff;
	background: var(--color-slate-900);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.sp-header__btn--primary:hover {
	background: var(--color-slate-800);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- About section --- */
.sp-about {
	padding: 0 1.5rem 2.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-about__inner {
	position: relative;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	padding: 2rem 2.25rem;
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.6),
		inset 0 0 0 0.5px rgba(255,255,255,0.12),
		0 2px 8px rgba(0,0,0,0.03),
		0 8px 24px rgba(0,0,0,0.05);
}
.sp-about__inner::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(175deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.sp-about__heading {
	font-family: var(--font-secondary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-slate-900);
	margin-bottom: 1.25rem;
}
.sp-about__text {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-slate-700);
}

/* --- Hosts section --- */
.sp-hosts {
	padding: 0 1.5rem 2.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-hosts__heading {
	font-family: var(--font-secondary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-slate-900);
	margin-bottom: 1.25rem;
}
.sp-hosts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}
.sp-host-card {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: var(--color-slate-900);
	padding: 0.85rem 1rem;
	border-radius: var(--radius-xl);
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255,255,255,0.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 8px rgba(0,0,0,0.04);
	transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.sp-host-card:hover {
	transform: translateY(-3px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 6px 20px rgba(0,0,0,0.08);
}
.sp-host-card__avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.sp-host-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.sp-host-card__name {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
}
.sp-host-card__role {
	display: block;
	font-size: 0.75rem;
	color: var(--color-slate-500);
	margin-top: 0.15rem;
}

/* --- Episodes section --- */
.sp-episodes {
	padding: 0 1.5rem 3rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-episodes__heading {
	font-family: var(--font-secondary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-slate-900);
	margin-bottom: 1.25rem;
}
.sp-episodes__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .sp-episodes__grid { grid-template-columns: repeat(3, 1fr); } }
.sp-episode-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	color: var(--color-slate-900);
	border-radius: var(--radius-xl);
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255,255,255,0.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 8px rgba(0,0,0,0.04);
	transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.sp-episode-card:hover {
	transform: translateY(-4px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 24px rgba(0,0,0,0.08);
}
.sp-episode-card__thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	margin: 6px 6px 0;
	border-radius: calc(var(--radius-xl) - 4px);
}
.sp-episode-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.sp-episode-card:hover .sp-episode-card__thumb img { transform: scale(1.05); }
.sp-episode-card__body { padding: 0.85rem 1rem 1rem; }
.sp-episode-card__title { font-family: var(--font-secondary); font-weight: 700; font-size: 0.9rem; line-height: 1.35; }
.sp-episode-card__body time { font-size: 0.75rem; color: var(--color-slate-500); margin-top: 0.3rem; display: block; }

/* --- Shared section heading --- */
.sp-section-heading {
	font-family: var(--font-secondary);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-slate-900);
	margin-bottom: 1.25rem;
	letter-spacing: -0.01em;
}

/* --- Glass button variant --- */
.sp-header__btn--glass {
	color: var(--color-slate-700);
	background: rgba(255,255,255,0.35);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255,255,255,0.5);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 6px rgba(0,0,0,0.04);
}
.sp-header__btn--glass:hover {
	background: rgba(255,255,255,0.55);
	transform: translateY(-2px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 6px 18px rgba(0,0,0,0.08);
}

/* --- Featured Episode (latest) --- */
.sp-featured {
	padding: 0 1.5rem 2.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-featured__card {
	display: block;
	text-decoration: none;
	color: var(--color-slate-900);
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.6),
		inset 0 0 0 0.5px rgba(255,255,255,0.12),
		0 2px 8px rgba(0,0,0,0.03),
		0 8px 28px rgba(0,0,0,0.06);
	transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
	position: relative;
}
.sp-featured__card::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: linear-gradient(175deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 40%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}
.sp-featured__card:hover {
	transform: translateY(-4px);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.8),
		0 12px 36px rgba(0,0,0,0.09);
}
.sp-featured__thumb {
	position: relative;
	aspect-ratio: 21/9;
	overflow: hidden;
	margin: 7px 7px 0;
	border-radius: calc(var(--radius-xl) - 5px);
}
.sp-featured__thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sp-featured__card:hover .sp-featured__thumb img { transform: scale(1.04); }
.sp-featured__thumb::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.15) 100%);
	border-radius: inherit;
	pointer-events: none;
}
.sp-featured__play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	opacity: 0.85;
	transition: opacity 0.3s, transform 0.3s;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.sp-featured__card:hover .sp-featured__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}
.sp-featured__info {
	padding: 1.15rem 1.5rem 1.35rem;
	display: flex;
	align-items: baseline;
	gap: 1rem;
	flex-wrap: wrap;
}
.sp-featured__title {
	font-family: var(--font-secondary);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
}
.sp-featured__date {
	font-size: 0.8125rem;
	color: var(--color-slate-500);
}

/* --- Trailer --- */
.sp-trailer {
	padding: 0 1.5rem 2.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-trailer__frame-wrap {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 16/9;
	background: rgba(0,0,0,0.04);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.5),
		inset 0 0 0 0.5px rgba(255,255,255,0.1),
		0 2px 8px rgba(0,0,0,0.04),
		0 8px 28px rgba(0,0,0,0.07);
	padding: 7px;
}
.sp-trailer__frame-wrap::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: linear-gradient(175deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}
.sp-trailer__iframe {
	width: 100%; height: 100%;
	border: 0;
	border-radius: calc(var(--radius-xl) - 5px);
	display: block;
}
.sp-trailer__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-slate-600);
	text-decoration: none;
}

/* --- Team --- */
.sp-team {
	padding: 0 1.5rem 2.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.sp-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.25rem;
}
.sp-team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: var(--color-slate-900);
	padding: 1.5rem 1rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.6),
		inset 0 0 0 0.5px rgba(255,255,255,0.12),
		0 2px 8px rgba(0,0,0,0.03),
		0 6px 20px rgba(0,0,0,0.05);
	transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
	position: relative;
}
.sp-team-card::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(175deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.sp-team-card:hover {
	transform: translateY(-5px);
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.8),
		0 10px 32px rgba(0,0,0,0.08);
}
.sp-team-card__photo {
	width: 88px; height: 88px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08), inset 0 0 0 2px rgba(255,255,255,0.5);
}
.sp-team-card__photo img {
	width: 100%; height: 100%; object-fit: cover;
}
.sp-team-card__name {
	display: block;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.3;
}
.sp-team-card__role {
	display: block;
	font-size: 0.8rem;
	color: var(--color-slate-500);
	margin-top: 0.25rem;
}
/* reset button appearance */
button.sp-team-card {
	border: none;
	cursor: pointer;
	font: inherit;
}

/* --- Team Modal --- */
.sp-team-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s;
}
.sp-team-modal--active {
	pointer-events: auto;
	opacity: 1;
}
.sp-team-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.15);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.sp-team-modal__container {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 380px;
	text-align: center;
	padding: 2.5rem 2rem 2rem;
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow:
		0 4px 16px rgba(0,0,0,0.08),
		0 16px 48px rgba(0,0,0,0.12);
	transform: translateY(20px) scale(0.95);
	transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.sp-team-modal--active .sp-team-modal__container {
	transform: translateY(0) scale(1);
}
.sp-team-modal__container::before {
	content: '';
	position: absolute; inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: linear-gradient(175deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.25) 40%, rgba(200,220,255,0.1) 70%, rgba(255,255,255,0.2) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.sp-team-modal__close {
	position: absolute;
	top: 0.75rem; right: 0.75rem;
	width: 32px; height: 32px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	backdrop-filter: blur(8px);
	font-size: 1.25rem;
	line-height: 1;
	color: var(--color-slate-600);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.sp-team-modal__close:hover { background: rgba(255,255,255,0.7); }
.sp-team-modal__photo {
	width: 110px; height: 110px;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	background-size: cover;
	background-position: center;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1), inset 0 0 0 3px rgba(255,255,255,0.5);
}
.sp-team-modal__name {
	font-family: var(--font-secondary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-slate-900);
}
.sp-team-modal__role {
	font-size: 0.875rem;
	color: var(--color-slate-500);
	margin-top: 0.25rem;
}
.sp-team-modal__bio {
	margin-top: 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--color-slate-700);
}

/* ==========================================================================
   Watch / Single Video Page
   ========================================================================== */

.watch-page { padding: 0 1.5rem 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.watch-page__grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .watch-page__grid { grid-template-columns: 1fr 380px; } }

.watch-player { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-2xl); overflow: hidden; background: #0f172a; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.watch-player__poster { width: 100%; height: 100%; object-fit: cover; }
.watch-player__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.watch-player__center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 5; }
.watch-player__play-btn { width: 5rem; height: 5rem; border-radius: 50%; background: rgba(255,255,255,0.9); box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: transform 0.2s, background 0.2s; color: var(--color-slate-900); font-size: 1.5rem; }
.watch-player__play-btn:hover { transform: scale(1.1); background: var(--color-white); }
.watch-player__bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); z-index: 10; display: flex; align-items: center; gap: 1rem; }
.watch-player__progress { flex: 1; height: 0.25rem; border-radius: 9999px; background: rgba(255,255,255,0.3); }
.watch-player__progress-fill { width: 33%; height: 100%; border-radius: 9999px; background: var(--color-white); }

.watch-info { margin-top: 1.5rem; }
.watch-info__meta { font-size: 0.875rem; color: var(--color-slate-500); }
.watch-info__title { margin-top: 0.75rem; font-family: var(--font-secondary); font-size: clamp(1.25rem, 2.5vw, 2rem); font-weight: 700; color: var(--color-slate-900); }
.watch-info__content { margin-top: 1rem; }
.watch-info__actions { margin-top: 1.5rem; display: flex; gap: 1rem; }

.watch-related h3 { font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; color: var(--color-slate-900); margin-bottom: 1rem; }

/* Archive: Shows */
body.post-type-archive-show .page-wrapper,
body.post-type-archive-show .page-wrapper *,
body.post-type-archive-show .page-wrapper *::before,
body.post-type-archive-show .page-wrapper *::after {
	font-family: var(--font-primary) !important;
}

body.post-type-archive-show .project-archive-card__excerpt,
body.post-type-archive-show .project-archive-card__excerpt *,
body.post-type-archive-show time,
body.post-type-archive-show [datetime] {
	font-family: 'Arimo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-variant-numeric: normal !important;
	font-feature-settings: normal !important;
}
.watch-related__item { display: flex; gap: 0.75rem; text-decoration: none; color: var(--color-slate-900); margin-bottom: 1rem; }
.watch-related__item:hover h4 { color: var(--color-accent); }
.watch-related__thumb { width: 7rem; height: 4rem; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; }
.watch-related__thumb img { width: 100%; height: 100%; object-fit: cover; }
.watch-related__info h4 { font-size: 0.875rem; font-weight: 600; line-height: 1.3; transition: color 0.2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.watch-related__more { display: block; margin-top: 1rem; text-align: center; font-size: 0.875rem; font-weight: 500; color: var(--color-slate-600); text-decoration: none; }
.watch-related__more:hover { color: var(--color-slate-900); }

/* ==========================================================================
   Pagination
   ========================================================================== */


/* ==========================================================================
   Live Player Iframe
   ========================================================================== */

.live-player__iframe { border-radius: inherit; }

/* ==========================================================================
   No Results
   ========================================================================== */


/* ==========================================================================
   Show Info (single-show.php)
   ========================================================================== */

.show-info-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.show-info-grid {
		grid-template-columns: 1fr 300px;
	}
}

.show-info-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.show-info-item {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-line);
}

.show-info-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.show-info-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-slate-400);
	margin-bottom: 0.25rem;
}

.show-info-value {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-slate-900);
}

/* Single Project Tag */
.single-project__tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

/* Outline Button (light — for dark backgrounds) */
.btn--outline-light {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.5rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.25s ease;
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* ========================================================================
   Language Switcher
   ======================================================================== */

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-left: 0.5rem;
	padding: 0;
}

.lang-switcher__btn {
	padding: 0.5rem 0.7rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-radius: var(--radius-2xl);
	color: rgba(31, 41, 55, 0.45);
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-switcher__btn:hover {
	color: rgba(31, 41, 55, 0.75);
	background: rgba(255, 255, 255, 0.45);
}

.lang-switcher__btn--active {
	background: rgba(255, 255, 255, 0.6);
	color: rgba(31, 41, 55, 0.9);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.8),
		0 1px 3px rgba(0, 0, 0, 0.08);
}

.lang-switcher--mobile {
	margin-left: 0;
	margin-right: 0.5rem;
}

/* ========================================================================
   Search Button (Nav)
   ======================================================================== */
.site-nav__search {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 0.25rem;
	padding: 0.625rem;
	border: none;
	background: transparent;
	cursor: pointer;
	color: rgba(31, 41, 55, 0.7);
}

.site-nav__search-icon {
	width: 1.125rem;
	height: 1.125rem;
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-nav__search:hover .site-nav__search-icon {
	transform: scale(1.15);
}

.site-nav__search--mobile {
	padding: 0.5rem;
}

.site-nav__search--mobile .site-nav__search-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--color-slate-700);
}

/* ========================================================================
   Search Overlay
   ======================================================================== */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 20vh;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay--open {
	opacity: 1;
	visibility: visible;
}

.search-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.3);
	backdrop-filter: blur(16px) saturate(120%);
	-webkit-backdrop-filter: blur(16px) saturate(120%);
}

.search-overlay__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	padding: 0 var(--container-padding);
	transform: translateY(24px) scale(0.96);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.search-overlay--open .search-overlay__content {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.search-overlay__close {
	position: absolute;
	top: -3.5rem;
	right: var(--container-padding);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-overlay__close svg {
	width: 1.25rem;
	height: 1.25rem;
}

.search-overlay__close:hover {
	background: rgba(255, 255, 255, 0.35);
	transform: scale(1.1) rotate(90deg);
}

.search-overlay__close:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.search-overlay__item:focus-visible {
	outline: none;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 0 0 2px var(--color-accent);
}

.search-overlay__all:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px var(--color-accent);
}

.search-overlay__field {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 2px 4px rgba(255, 255, 255, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.6),
		0 20px 60px -15px rgba(0, 0, 0, 0.3);
}

.search-overlay__icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--color-slate-400);
	flex-shrink: 0;
	transition: color 0.25s ease;
}

.search-overlay__field:focus-within .search-overlay__icon {
	color: var(--color-accent);
}

.search-overlay__input {
	flex: 1;
	border: none;
	background: transparent;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--color-foreground);
	outline: none;
	caret-color: var(--color-accent);
}

.search-overlay__input::placeholder {
	color: var(--color-slate-400);
	font-weight: 400;
}

.search-overlay__kbd {
	flex-shrink: 0;
	padding: 0.2rem 0.5rem;
	font-family: var(--font-primary);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--color-slate-400);
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-sm);
	pointer-events: none;
}

.search-overlay__hint {
	margin-top: 1rem;
	text-align: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}

/* Dropdown results */
.search-overlay__dropdown {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.search-overlay__dropdown--visible {
	max-height: 28rem;
	overflow-y: auto;
	opacity: 1;
	margin-top: 0.75rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.55) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.2);
	padding: 0.5rem;
}

.search-overlay__loading {
	padding: 1.25rem;
	text-align: center;
	font-size: 0.9rem;
	color: var(--color-slate-500);
	animation: search-pulse 1.2s ease-in-out infinite;
}

@keyframes search-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.search-overlay__empty {
	padding: 1.25rem;
	text-align: center;
	font-size: 0.9rem;
	color: var(--color-slate-500);
}

.search-overlay__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.75rem;
	border-radius: var(--radius-md);
	text-decoration: none;
	color: var(--color-foreground);
	transition: background 0.15s ease;
}

.search-overlay__item:hover {
	background: rgba(255, 255, 255, 0.5);
}

.search-overlay__item-thumb {
	width: 3.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	object-fit: cover;
	background: var(--color-surface-muted);
}

.search-overlay__item-thumb--empty {
	display: block;
}

.search-overlay__item-body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.search-overlay__item-title {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-overlay__item-meta {
	font-size: 0.75rem;
	color: var(--color-slate-500);
}

.search-overlay__all {
	display: block;
	padding: 0.75rem;
	text-align: center;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-accent-strong);
	text-decoration: none;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-top: 0.25rem;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	transition: background 0.15s ease;
}

.search-overlay__all:hover {
	background: rgba(255, 255, 255, 0.4);
}

.search-overlay__form {
	display: contents;
}

@media (max-width: 639px) {
	.search-overlay {
		padding-top: 12vh;
	}

	.search-overlay__input {
		font-size: 1.1rem;
	}

	.search-overlay__kbd {
		display: none;
	}

	.search-overlay__dropdown--visible {
		max-height: 20rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.search-overlay__content {
		transition: opacity 0.15s ease;
		transform: none;
	}

	.search-overlay--open .search-overlay__content {
		transform: none;
	}

	.search-overlay__close:hover {
		transform: scale(1.1);
	}
}

/* ========================================================================
   404 Page
   ======================================================================== */

.error-404-page {
	padding: 6rem 0 3rem;
}

.error-404-page__inner {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 var(--page-padding);
}

.error-404-page__content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.error-404-page__code {
	font-size: 8rem;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--color-blue-500), var(--color-blue-700, #1d4ed8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.error-404-page__title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.error-404-page__desc {
	color: var(--color-slate-400);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.error-404-page__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.error-404-page__search {
	color: var(--color-slate-500);
	font-size: 0.875rem;
}

.error-404-page__search p {
	margin-bottom: 0.75rem;
}

.error-404-page__sections {
	padding: 3rem 0 4rem;
}

.error-404-page__sections-inner {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 var(--page-padding);
}

.error-404-page__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.error-404-page__card {
	padding: 1.5rem;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.error-404-page__card:hover {
	transform: translateY(-2px);
}

.error-404-page__card h3 {
	color: var(--color-white);
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.error-404-page__card p {
	color: var(--color-slate-400);
	font-size: 0.875rem;
}

/* ========================================================================
   Search Page
   ======================================================================== */

.search-page {
	padding: 2rem 0 4rem;
}

.search-page__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.search-page__header {
	margin-bottom: 1.5rem;
}

.search-page__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-foreground);
	margin-bottom: 0.5rem;
}

.search-page__count {
	color: var(--color-slate-500);
	font-size: 0.875rem;
}

.search-page__form {
	margin-bottom: 2rem;
}

.search-page__form .search-form {
	display: flex;
	gap: 0.75rem;
	max-width: 640px;
}

.search-page__form .search-field {
	flex: 1;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-surface-strong);
	background: var(--color-surface);
	color: var(--color-foreground);
	font-size: 1rem;
	font-family: var(--font-primary);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-page__form .search-field:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.search-page__form .search-submit {
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--color-blue-500);
	color: var(--color-white);
	border: none;
	font-weight: 600;
	font-family: var(--font-primary);
	cursor: pointer;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.search-page__form .search-submit:hover {
	background: var(--color-blue-700);
}

.search-results {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.search-result {
	display: flex;
	gap: 1.25rem;
	padding: 1.25rem;
	background: var(--color-surface);
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-surface-strong);
	text-decoration: none;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-result:hover {
	box-shadow: var(--shadow-card);
	border-color: var(--color-slate-300);
}

.search-result__thumb {
	flex-shrink: 0;
	width: 120px;
	height: 80px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-surface-muted);
}

.search-result__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.search-result__body {
	flex: 1;
	min-width: 0;
}

.search-result__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.4rem;
	font-size: 0.75rem;
	color: var(--color-slate-500);
}

.search-result__type {
	background: rgba(59, 130, 246, 0.1);
	color: var(--color-accent-strong);
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.search-result__title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
	line-height: 1.4;
}

.search-result__title a {
	color: var(--color-foreground);
	text-decoration: none;
	transition: color 0.2s ease;
}

.search-result__title a:hover {
	color: var(--color-accent-strong);
}

.search-result__excerpt {
	color: var(--color-slate-600);
	font-size: 0.875rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.search-page__pagination {
	margin-top: 2rem;
}

.search-page__empty {
	padding: 3rem;
	text-align: center;
	background: var(--color-surface);
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-surface-strong);
}

.search-page__empty p {
	color: var(--color-slate-500);
	margin-bottom: 1.5rem;
}

.search-page__suggestions h3 {
	color: var(--color-foreground);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.search-page__links {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 639px) {
	.search-result {
		flex-direction: column;
	}

	.search-result__thumb {
		width: 100%;
		height: 160px;
	}

	.search-page__form .search-form {
		flex-wrap: wrap;
	}

	.search-page__form .search-submit {
		width: 100%;
	}
}

/* ========================================================================
   Single Host
   ======================================================================== */

.single-host__hero {
	padding: 4rem 0 3rem;
}

.single-host__hero-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--page-padding);
	display: flex;
	gap: 3rem;
	align-items: flex-start;
	box-sizing: border-box;
}

.single-host__photo {
	flex-shrink: 0;
	width: min(320px, 100%);
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-xl, 1rem);
	overflow: hidden;
}

.single-host__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-host__photo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-slate-700), var(--color-slate-800));
}

.single-host__position {
	font-size: 0.875rem;
	color: var(--color-blue-400, #60a5fa);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.single-host__name {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-slate-900);
	margin-bottom: 1.5rem;
	line-height: 1.05;
}

.single-host__bio {
	color: var(--color-slate-700);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.single-host__info {
	min-width: 0;
	flex: 1 1 auto;
}

.single-host__social {
	display: flex;
	gap: 0.75rem;
}

.single-host__related {
	padding: 2rem 0 4rem;
}

.single-host__related-inner {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 var(--page-padding);
}

.single-host__others {
	padding: 1rem 0 4rem;
}

.single-host__others-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--page-padding);
}

.single-host__others-grid {
	margin-top: 1.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem;
}

.single-host__other-card {
	display: block;
	text-decoration: none;
	color: var(--color-slate-900);
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.single-host__other-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.single-host__other-photo {
	aspect-ratio: 4 / 5;
	background: rgba(226, 232, 240, 0.9);
}

.single-host__other-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.single-host__other-photo-placeholder {
	width: 100%;
	height: 100%;
	min-height: 260px;
	background: linear-gradient(180deg, rgba(226, 232, 240, 0.95) 0%, rgba(203, 213, 225, 0.95) 100%);
}

.single-host__other-body {
	padding: 0.85rem 1rem 1rem;
}

.single-host__other-name {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.25;
}

@media (max-width: 768px) {
	.single-host__hero-inner {
		flex-direction: column;
		align-items: center;
		text-align: left;
	}

	.single-host__photo {
		width: min(320px, 100%);
	}

	.single-host__name {
		font-size: 1.75rem;
	}

	.single-host__social {
		justify-content: flex-start;
	}

	.error-404-page__code {
		font-size: 5rem;
	}

	.error-404-page__actions {
		flex-direction: column;
		align-items: center;
	}

	.search-result {
		flex-direction: column;
	}

	.search-result__thumb {
		width: 100%;
		height: 160px;
	}
}

/* ========================================================================
   Video related show link
   ======================================================================== */

.watch-info__show {
	color: var(--color-slate-400);
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.watch-info__show a {
	color: var(--color-blue-400, #60a5fa);
	text-decoration: none;
	font-weight: 600;
}

.watch-info__show a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Scroll to Top
   ========================================================================== */
.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: var(--color-brand, #111827);
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-to-top--visible {
	opacity: 1;
	visibility: visible;
}
.scroll-to-top:hover {
	transform: translateY(-3px);
}

/* ==========================================================================
   Loading States
   ========================================================================== */
.loading {
	position: relative;
	min-height: 100px;
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.3s;
}
.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	border: 3px solid var(--color-line, #e2e8f0);
	border-top-color: var(--color-brand, #111827);
	border-radius: 50%;
	animation: otv-spin 0.7s linear infinite;
}
@keyframes otv-spin {
	to { transform: rotate(360deg); }
}

/* ==========================================================================
   Hero Slider Dots
   ========================================================================== */
.hero-slider__dots {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	padding: 1rem 0;
}
.hero-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.5);
	background: transparent;
	cursor: pointer;
	transition: background 0.3s, border-color 0.3s;
	padding: 0;
}
.hero-slider__dot--active {
	background: #fff;
	border-color: #fff;
}

/* ==========================================================================
   Mobile Menu Open State
   ========================================================================== */
.mobile-menu {
	display: none;
}
.mobile-menu--open {
	display: block;
}
body.menu-open,
body.search-open {
	overflow: hidden;
}

/* ==========================================================================
   Form Messages
   ========================================================================== */
.form-message {
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
}
.form-message--success {
	background: rgba(16, 185, 129, 0.1);
	color: var(--color-emerald-600);
}
.form-message--error {
	background: rgba(239, 68, 68, 0.1);
	color: #dc2626;
}

/* ==========================================================================
   Search Form
   ========================================================================== */
.search-form {
	display: flex;
	gap: 0.75rem;
	max-width: 600px;
}
.search-form__input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-line, #e2e8f0);
	border-radius: 0.75rem;
	font-size: 1rem;
	background: var(--color-surface, #fff);
	color: var(--color-foreground, #0f172a);
}
.search-form__input:focus {
	outline: none;
	border-color: var(--color-brand, #111827);
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}
.search-form__btn {
	white-space: nowrap;
}

/* Skip navigation link (accessibility) */
.skip-nav {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 10000;
}
.skip-nav:focus {
	position: fixed;
	top: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	height: auto;
	padding: 0.75rem 1.5rem;
	background: var(--color-brand, #111827);
	color: #fff;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Breadcrumb list (Schema.org compatible) */
.breadcrumb__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}
.breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

/* ==========================================================================
   Table Styles (entry-content)
   ========================================================================== */
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.95rem;
}
.entry-content table th,
.entry-content table td {
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-line, #e2e8f0);
	text-align: left;
}
.entry-content table th {
	background: var(--color-surface-muted, #eef1f7);
	font-weight: 600;
}
.entry-content table tbody tr:nth-child(even) {
	background: var(--color-surface-muted, #eef1f7);
}
.entry-content table tbody tr:hover {
	background: var(--color-surface-strong, #e2e8f0);
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	padding: 1rem 1.5rem;
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
.cookie-banner__text {
	flex: 1;
}
.cookie-banner__text a {
	color: var(--color-accent, #3b82f6);
	text-decoration: underline;
}
.cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}
.cookie-banner__btn {
	padding: 0.5rem 1.25rem;
	border: none;
	border-radius: var(--radius-pill, 9999px);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s;
}
.cookie-banner__btn--accept {
	background: var(--color-accent, #3b82f6);
	color: #fff;
}
.cookie-banner__btn--decline {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}
.cookie-banner__btn:hover {
	opacity: 0.85;
}
@media (max-width: 640px) {
	.cookie-banner {
		flex-direction: column;
		text-align: center;
	}
	.cookie-banner__actions {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   Breaking News Ticker
   ========================================================================== */
.breaking-news {
	width: 100%;
	background: var(--color-red-600, #dc2626);
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 2.5rem;
	font-size: 0.875rem;
	font-weight: 500;
}
body.has-breaking-news {
	padding-top: 2.5rem;
}
.breaking-news__badge {
	flex-shrink: 0;
	padding: 0 1rem;
	height: 100%;
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.25);
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	z-index: 1;
}
.breaking-news__ticker {
	flex: 1;
	overflow: hidden;
	position: relative;
	height: 100%;
}
.breaking-news__track {
	display: flex;
	align-items: center;
	height: 100%;
	white-space: nowrap;
	animation: ticker-scroll 20s linear infinite;
	gap: 3rem;
	padding-left: 100%;
}
.breaking-news__item {
	color: inherit;
	text-decoration: none;
	flex-shrink: 0;
}
a.breaking-news__item:hover {
	text-decoration: underline;
}
@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--color-line, rgba(15, 23, 42, 0.08));
	border-radius: var(--radius-xl, 1.5rem);
	padding: 2.5rem 2rem;
	max-width: 640px;
	margin: 2rem auto;
	text-align: center;
	box-shadow: var(--shadow-card);
}
.newsletter-section__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.newsletter-section__desc {
	color: var(--color-slate-500, #64748b);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}
.newsletter-section__form {
	display: flex;
	gap: 0.75rem;
	max-width: 460px;
	margin: 0 auto;
}
.newsletter-section__input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-line, #e2e8f0);
	border-radius: var(--radius-md, 0.75rem);
	font-size: 0.95rem;
	background: var(--color-surface, #fff);
	color: var(--color-foreground, #0f172a);
}
.newsletter-section__input:focus {
	outline: none;
	border-color: var(--color-accent, #3b82f6);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.newsletter-section__btn {
	padding: 0.75rem 1.5rem;
	background: var(--color-accent, #3b82f6);
	color: #fff;
	border: none;
	border-radius: var(--radius-md, 0.75rem);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}
.newsletter-section__btn:hover {
	background: var(--color-accent-strong, #2563eb);
}
@media (max-width: 480px) {
	.newsletter-section__form {
		flex-direction: column;
	}
	.newsletter-section__btn {
		width: 100%;
	}
}

/* ==========================================================================
   Dark Mode
   ========================================================================== */
@media (prefers-color-scheme: dark) {
	:root {
		--color-background: #0f0f0f;
		--color-foreground: #e0e0e0;
		--color-surface: #1a1a1a;
		--color-surface-muted: #252525;
		--color-surface-strong: #303030;
		--color-line: rgba(255, 255, 255, 0.1);
		--color-glow: rgba(96, 165, 250, 0.16);
		--color-brand: #e0e0e0;
		--color-brand-strong: #ffffff;
		--color-accent: #60a5fa;
		--color-accent-soft: #1e3a5f;
		--color-accent-strong: #3b82f6;
		--color-slate-100: #1e1e1e;
		--color-slate-200: #2a2a2a;
		--color-slate-400: #888;
		--color-slate-500: #999;
		--color-slate-600: #aaa;
		--color-slate-700: #bbb;
		--color-slate-900: #e0e0e0;
		--color-white: #1a1a1a;
		--color-red-400: #f87171;
		--color-red-500: #ef4444;
		--color-red-600: #dc2626;
		--color-emerald-500: #34d399;
		--color-emerald-600: #10b981;
		--shadow-soft: 0 18px 45px -30px rgba(0, 0, 0, 0.6);
		--shadow-glow: 0 0 0 1px rgba(96, 165, 250, 0.25), 0 0 30px rgba(96, 165, 250, 0.15);
		--shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
	}

	html {
		color-scheme: dark;
	}

	body {
		background:
			radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.06), transparent 55%),
			radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.04), transparent 45%),
			var(--color-background);
	}

	img {
		opacity: 0.9;
	}

	.newsletter-section {
		background: rgba(30, 30, 30, 0.7);
	}
}

/* ==========================================================================
   Hover / Focus States
   ========================================================================== */
.about-leadership__card,
.about-stats__card,
.team-dept,
.coverage-regions__card,
.complaints-standards__card,
.careers-benefits__card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-leadership__card:hover,
.about-stats__card:hover,
.team-dept:hover,
.coverage-regions__card:hover,
.complaints-standards__card:hover,
.careers-benefits__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.faq-item__question:hover {
	background: rgba(255,255,255,0.05);
}

.schedule-days__btn:focus-visible {
	outline: 2px solid var(--color-blue-500);
	outline-offset: 2px;
}


/* ==========================================================================
   Utility Classes
   ========================================================================== */
.hidden { display: none; }
.iframe-fill { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   No Thumbnail Background
   ========================================================================== */
.no-thumbnail-bg {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	min-height: 320px;
}

/* ==========================================================================
   Avatar Styles
   ========================================================================== */
.about-leadership__avatar,
.team-card__avatar {
	background-size: cover;
	background-position: center;
}

/* ==========================================================================
   Responsive: Single Column on Small Screens
   ========================================================================== */
@media (max-width: 639px) {
	.archive-grid { grid-template-columns: 1fr; }
	.team-grid--3 { grid-template-columns: 1fr; }
	.team-grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	body {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 12pt;
		line-height: 1.5;
	}

	header,
	footer,
	nav,
	.scroll-to-top,
	.cookie-banner,
	.breaking-news,
	.breadcrumb,
	.social-links,
	.newsletter-section,
	button,
	.btn {
		display: none !important;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 0.85em;
		color: #555 !important;
	}

	a[href^="#"]::after,
	a[href^="javascript:"]::after {
		content: "";
	}

	h2 {
		page-break-before: always;
	}

	h1, h2, h3 {
		page-break-after: avoid;
	}

	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}

	.entry-content {
		max-width: 100%;
	}
}

/* ==========================================================================
   CJM Fixes
   ========================================================================== */

/* Newsletter inline form on single pages */
.single-news__newsletter {
	margin-top: var(--spacing-2xl);
	padding: var(--spacing-2xl);
	text-align: center;
}
.single-news__newsletter h3 {
	margin-bottom: var(--spacing-sm);
	font-size: 1.25rem;
}
.single-news__newsletter p {
	color: var(--color-slate-500);
	margin-bottom: var(--spacing-base);
}
.newsletter-form--inline {
	display: flex;
	gap: var(--spacing-sm);
	max-width: 28rem;
	margin: 0 auto;
}
.newsletter-form--inline input[type="email"] {
	flex: 1;
	padding: 0.625rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	font-size: 0.875rem;
}

/* Back to news link */
.single-news__back-link {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	margin-top: var(--spacing-xl);
	font-weight: 600;
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.2s;
}
.single-news__back-link:hover {
	color: var(--color-accent-strong);
}

/* Copy link button */
.single-news__copy-link {
	cursor: pointer;
	border: 1px solid var(--color-line);
	background: var(--color-surface);
	border-radius: var(--radius-sm);
	padding: 0.375rem 0.75rem;
	font-size: 0.8125rem;
	transition: background 0.2s;
}
.single-news__copy-link:hover {
	background: var(--color-surface-muted);
}

/* Form SLA text */
.contacts-form__sla {
	margin-top: var(--spacing-sm);
	font-size: 0.8125rem;
	color: var(--color-slate-400);
}

/* Advertising form section */
.adv-form-section {
	padding: var(--spacing-4xl) 0;
}
.adv-form-section__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

/* Schedule export row */
.schedule-export {
	display: flex;
	gap: var(--spacing-base);
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5rem;
}

/* Archive search bar */
.archive-search {
	padding: var(--spacing-xl) 0 0;
}
.archive-search__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.archive-search__form {
	display: flex;
	gap: var(--spacing-sm);
	max-width: 32rem;
}
.archive-search__input {
	flex: 1;
	padding: 0.625rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	font-size: 0.875rem;
	color: var(--color-text);
}

/* AJAX loading state */
.loading {
	position: relative;
	opacity: 0.5;
	pointer-events: none;
}
.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2rem;
	height: 2rem;
	margin: -1rem 0 0 -1rem;
	border: 3px solid var(--color-line);
	border-top-color: var(--color-accent);
	border-radius: 50%;
	animation: otv-spin 0.6s linear infinite;
}
@keyframes otv-spin {
	to { transform: rotate(360deg); }
}

/* Schedule title links */
.schedule-list__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}
.schedule-list__title a:hover {
	color: var(--color-accent);
}

/* Video unavailable */
.watch-player__unavailable {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--color-slate-400);
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
}

/* Schedule genre filter */
.schedule-genre-filter {
	padding: 0 1.5rem 1.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}
.schedule-genre-filter__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* Careers apply form section */
.careers-apply {
	padding: var(--spacing-4xl) 0;
}
.careers-apply__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

/* Textarea character counter */
.textarea-counter {
	display: block;
	margin-top: var(--spacing-xs);
	font-size: 0.75rem;
	color: var(--color-slate-400);
	text-align: right;
}
.textarea-counter--warn {
	color: var(--color-warning, #e67e22);
}

/* ==========================================================================
   Content Strategy Fixes
   ========================================================================== */

/* News Tags */
.single-news__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}
.single-news__tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background: var(--color-surface-muted);
	color: var(--color-slate-600);
	font-size: 0.8125rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.single-news__tag:hover {
	background: var(--color-accent);
	color: var(--color-white);
}

/* ==========================================================================
   News Video Player — container only, Video.js default skin
   ========================================================================== */

.news-player {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	background: #000;
	margin-bottom: 1.5rem;
	aspect-ratio: 16 / 9;
	position: relative;
}

/* YouTube iframe */
.news-player--yt {
	position: relative;
}

/* Video.js HTML web components */
.news-player video-player,
.news-player video-skin {
	display: block;
	width: 100%;
	height: 100%;
}
.news-player video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* 404 Page */
.error-404-page { padding: 4rem 0 2rem; text-align: center; }
.error-404-page__inner { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.error-404-page__code {
	font-size: 6rem;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--color-accent), var(--color-blue-700));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.error-404-page__title { font-size: 1.75rem; margin: 1rem 0 0.5rem; }
.error-404-page__desc { color: var(--color-slate-500); margin-bottom: 1.5rem; }
.error-404-page__actions { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.error-404-page__search { margin-top: 1.5rem; }
.error-404-page__search p { color: var(--color-slate-500); font-size: 0.875rem; margin-bottom: 0.75rem; }
.error-404-page__sections { padding: 2rem 0 4rem; }
.error-404-page__sections-inner { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
.error-404-page__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.error-404-page__card {
	display: block;
	padding: 1.5rem;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}
.error-404-page__card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.error-404-page__card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.error-404-page__card p { font-size: 0.8125rem; color: var(--color-slate-500); }

/* Searchform */
.search-form { display: flex; gap: 0.5rem; }
.search-field {
	flex: 1;
	padding: 0.625rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg, 0.75rem);
	font-size: 0.9375rem;
	background: var(--color-surface);
	color: var(--color-foreground);
}
.search-field:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-glow); }
.search-submit {
	padding: 0.625rem 1.25rem;
	background: var(--color-accent);
	color: var(--color-white);
	border: none;
	border-radius: var(--radius-lg, 0.75rem);
	font-size: 0.9375rem;
	cursor: pointer;
	transition: background 0.2s;
}
.search-submit:hover { background: var(--color-accent-strong); }

/* Show info grid on single-show */
.show-info-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 1.5rem;
	align-items: start;
}
.show-info-sidebar .show-info-item { padding: 0.75rem 0; border-bottom: 1px solid var(--color-line); }
.show-info-sidebar .show-info-item:last-child { border-bottom: none; }
.show-info-label { font-size: 0.75rem; color: var(--color-slate-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem; }
.show-info-value { font-size: 1rem; font-weight: 600; }

/* Episodes grid */
.episodes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}
.episode-card { display: block; text-decoration: none; color: inherit; transition: transform 0.2s; }
.episode-card:hover { transform: translateY(-2px); }
.episode-card__thumb { border-radius: 0.5rem; overflow: hidden; aspect-ratio: 16/9; }
.episode-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.episode-card__body { padding: 0.75rem 0; }
.episode-card__body h3 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.episode-card__body time { font-size: 0.75rem; color: var(--color-slate-500); }

/* Team grid */
.team-grid { display: grid; gap: 1.5rem; }
.team-grid--4 { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem; text-decoration: none; color: inherit; transition: transform 0.2s; }
.team-card:hover { transform: translateY(-2px); }
.team-card__avatar {
	width: 80px; height: 80px;
	border-radius: 50%;
	background: var(--color-surface-muted) center/cover no-repeat;
	margin-bottom: 0.75rem;
}
.team-card__name { font-size: 1rem; font-weight: 600; margin-bottom: 0.125rem; }
.team-card__role { font-size: 0.8125rem; color: var(--color-slate-500); }

@media (max-width: 768px) {
	.show-info-grid { grid-template-columns: 1fr; }
	.error-404-page__code { font-size: 4rem; }
	.search-result { flex-direction: column; }
	.search-result__thumb { width: 100%; height: 160px; }
}

/* ==========================================================================
   Project Header — "О проекте" Glass Card
   ========================================================================== */
.sp-header__about {
	position: relative;
	margin-top: 1.25rem;
	max-width: 42rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(240,246,255,0.08) 100%);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	padding: 1.75rem 2rem;
	box-shadow:
		inset 0 1.5px 0 rgba(255,255,255,0.6),
		inset 0 0 0 0.5px rgba(255,255,255,0.12),
		0 2px 8px rgba(0,0,0,0.03),
		0 8px 24px rgba(0,0,0,0.05);
}
.sp-header__about::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(175deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.sp-header__about-title {
	font-family: var(--font-secondary);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-slate-900);
	margin: 0 0 0.85rem;
}
.sp-header__about-text {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-slate-700);
}
.sp-header__about-text p { margin: 0 0 0.85rem; }
.sp-header__about-text p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Mobile Menu Toolbar (search, darkmode, lang inside mobile menu)
   ========================================================================== */
.mobile-menu__toolbar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.mobile-menu__tool-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.875rem;
	border: none;
	border-radius: var(--radius-xl);
	background: rgba(148, 163, 184, 0.08);
	color: var(--color-slate-600);
	font-size: 0.8125rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.mobile-menu__tool-btn:hover,
.mobile-menu__tool-btn:active {
	background: rgba(148, 163, 184, 0.16);
	color: var(--color-slate-900);
}

.mobile-menu__tool-btn svg {
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
}

.mobile-menu__tool-lang {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	margin-left: auto;
	padding: 0.25rem;
	border-radius: var(--radius-xl);
	background: rgba(148, 163, 184, 0.08);
}

.mobile-menu__tool-lang .lang-switcher__btn {
	padding: 0.5rem 0.625rem;
	font-size: 0.6875rem;
}

/* Dark mode: mobile menu panel */
html[data-theme="dark"] .mobile-menu__panel {
	background: rgba(30, 41, 59, 0.95);
	border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .mobile-menu__toolbar {
	border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mobile-menu__tool-btn {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .mobile-menu__tool-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

html[data-theme="dark"] .mobile-menu__tool-lang {
	background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Mobile Slider — full-width, no nav overlap, compact previews
   ========================================================================== */
@media (max-width: 767px) {
	/* Remove nav overlap — slider sits below header */
	body.otv-front-hero-page .page-wrapper {
		padding-top: var(--nav-height) !important;
	}

	body.otv-front-hero-page .hero-slider,
	.hero-slider {
		height: auto !important;
		top: 0 !important;
		margin-bottom: 0 !important;
		overflow: hidden;
	}

	body.otv-front-hero-page .hero-slider__slide,
	.hero-slider__slide {
		height: auto !important;
		aspect-ratio: 16 / 9 !important;
		min-width: 100%;
	}

	.hero-slider__slide img {
		object-fit: cover;
		object-position: center top;
	}

	/* Preview nav: below slider, outside overflow */
	.hero-slider__preview-nav {
		position: static !important;
		display: flex;
		justify-content: center;
		padding: 8px 0;
		gap: 0;
		background: linear-gradient(to bottom, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.25));
	}

	/* Hide arrows */
	.hero-slider__preview-arrow {
		display: none !important;
	}

	/* All previews in a row */
	.hero-slider__previews-window {
		width: auto !important;
		flex: 0 1 auto !important;
		overflow: visible !important;
	}

	.hero-slider__previews {
		display: flex !important;
		flex-wrap: nowrap !important;
		justify-content: center;
		gap: 4px !important;
		transform: none !important;
	}

	.hero-slider__preview {
		flex: 0 0 auto !important;
		width: 28px !important;
		height: 38px !important;
		border-radius: 5px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
		opacity: 0.5;
		transition: all 0.25s ease;
	}

	.hero-slider__preview--active {
		opacity: 1;
		transform: scale(1.15);
		box-shadow:
			0 0 0 1.5px rgba(255, 255, 255, 0.85),
			0 3px 8px rgba(0, 0, 0, 0.3);
	}

	.hero-slider__dots {
		display: none;
	}
}

@media (max-width: 479px) {
	.hero-slider__preview {
		width: 24px !important;
		height: 32px !important;
		border-radius: 4px;
	}

	.hero-slider__previews {
		gap: 3px !important;
	}
}

/* ==========================================================================
   Schedule — Mobile Adaptive
   ========================================================================== */
@media (max-width: 479px) {
	/* Day selector: compact pills, fit all 7 days */
	.schedule-days { padding: 0 0.75rem 1rem; }
	.schedule-days__list {
		gap: 0.25rem;
		padding: 0.25rem 0 0.5rem;
		justify-content: space-between;
	}
	.schedule-days__btn {
		min-width: 0;
		flex: 1 1 0;
		padding: 0.5rem 0.25rem;
		border-radius: 12px;
	}
	.schedule-days__label { font-size: 0.625rem; }
	.schedule-days__num { font-size: 0.875rem; margin-top: 0.125rem; }
	.schedule-days__today { font-size: 0.5rem; margin-top: 0.125rem; }

	/* Schedule list: tighter padding */
	.schedule-list { padding: 0 0.75rem 1.5rem; }

	/* Schedule rows: stack time + content vertically */
	.schedule-list__card { gap: 0.4rem; }

	.schedule-list__row {
		flex-wrap: wrap;
		gap: 0 0.75rem;
		padding: 0.65rem 0.75rem;
		border-radius: 14px;
		align-items: center;
	}

	/* Time: inline, compact */
	.schedule-list__time-overlay,
	.schedule-list__time {
		width: auto;
		font-size: 1.1rem;
		font-weight: 700;
		flex-shrink: 0;
	}

	/* Content: fills remaining space */
	.schedule-list__content {
		flex: 1 1 0;
		min-width: 0;
		gap: 0.375rem;
	}

	.schedule-list__title {
		font-size: 0.8125rem;
		font-weight: 600;
		line-height: 1.25;
	}

	.schedule-list__live-badge {
		padding: 0.125rem 0.5rem;
		font-size: 0.6rem;
	}

	.schedule-list__cat {
		font-size: 0.6rem;
		padding: 0.125rem 0.5rem;
	}

	/* Poster: smaller */
	.schedule-list__poster {
		width: 3rem;
		border-radius: 10px;
		order: -1;
	}

	/* Page hero: compact */
	.page-hero__title { font-size: 1.75rem; }
}

@media (max-width: 639px) and (min-width: 480px) {
	.schedule-days { padding: 0 1rem 1.25rem; }
	.schedule-days__list { gap: 0.375rem; }
	.schedule-days__btn {
		min-width: 3.5rem;
		padding: 0.625rem 0.5rem;
	}

	.schedule-list { padding: 0 1rem 2rem; }
	.schedule-list__card { gap: 0.5rem; }

	.schedule-list__row {
		gap: 0.75rem;
		padding: 0.75rem 1rem;
		border-radius: 16px;
	}

	.schedule-list__time-overlay,
	.schedule-list__time {
		width: auto;
		font-size: 1.5rem;
	}

	.schedule-list__title {
		font-size: 0.9375rem;
	}

	.schedule-list__poster {
		width: 3.5rem;
		border-radius: 12px;
	}
}

/* ==========================================================================
   Footer — Mobile Compact
   ========================================================================== */
@media (max-width: 639px) {
	.site-footer {
		margin: 2rem 0.5rem 0;
		border-radius: 20px;
	}

	.site-footer__inner {
		gap: 1.25rem;
		padding: 1.5rem 1.25rem;
	}

	/* Top: logo + copyright inline, tighter */
	.site-footer__top {
		gap: 1.25rem;
	}

	.site-footer__company-logo img {
		height: 2rem;
	}

	.site-footer__copyright {
		margin-top: 0.25rem;
		font-size: 0.75rem;
		line-height: 1.4;
	}

	/* Nav: 3 columns side by side on mobile */
	.site-footer__nav {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.75rem;
	}

	.site-footer__nav-heading {
		font-size: 0.5625rem;
		letter-spacing: 0.18em;
		margin-bottom: 0;
	}

	.site-footer__nav-list {
		margin-top: 0.5rem;
		gap: 0.375rem;
	}

	.site-footer__nav-link {
		font-size: 0.75rem;
	}

	/* Bottom: social + links compact */
	.site-footer__bottom {
		gap: 0.75rem;
		padding-top: 1rem;
	}

	.site-footer__social {
		gap: 0.75rem;
	}

	.site-footer__social-link {
		font-size: 0.75rem;
	}

	.site-footer__link {
		font-size: 0.75rem;
	}
}
