/**
 * WG TV-Programm v2.0 — Dashboard Layout
 * WatchGuide Dark Mode: #0d0d0d, #1a1a1a, #ff6b00
 */

/* === GP THEME OVERRIDES (page-id-35493 = TV-Programm) === */
/* Body + Page background */
body.page-id-35493,
body.page-id-35493 #page {
	background: #0d0d0d !important;
}
/* Header-Gap entfernen (wie Horrorfilme/Streaming Hub) */
body.page-id-35493 .site-header {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
/* #page: Remove the 84px fixed-header offset for this page.
   The hero absorbs the offset instead (like horror/streaming hubs). */
body.page-id-35493 #page,
body.page-id-35493 #page.grid-container,
body.page-id-35493 #page.container,
body.page-id-35493 .grid-container.site {
	padding-top: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	max-width: 100% !important;
}
/* All GP containers: transparent, no padding/margin */
body.page-id-35493 .site-content,
body.page-id-35493 .content-area,
body.page-id-35493 #content,
body.page-id-35493 .site-main,
body.page-id-35493 #primary {
	background: #0d0d0d !important;
	padding: 0 !important;
	margin: 0 !important;
}
body.separate-containers.page-id-35493 .inside-article,
body.separate-containers.page-id-35493 .site-main > *,
body.separate-containers.page-id-35493 article.page,
body.page-id-35493 .inside-article {
	background: #0d0d0d !important;
	background-color: #0d0d0d !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	box-shadow: none !important;
	max-width: 100% !important;
	width: 100% !important;
	float: none !important;
}
body.page-id-35493 .entry-content {
	background: #0d0d0d !important;
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}
body.page-id-35493 .site-content .content-area {
	max-width: 100% !important;
	width: 100% !important;
}
/* Hide GP page title H1 + entry-header (causes empty gap) */
body.page-id-35493 .entry-header,
body.page-id-35493 header.entry-header,
body.page-id-35493 .entry-title,
body.page-id-35493 .page-header {
	display: none !important;
	height: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 0 !important;
	font-size: 0 !important;
}
/* Footer nahtlos */
body.page-id-35493 .site-footer {
	margin-top: 0 !important;
	border-top: none !important;
}

/* === VARIABLES === */
:root {
	--tv-bg: #0d0d0d;
	--tv-surface: #161616;
	--tv-card: #1c1c1c;
	--tv-card-hover: #222;
	--tv-border: #2a2a2a;
	--tv-accent: #ff6b00;
	--tv-accent2: #ff8c33;
	--tv-text: #e0e0e0;
	--tv-muted: #888;
	--tv-dim: #555;
	--tv-green: #22c55e;
	--tv-red: #ef4444;
	--tv-blue: #3b82f6;
	--tv-radius: 8px;
	--tv-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* === APP CONTAINER === */
.wg-tv-app {
	font-family: var(--tv-font);
	color: var(--tv-text);
	background: var(--tv-bg);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	margin-top: 0 !important;
	padding-top: 0 !important;
}
.wg-tv-app *, .wg-tv-app *::before, .wg-tv-app *::after {
	box-sizing: border-box;
}

/* === HERO HEADER === */
.wg-tv-hero {
	position: relative;
	border-bottom: 1px solid var(--tv-border);
	padding: calc(var(--wg-header-h, 84px) + 6px) 0 16px;
	background: linear-gradient(135deg, #0d0d0d 0%, #1a0d00 100%);
	overflow: hidden;
}
.wg-tv-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 15% 40%, rgba(255,107,0,0.12) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 85% 30%, rgba(255,165,0,0.06) 0%, transparent 50%),
		radial-gradient(ellipse 50% 40% at 50% 80%, rgba(255,107,0,0.04) 0%, transparent 50%);
	pointer-events: none;
}
.wg-tv-hero-inner {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* Badge */
.wg-tv-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,107,0,0.12);
	border: 1px solid rgba(255,107,0,0.25);
	border-radius: 30px;
	padding: 5px 16px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--tv-accent);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}
.wg-tv-badge-icon {
	display: inline-block;
	animation: wg-tv-pulse 2s ease-in-out infinite;
}
@keyframes wg-tv-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}
/* Title */
.wg-tv-hero-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 6px;
	letter-spacing: -0.5px;
}
.wg-tv-hero-title a {
	color: inherit;
	text-decoration: none;
	background: none;
	-webkit-text-fill-color: unset;
}
.wg-tv-hero-title a:hover { color: var(--tv-accent); }
/* Gradient accent text */
.wg-tv-grad {
	background: linear-gradient(135deg, #ff6b00, #ffaa00);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.wg-tv-hero-sub {
	font-size: 0.9rem;
	color: var(--tv-muted);
	margin: 0;
}
/* Right side: clock + stats */
.wg-tv-hero-right {
	display: flex;
	align-items: center;
	gap: 28px;
}
/* Live Clock */
.wg-tv-hero-clock {
	text-align: center;
	padding-right: 28px;
	border-right: 1px solid var(--tv-border);
}
.wg-tv-clock-time {
	display: block;
	font-size: 2.2rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	background: linear-gradient(135deg, #ff6b00, #ffaa00);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.1;
}
.wg-tv-clock-label {
	font-size: 0.65rem;
	color: var(--tv-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}
/* Stats */
.wg-tv-hero-stats {
	display: flex;
	gap: 24px;
}
.wg-tv-stat { text-align: center; }
.wg-tv-stat-num {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
}
.wg-tv-stat-label {
	font-size: 0.65rem;
	color: var(--tv-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* === STICKY NAVBAR === */
.wg-tv-navbar {
	background: var(--tv-surface);
	border-bottom: 1px solid var(--tv-border);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 10px 0;
}
.wg-tv-navbar-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.wg-tv-date-nav {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
}
.wg-tv-date-nav::-webkit-scrollbar { display: none; }

.wg-tv-pill {
	background: var(--tv-card);
	color: var(--tv-text);
	border: 1px solid var(--tv-border);
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 0.8rem;
	font-family: var(--tv-font);
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.15s;
}
.wg-tv-pill:hover { border-color: var(--tv-accent); color: #fff; }
.wg-tv-pill.active { background: var(--tv-accent); color: #fff; border-color: var(--tv-accent); }

.wg-tv-date-prev, .wg-tv-date-next {
	padding: 6px 10px;
	font-weight: 700;
	font-size: 1rem;
}

.wg-tv-slot-nav {
	display: flex;
	gap: 2px;
	background: var(--tv-card);
	border-radius: 20px;
	padding: 2px;
	overflow-x: auto;
	scrollbar-width: none;
	flex-shrink: 0;
}
.wg-tv-slot-nav::-webkit-scrollbar { display: none; }
.wg-tv-slot-btn {
	background: transparent;
	color: var(--tv-muted);
	border: none;
	border-radius: 18px;
	padding: 6px 16px;
	font-size: 0.8rem;
	font-family: var(--tv-font);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}
.wg-tv-slot-btn:hover { color: #fff; }
.wg-tv-slot-btn.active { background: var(--tv-accent); color: #fff; }

/* === 3-COLUMN DASHBOARD === */
.wg-tv-dashboard {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 24px;
	display: grid;
	grid-template-columns: 200px 1fr 260px;
	gap: 20px;
	min-height: 600px;
}

/* === SIDEBARS === */
.wg-tv-sidebar {
	position: sticky;
	top: 60px;
	align-self: start;
	max-height: calc(100vh - 80px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--tv-border) transparent;
}
.wg-tv-sidebar-section {
	background: var(--tv-surface);
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	padding: 14px;
	margin-bottom: 12px;
}
.wg-tv-sidebar-title {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--tv-muted);
	margin: 0 0 10px;
}

/* Sender buttons */
.wg-tv-sender-groups, .wg-tv-genre-filter {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.wg-tv-sender-btn, .wg-tv-genre-btn {
	background: transparent;
	color: var(--tv-text);
	border: none;
	border-radius: 6px;
	padding: 7px 10px;
	font-size: 0.8rem;
	font-family: var(--tv-font);
	cursor: pointer;
	text-align: left;
	transition: all 0.15s;
}
.wg-tv-sender-btn:hover, .wg-tv-genre-btn:hover {
	background: var(--tv-card);
	color: #fff;
}
.wg-tv-sender-btn.active, .wg-tv-genre-btn.active {
	background: rgba(255,107,0,0.15);
	color: var(--tv-accent);
	font-weight: 600;
}

/* Toggle */
.wg-tv-toggle-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	color: var(--tv-text);
	cursor: pointer;
}
.wg-tv-toggle {
	width: 36px;
	height: 20px;
	appearance: none;
	background: var(--tv-border);
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: background 0.2s;
	flex-shrink: 0;
}
.wg-tv-toggle::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: transform 0.2s;
}
.wg-tv-toggle:checked { background: var(--tv-accent); }
.wg-tv-toggle:checked::after { transform: translateX(16px); }

/* === MAIN CONTENT === */
.wg-tv-main {
	min-width: 0;
}

/* Section */
.wg-tv-section {
	margin-bottom: 24px;
}
.wg-tv-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--tv-border);
}
.wg-tv-section-header h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}
.wg-tv-section-count {
	font-size: 0.75rem;
	color: var(--tv-muted);
	background: var(--tv-card);
	padding: 3px 10px;
	border-radius: 10px;
}

/* Live dot */
.wg-tv-live-dot {
	width: 8px;
	height: 8px;
	background: var(--tv-green);
	border-radius: 50%;
	display: inline-block;
	animation: tv-pulse 2s infinite;
}
@keyframes tv-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
	50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Section grid - card layout */
.wg-tv-section-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 10px;
}

/* === PROGRAMME CARD === */
.wg-tv-card {
	background: var(--tv-card);
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	padding: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	animation: tvCardIn 0.35s ease both;
}
@keyframes tvCardIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
.wg-tv-card:hover {
	border-color: var(--tv-accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.15);
}

/* Card with poster image */
.wg-tv-card--poster {
	display: flex;
	gap: 12px;
}
.wg-tv-card-poster {
	width: 60px;
	height: 85px;
	border-radius: 6px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--tv-border);
}
.wg-tv-card-body {
	flex: 1;
	min-width: 0;
}

/* Reviewed card - subtle accent glow */
.wg-tv-card--reviewed {
	border-color: rgba(255,107,0,0.3);
	background: linear-gradient(135deg, var(--tv-card) 0%, rgba(255,107,0,0.04) 100%);
}
.wg-tv-card--reviewed::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--tv-accent), var(--tv-accent2), transparent);
}

/* High-rated highlight card */
.wg-tv-card--highlight {
	border-color: rgba(255,107,0,0.5);
	box-shadow: 0 0 20px rgba(255,107,0,0.08);
}
.wg-tv-card--highlight::before {
	height: 3px;
	background: linear-gradient(90deg, var(--tv-accent), #ffd700, var(--tv-accent2));
}

.wg-tv-card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 6px;
}
.wg-tv-card-channel {
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--tv-accent);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.wg-tv-card-time {
	font-size: 0.72rem;
	color: var(--tv-muted);
	font-weight: 500;
}
.wg-tv-card-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 4px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.wg-tv-card-desc {
	font-size: 0.76rem;
	color: var(--tv-muted);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 8px;
}
.wg-tv-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}
.wg-tv-card-tags {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

/* Tags */
.wg-tv-tag {
	display: inline-block;
	padding: 2px 7px;
	border-radius: 4px;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.2px;
}
.wg-tv-tag-type { background: rgba(255,255,255,0.06); color: var(--tv-dim); }
.wg-tv-tag-review {
	background: linear-gradient(135deg, var(--tv-accent), var(--tv-accent2));
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.wg-tv-tag-live {
	background: var(--tv-green);
	color: #fff;
	animation: tvLivePulse 2s ease infinite;
}
@keyframes tvLivePulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

/* Rating circle */
.wg-tv-rating {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--tv-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--tv-accent);
	flex-shrink: 0;
	transition: all 0.2s;
}
.wg-tv-card:hover .wg-tv-rating {
	background: var(--tv-accent);
	color: #fff;
}
/* Top-rated golden ring */
.wg-tv-rating--top {
	border-color: #ffd700;
	color: #ffd700;
	box-shadow: 0 0 8px rgba(255,215,0,0.3);
}
.wg-tv-card:hover .wg-tv-rating--top {
	background: #ffd700;
	color: #000;
}

/* Progress bar */
.wg-tv-progress {
	height: 3px;
	background: var(--tv-border);
	border-radius: 2px;
	margin-top: 8px;
	margin-bottom: 10px;
	overflow: hidden;
}
.wg-tv-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--tv-accent), var(--tv-accent2));
	border-radius: 2px;
	transition: width 0.5s;
	position: relative;
}
.wg-tv-progress-bar::after {
	content: '';
	position: absolute;
	right: 0;
	top: -1px;
	width: 5px;
	height: 5px;
	background: var(--tv-accent);
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(255,107,0,0.6);
}

/* === RIGHT SIDEBAR: Tips === */
.wg-tv-tips-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.wg-tv-tip-card {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px;
	background: var(--tv-card);
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s;
}
.wg-tv-tip-card:hover { background: var(--tv-card-hover); }
.wg-tv-tip-poster {
	width: 40px;
	height: 56px;
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--tv-border);
}
.wg-tv-tip-info { min-width: 0; }
.wg-tv-tip-title {
	font-size: 0.78rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.wg-tv-tip-meta {
	font-size: 0.68rem;
	color: var(--tv-muted);
}

/* Mini stats */
.wg-tv-mini-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.wg-tv-mini-stat {
	text-align: center;
	padding: 10px 5px;
	background: var(--tv-card);
	border-radius: 6px;
}
.wg-tv-mini-stat-num {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
}
.wg-tv-mini-stat-label {
	font-size: 0.65rem;
	color: var(--tv-dim);
}

/* === OVERLAY === */
.wg-tv-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.85);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.wg-tv-overlay-content {
	background: var(--tv-surface);
	border: 1px solid var(--tv-border);
	border-radius: 12px;
	max-width: 580px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	padding: 28px;
}
.wg-tv-overlay-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	color: var(--tv-muted);
	font-size: 1.5rem;
	cursor: pointer;
}
.wg-tv-overlay-close:hover { color: #fff; }

.wg-tv-detail-header {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}
.wg-tv-detail-poster {
	width: 110px;
	border-radius: 8px;
	flex-shrink: 0;
}
.wg-tv-detail-info h3 {
	font-size: 1.2rem;
	color: #fff;
	margin: 0 0 6px;
}
.wg-tv-detail-meta {
	font-size: 0.82rem;
	color: var(--tv-muted);
	margin-bottom: 4px;
}
.wg-tv-detail-desc {
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--tv-text);
	margin-top: 12px;
}
.wg-tv-detail-review-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: var(--tv-accent);
	color: #fff;
	text-decoration: none;
	border-radius: var(--tv-radius);
	font-weight: 600;
	font-size: 0.88rem;
	margin-top: 14px;
	transition: background 0.15s;
}
.wg-tv-detail-review-btn:hover { background: var(--tv-accent2); color: #fff; }

/* Loading */
.wg-tv-loading-main {
	text-align: center;
	padding: 60px 20px;
	color: var(--tv-muted);
}
.wg-tv-section-empty {
	text-align: center;
	padding: 30px;
	color: var(--tv-dim);
	font-size: 0.85rem;
}

/* === SEO CONTENT (FAQ + Intro below app) === */
.wg-tv-seo-content {
	background: var(--tv-surface);
	border-top: 1px solid var(--tv-border);
	padding: 40px 0;
}
.wg-tv-seo-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
}
.wg-tv-seo-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
}
.wg-tv-seo-subtitle {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 24px 0 16px;
}
.wg-tv-seo-intro {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--tv-text);
	margin: 0;
}
.wg-tv-faq-item {
	margin-bottom: 16px;
	padding: 16px;
	background: var(--tv-card);
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
}
.wg-tv-faq-item h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--tv-accent);
	margin: 0 0 8px;
}
.wg-tv-faq-item p {
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--tv-text);
	margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
	.wg-tv-dashboard {
		grid-template-columns: 180px 1fr;
	}
	.wg-tv-sidebar-right {
		display: none;
	}
}

@media (max-width: 768px) {
	.wg-tv-dashboard {
		grid-template-columns: 1fr;
		padding: 12px;
	}
	.wg-tv-sidebar-left {
		position: static;
		max-height: none;
	}
	.wg-tv-sidebar-left .wg-tv-sidebar-section {
		display: none;
	}
	.wg-tv-sidebar-left .wg-tv-sidebar-section:first-child {
		display: block;
	}
	.wg-tv-sender-groups {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 4px;
	}
	.wg-tv-sender-btn {
		padding: 5px 10px;
		font-size: 0.75rem;
	}
	.wg-tv-hero-inner {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
	.wg-tv-hero-right {
		justify-content: center;
		flex-wrap: wrap;
		gap: 16px;
	}
	.wg-tv-hero-clock {
		padding-right: 16px;
	}
	.wg-tv-hero-sub { padding-left: 0; }
	.wg-tv-navbar-inner {
		flex-direction: column;
		gap: 8px;
	}
	.wg-tv-section-grid {
		grid-template-columns: 1fr;
	}
	.wg-tv-detail-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.wg-tv-hero { padding: calc(var(--wg-header-h-mobile, 56px) + 6px) 0 10px; }
	.wg-tv-hero-title { font-size: 1.3rem; }
	.wg-tv-hero-badge { font-size: 0.7rem; padding: 4px 12px; margin-bottom: 6px; }
	.wg-tv-hero-clock { display: none; }
	.wg-tv-hero-stats { gap: 16px; }
	.wg-tv-stat-num { font-size: 1.2rem; }
	.wg-tv-pill { padding: 5px 10px; font-size: 0.75rem; }
	.wg-tv-card { padding: 10px; }
}
