/* ==========================================================================
   Temple Festival Live — front end
   Everything is scoped under #tv so it cannot leak into the Blocksy theme.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800&family=Inter:wght@400;500;600;700&family=Noto+Sans+Tamil:wght@400;500;700&display=swap');

/* ---------- full width ----------
   Two routes to an edge-to-edge page:
   1. The "Festival — Full Width" page template. Cleanest, nothing to hack.
   2. The .tv-bleed fallback, used when the shortcode sits in a normal page.
      It pulls the block out of whatever container the theme wrapped it in. */

body.tfl-page { overflow-x: hidden; }

body.tfl-tpl .tfl-fullwidth-wrap {
	width: 100%; max-width: none; margin: 0; padding: 0;
}

/* Pull the block out of whatever container the theme wrapped it in.
   Margin-only technique on purpose: the `transform: translateX(-50%)`
   variant would make this element a containing block for position:fixed,
   which would break the floating live player. */
#tv.tv-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Blocksy (and most themes) pad the entry content. Cancel it for our block
   so the coloured bands really do touch both screen edges on phones. */
body.tfl-page .entry-content > .wp-block-shortcode {
	margin: 0; padding: 0; max-width: none;
}
body.tfl-page .entry-content > p:has(#tv) {
	margin: 0; padding: 0; max-width: none;
}

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

#tv {
	--navy:   #0B3C63;
	--navy-d: #072A47;
	--red:    #D32F2F;
	--gold:   #C8901E;
	--paper:  #F2F4F7;
	--white:  #FFFFFF;
	--ink:    #16202B;
	--muted:  #64748B;
	--line:   #E2E6EC;
	--r: 10px;
	--pad: clamp(14px, 4.5vw, 28px);

	font-family: 'Inter', 'Noto Sans Tamil', system-ui, sans-serif;
	background: var(--paper);
	color: var(--ink);
	margin: 0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
#tv h1, #tv h2, #tv h3 {
	font-family: 'Archivo', 'Noto Sans Tamil', system-ui, sans-serif;
	margin: 0; line-height: 1.1; letter-spacing: -.015em;
}
#tv p { margin: 0; }
#tv button { font-family: inherit; }
#tv :focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

#tv .tv-in { max-width: 1140px; margin: 0 auto; padding-inline: var(--pad); }
#tv .tv-sec { padding-block: clamp(18px, 4vw, 30px); }

/* ---------- top strip ---------- */
#tv .tv-strip { background: var(--white); border-bottom: 1px solid var(--line); font-size: 12.5px; }
#tv .tv-strip-in {
	display: flex; justify-content: space-between; align-items: center; gap: 10px;
	padding-block: 9px; color: var(--muted); font-weight: 500;
}
#tv .tv-strip-right { color: var(--navy); font-weight: 600; }

/* ---------- title bar ---------- */
#tv .tv-titlebar {
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-d) 100%);
	color: #fff;
	padding-block: clamp(18px, 5vw, 30px);
}

/* ---------- header image ---------- */
/* strip: a full width image across the very top of the page */
#tv .tv-hero {
	width: 100%;
	line-height: 0;
	background: var(--navy-d);
}
#tv .tv-hero img {
	display: block;
	width: 100%;
	height: auto;
	/* wide banners show whole; anything unusually tall is cropped from the
	   middle rather than pushing the whole page down */
	max-height: min(58vh, 540px);
	object-fit: cover;
	object-position: center;
	transition: opacity .25s ease;
}
@media (max-width: 600px) {
	#tv .tv-hero img { max-height: 42vh; }
}

/* badge: a round image sitting beside the festival name */
#tv .tv-hdr-badge.has-img .tv-in {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas: "logo title" "logo place";
	align-items: center;
	column-gap: 18px;
}
#tv .tv-hdr-badge .tv-logo {
	grid-area: logo;
	width: 78px; height: 78px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	background: #fff;
	border: 2px solid rgba(255, 211, 122, .6);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
	transition: opacity .25s ease;
}
#tv .tv-hdr-badge.has-img .tv-title { grid-area: title; }
#tv .tv-hdr-badge.has-img .tv-place { grid-area: place; }
@media (max-width: 600px) {
	#tv .tv-hdr-badge .tv-logo { width: 54px; height: 54px; }
	#tv .tv-hdr-badge.has-img .tv-in { column-gap: 13px; }
}

/* banner: a wide photo behind the name, darkened so text stays readable */
#tv .tv-hdr-banner.has-img { position: relative; overflow: hidden; padding-block: clamp(34px, 8vw, 64px); }
#tv .tv-hdr-banner .tv-hdr-bg { position: absolute; inset: 0; }
#tv .tv-hdr-banner .tv-hdr-bg img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: opacity .25s ease;
}
#tv .tv-hdr-banner .tv-hdr-bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,60,99,.72) 0%, rgba(7,42,71,.92) 100%);
}
#tv .tv-hdr-banner .tv-in { position: relative; z-index: 1; }
#tv .tv-title {
	font-size: clamp(24px, 6.5vw, 42px); font-weight: 800;
	/* Explicit colour on purpose. Inheriting white from .tv-titlebar loses to
	   any theme rule that sets a colour on h1 directly, since inheritance
	   carries no specificity — that is what made the title go dark. */
	color: var(--tf-title, #FFD37A);
	text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
#tv .tv-place { margin-top: 8px; font-size: clamp(13px, 3.4vw, 15px); color: #B9D2E6; }

/* ---------- tabs ---------- */
#tv .tv-tabs { background: var(--navy-d); z-index: 40; }
#tv .tv-tabs-in { display: flex; overflow-x: auto; scrollbar-width: none; }
#tv .tv-tabs-in::-webkit-scrollbar { display: none; }
#tv .tv-tab {
	flex: 1 0 auto; min-width: 88px; min-height: 46px;
	background: none; border: 0; border-bottom: 3px solid transparent;
	color: #A9C4DA; font-size: 14.5px; font-weight: 600;
	padding: 0 16px; cursor: pointer;
	transition: color .15s, border-color .15s;
}
#tv .tv-tab.is-on { color: #fff; border-bottom-color: var(--red); }

/* ---------- player card ---------- */
#tv .tv-card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(11,60,99,.06), 0 10px 28px rgba(11,60,99,.07);
}
#tv .tv-cardhead {
	display: flex; align-items: center; gap: 10px;
	padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 13.5px;
}
#tv .tv-cardhead-t { color: var(--muted); font-weight: 500; }
#tv .tv-live {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--red); color: #fff;
	font-size: 11.5px; font-weight: 700; letter-spacing: .09em;
	padding: 4px 9px; border-radius: 4px; font-style: normal;
}
#tv .tv-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: tv-blink 1.5s infinite; }
@keyframes tv-blink { 0%,100% { opacity: 1 } 50% { opacity: .2 } }

/* ---------- video frame ----------
   A thin gradient ring around every player, drawn as padding on the box
   so it works on iframes and native video alike. */
#tv .tv-player {
	position: relative;
	aspect-ratio: 16/9;
	padding: 3px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, var(--gold) 0%, #E0A73C 22%, var(--red) 52%, #2C5F8A 80%, var(--navy) 100%);
	background-size: 220% 220%;
	box-shadow:
		0 2px 6px rgba(11,60,99,.14),
		0 18px 44px rgba(11,60,99,.22);
}
#tv .tv-player::after {
	/* a dark hairline between the ring and the picture, so the colours
	   do not bleed into dark footage */
	content: '';
	position: absolute; inset: 2px;
	border-radius: 14px;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.55);
	pointer-events: none; z-index: 2;
}
#tv .tv-player > iframe,
#tv .tv-player > video {
	position: relative; z-index: 1;
	width: 100%; height: 100%;
	border: 0; display: block;
	border-radius: 13px;
	background: #000;
}

/* the live player's ring drifts slowly, so it reads as "on air" */
#tv .tv-card > .tv-player { margin: 12px; animation: tv-ring 14s linear infinite; }
#tv .tv-card > .tv-chans { padding-bottom: 0; background: transparent; }
@keyframes tv-ring {
	0%   { background-position:   0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position:   0% 50%; }
}

/* recordings sit calmer than the live feed */
#tv .tv-rec .tv-player {
	margin: 12px;
	background: linear-gradient(135deg, var(--navy) 0%, #2C5F8A 50%, var(--gold) 100%);
	box-shadow: 0 2px 5px rgba(11,60,99,.1), 0 12px 30px rgba(11,60,99,.16);
}

/* tighter frame once the player is pinned or floating */
#tv .tv-stickyzone.is-stuck .tv-player {
	margin: 0; border-radius: 0; padding: 0; box-shadow: none; animation: none;
}
#tv .tv-stickyzone.is-stuck .tv-player::after { display: none; }
#tv .tv-stickyzone.is-stuck .tv-player > iframe { border-radius: 0; }
@media (min-width: 900px) {
	#tv .tv-stickyzone.is-stuck .tv-player { border-radius: 0 0 10px 10px; }
	#tv .tv-stickyzone.is-stuck .tv-player > iframe { border-radius: 0 0 9px 9px; }
}

#tv .tv-chans { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px; background: #FAFBFC; }
#tv .tv-chan {
	min-height: 48px; background: var(--white); border: 1px solid var(--line);
	border-radius: 8px; color: var(--navy); font-size: 14px; font-weight: 600; cursor: pointer;
	transition: background .15s, border-color .15s, color .15s;
}
#tv .tv-chan.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }

#tv .tv-note { color: var(--muted); font-size: 13px; margin-top: 12px; padding-inline: 2px; }

/* ---------- on air / off air status ---------- */
#tv .tv-status {
	display: flex; align-items: center; gap: 8px;
	padding: 9px 14px;
	font-size: 13px; font-weight: 500;
	border-bottom: 1px solid var(--line);
	background: #FAFBFC;
	color: var(--muted);
}
#tv .tv-status.is-live { background: #FFF5F5; color: #9B1C1C; }
#tv .tv-status.is-off  { background: #F4F7FA; color: var(--muted); }
#tv .tv-live.tv-off { background: #8A97A5; letter-spacing: .07em; }
#tv .tv-stickyzone.is-stuck .tv-status { display: none; }

/* ---------- share ---------- */
#tv .tv-share {
	display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
	margin-top: 14px;
}
#tv .tv-share-lab {
	font-size: 12px; font-weight: 700; letter-spacing: .09em;
	text-transform: uppercase; color: var(--muted);
	margin-right: 2px;
}
#tv .tv-sh {
	display: inline-flex; align-items: center; gap: 7px;
	min-height: 40px; padding: 0 14px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--navy);
	font-size: 13.5px; font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background .15s, color .15s, border-color .15s, transform .15s;
	-webkit-tap-highlight-color: transparent;
}
#tv .tv-sh:hover { transform: translateY(-1px); color: #fff; }
#tv .tv-sh-wa:hover   { background: #25D366; border-color: #25D366; }
#tv .tv-sh-fb:hover   { background: #1877F2; border-color: #1877F2; }
#tv .tv-sh-x:hover    { background: #000;    border-color: #000; }
#tv .tv-sh-copy:hover { background: var(--navy); border-color: var(--navy); }
#tv .tv-sh.is-done { background: #16A34A; border-color: #16A34A; color: #fff; }
@media (max-width: 420px) {
	#tv .tv-sh { padding: 0 12px; font-size: 13px; }
	#tv .tv-sh span { display: none; }
	#tv .tv-sh-copy span { display: inline; }
}

/* ---------- day schedule ---------- */
#tv .tv-sched-wrap { margin: 0 0 22px; }
#tv .tv-sched { list-style: none; margin: 0; padding: 0; max-width: 560px; }
#tv .tv-sched-row {
	display: flex; align-items: baseline; gap: 14px;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
}
#tv .tv-sched-row:last-child { border-bottom: 0; }
#tv .tv-sched-time {
	flex: 0 0 auto; min-width: 96px;
	display: flex; flex-direction: column;
}
#tv .tv-sched-t1 { font-weight: 700; font-size: 14px; color: var(--navy); }
#tv .tv-sched-t2 { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
#tv .tv-sched-name { font-size: 14.5px; color: var(--ink); }

/* ---------- sticky / floating player ---------- */
#tv .tv-sentinel { height: 1px; margin: 0; padding: 0; }
#tv .tv-spacer { height: 0; }
#tv .tv-stickctl { margin-left: auto; display: none; gap: 4px; }
#tv .tv-ctl {
	width: 30px; height: 30px; border-radius: 6px;
	background: transparent; border: 1px solid var(--line);
	color: var(--muted); font-size: 13px; line-height: 1; cursor: pointer; padding: 0;
}
#tv .tv-ctl:hover { background: #F1F4F7; color: var(--ink); }

/* pinned to the top of the screen, full width, on phones */
#tv .tv-stickyzone.is-stuck {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 9990;
	padding-top: env(safe-area-inset-top);
	background: var(--white);
	animation: tv-drop .22s ease-out;
}
@keyframes tv-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
#tv .tv-stickyzone.is-stuck .tv-card {
	border-radius: 0; border-left: 0; border-right: 0; border-top: 0;
	box-shadow: 0 8px 24px rgba(7,42,71,.28);
}
#tv .tv-stickyzone.is-stuck .tv-chans,
#tv .tv-stickyzone.is-stuck .tv-diya,
#tv .tv-stickyzone.is-stuck .tv-underplayer,
#tv .tv-stickyzone.is-stuck .tv-dayname { display: none; }

/* ---------- share live + weather row ---------- */
#tv .tv-underplayer {
	display: flex; align-items: center; gap: 10px;
	padding: 0 12px 12px;
	flex-wrap: wrap;
}
#tv .tv-sharelive {
	display: inline-flex; align-items: center; gap: 7px;
	min-height: 40px; padding: 0 15px;
	background: var(--navy); border: 0; border-radius: 999px;
	color: #fff; font-size: 13px; font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}
#tv .tv-sharelive:hover { background: var(--navy-d); }

#tv .tv-wx {
	display: inline-flex; align-items: baseline; gap: 6px;
	margin-left: auto;
	color: var(--muted); font-size: 13px;
	white-space: nowrap;
}
#tv .tv-wx[hidden] { display: none; }
#tv .tv-wx-icon { font-size: 15px; }
#tv .tv-wx-temp { color: var(--navy); font-weight: 700; font-size: 14px; }

/* ---------- festival running totals ---------- */
#tv .tv-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0 7px;
	padding: 9px 14px 10px;
	color: var(--muted);
	font-size: 12.5px; line-height: 1.6;
}
/* each fact stays whole — "8 days to go" breaking across two lines reads
   as two separate things rather than one */
#tv .tv-stats > span:not(.tv-stats-sep),
#tv .tv-stats { white-space: normal; }
#tv .tv-stats-fact { white-space: nowrap; }
#tv .tv-stats-sep { color: var(--line); }

/* ---------- day name strip ---------- */
#tv .tv-dayname {
	display: flex; align-items: center; gap: 7px;
	padding: 7px 14px 8px;
	background: linear-gradient(90deg, rgba(11,60,99,.04) 0%, transparent 100%);
	border-bottom: 1px solid var(--line);
	font-size: 13px; line-height: 1.3;
	overflow: hidden;
}
#tv .tv-dayname-star {
	color: var(--gold);
	font-size: 12px;
	flex-shrink: 0;
}
#tv .tv-dayname-n {
	color: var(--muted);
	font-weight: 500;
	white-space: nowrap;
	flex-shrink: 0;
}
#tv .tv-dayname-sep {
	color: var(--line);
	flex-shrink: 0;
}
#tv .tv-dayname-t {
	color: var(--navy);
	font-weight: 600;
	/* Tamil names can be long — truncate gracefully rather than wrap */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#tv .tv-stickyzone.is-stuck .tv-stickctl { display: flex; }
#tv .tv-stickyzone.is-stuck .tv-cardhead { padding: 8px 12px; }

/* floats in the corner on larger screens so it never covers the photos */
@media (min-width: 900px) {
	#tv .tv-stickyzone.is-stuck {
		top: 18px; right: 18px; left: auto;
		width: 390px; max-width: 42vw;
		background: transparent;
		border-radius: var(--r);
		animation: tv-pop .22s ease-out;
	}
	@keyframes tv-pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
	#tv .tv-stickyzone.is-stuck .tv-card {
		border-radius: var(--r); border: 1px solid var(--line);
		box-shadow: 0 16px 44px rgba(7,42,71,.34);
	}
}

/* "Watch live" pill, shown only after the visitor closes the floating player */
#tv .tv-restore {
	position: fixed;
	left: 50%; bottom: max(16px, env(safe-area-inset-bottom));
	transform: translate(-50%, 160%);
	z-index: 9989;
	display: flex; align-items: center; gap: 8px;
	background: var(--navy); color: #fff;
	border: 0; border-radius: 999px;
	padding: 12px 20px;
	font-size: 14px; font-weight: 600;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(7,42,71,.4);
	transition: transform .3s cubic-bezier(.4,0,.2,1);
}
#tv .tv-restore.is-on { transform: translate(-50%, 0); }
#tv .tv-restore .tv-dot { background: #fff; }

/* ---------- section heads ---------- */
#tv .tv-sechead { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
#tv .tv-h2 {
	font-size: clamp(18px, 4.6vw, 25px); font-weight: 700;
	color: var(--ink);
	padding-left: 11px; border-left: 4px solid var(--red);
}
#tv .tv-hint { color: var(--muted); font-size: 12px; }
@media (min-width: 780px) { #tv .tv-hint { display: none; } }

/* ---------- day rail ---------- */
#tv .tv-railctl { display: flex; align-items: center; gap: 8px; }
#tv .tv-rarrow {
	display: none;
	width: 34px; height: 34px; border-radius: 50%;
	background: var(--white); border: 1px solid var(--line);
	color: var(--navy); font-size: 19px; line-height: 1; cursor: pointer;
	transition: background .15s, border-color .15s;
}
#tv .tv-rarrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
@media (min-width: 780px) { #tv .tv-rarrow { display: block; } }

#tv .tv-rail {
	display: flex; gap: 9px; overflow-x: auto;
	scroll-snap-type: x proximity;
	padding: 4px var(--pad) 14px;
	-webkit-overflow-scrolling: touch; scrollbar-width: none;
	scroll-behavior: smooth;
}
#tv .tv-rail::-webkit-scrollbar { display: none; }

#tv .tv-day {
	position: relative;
	flex: 0 0 auto; scroll-snap-align: center;
	width: 78px; min-height: 96px;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 1px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 12px 6px 10px;
	cursor: pointer; text-align: center;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(11,60,99,.04);
	transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s, border-color .18s, background .18s;
}
#tv .tv-day-wd {
	font-size: 10px; font-weight: 700; letter-spacing: .11em;
	text-transform: uppercase; color: var(--muted);
}
#tv .tv-day-n {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 27px; font-weight: 800; line-height: 1.05;
	color: var(--ink); letter-spacing: -.03em;
}
#tv .tv-day-d { font-size: 11px; font-weight: 500; color: var(--muted); }
#tv .tv-day-meta {
	display: flex; align-items: center; justify-content: center; gap: 4px;
	margin-top: 6px; min-height: 16px;
}
#tv .tv-day-dash { color: #CBD5E1; font-size: 11px; }
#tv .tv-pill {
	display: inline-flex; align-items: center; gap: 2px;
	background: #EDF2F7; color: var(--navy);
	font-size: 10px; font-weight: 700;
	padding: 2px 6px; border-radius: 999px;
}
#tv .tv-pill-v { background: #FBE9E9; color: var(--red); }
#tv .tv-day-live {
	font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
	color: var(--red); background: #FBE9E9;
	padding: 2px 7px; border-radius: 999px;
}
#tv .tv-lock { color: #B6C2CF; }

#tv .tv-day:not(.is-locked):hover {
	transform: translateY(-3px);
	border-color: #C3D3E0;
	box-shadow: 0 8px 20px rgba(11,60,99,.12);
}

/* selected */
#tv .tv-day.is-on {
	background: linear-gradient(160deg, var(--navy) 0%, var(--navy-d) 100%);
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(11,60,99,.3);
}
#tv .tv-day.is-on .tv-day-n { color: #fff; }
#tv .tv-day.is-on .tv-day-wd { color: #8FB4D0; }
#tv .tv-day.is-on .tv-day-d { color: #B9D2E6; }
#tv .tv-day.is-on .tv-pill { background: rgba(255,255,255,.16); color: #fff; }
#tv .tv-day.is-on .tv-pill-v { background: rgba(255,255,255,.16); color: #FFC9C9; }
#tv .tv-day.is-on .tv-day-dash { color: rgba(255,255,255,.35); }

/* today gets a red cap along the top edge */
#tv .tv-day.is-today::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--red);
}
#tv .tv-day.is-today .tv-day-n { color: var(--red); }
#tv .tv-day.is-on.is-today .tv-day-n { color: #fff; }
#tv .tv-day.is-on.is-today .tv-day-live { background: rgba(255,255,255,.18); color: #fff; }

/* not yet unlocked */
#tv .tv-day.is-locked {
	background: #F7F9FB; border-style: dashed; border-color: #DDE4EB;
	cursor: not-allowed; box-shadow: none;
}
#tv .tv-day.is-locked .tv-day-n { color: #AFBDCA; }
#tv .tv-day.is-locked .tv-day-wd, #tv .tv-day.is-locked .tv-day-d { color: #B6C2CF; }

/* thin progress bar under the rail */
#tv .tv-progress {
	height: 3px; border-radius: 999px; background: #E2E8F0; overflow: hidden; margin-top: 2px;
}
#tv .tv-progress span {
	display: block; height: 100%; border-radius: 999px;
	background: linear-gradient(90deg, var(--navy), var(--red));
}

/* ---------- highlight clips ---------- */
#tv .tv-clips-wrap { margin: 0 0 22px; }
#tv .tv-subhead { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
#tv .tv-subhead-t {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 12px; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--navy);
}
#tv .tv-subhead-n {
	background: #EDF2F7; color: var(--navy);
	font-size: 11px; font-weight: 700;
	padding: 1px 8px; border-radius: 999px;
}
#tv .tv-clips {
	display: flex; gap: 10px; overflow-x: auto;
	scroll-snap-type: x proximity;
	padding-bottom: 6px;
	-webkit-overflow-scrolling: touch; scrollbar-width: none;
}
#tv .tv-clips::-webkit-scrollbar { display: none; }
#tv .tv-clip {
	flex: 0 0 200px; scroll-snap-align: start;
	background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
	-webkit-tap-highlight-color: transparent;
}
@media (min-width: 700px) { #tv .tv-clip { flex-basis: 230px; } }
#tv .tv-clip-thumb {
	position: relative; display: block;
	aspect-ratio: 16/9;
	padding: 2px;
	border-radius: 12px; overflow: hidden;
	background: linear-gradient(135deg, var(--gold) 0%, var(--red) 55%, var(--navy) 100%);
	box-shadow: 0 2px 5px rgba(11,60,99,.1), 0 8px 20px rgba(11,60,99,.14);
	transition: box-shadow .2s;
}
#tv .tv-clip:hover .tv-clip-thumb { box-shadow: 0 4px 10px rgba(11,60,99,.16), 0 12px 28px rgba(11,60,99,.22); }
#tv .tv-clip-thumb img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	border-radius: 10px; background: #0B1620;
	transition: transform .4s ease, opacity .2s;
}
#tv .tv-clip:hover .tv-clip-thumb img { transform: scale(1.05); opacity: .85; }
#tv .tv-clip-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(211,47,47,.95); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 14px rgba(0,0,0,.4);
	transition: transform .2s cubic-bezier(.2,.8,.3,1);
}
#tv .tv-clip:hover .tv-clip-play { transform: translate(-50%,-50%) scale(1.12); }
#tv .tv-clip-t {
	display: block; margin-top: 8px;
	font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.35;
}
/* the clip box once it has been swapped for a real player */
#tv .tv-clip.is-playing { flex-basis: 100%; }
@media (min-width: 700px) { #tv .tv-clip.is-playing { flex-basis: 480px; } }
#tv .tv-clip.is-playing .tv-clip-thumb { box-shadow: 0 6px 14px rgba(11,60,99,.2), 0 16px 36px rgba(11,60,99,.26); }
#tv .tv-clip iframe, #tv .tv-clip video {
	position: absolute; inset: 2px; width: calc(100% - 4px); height: calc(100% - 4px);
	border: 0; display: block; border-radius: 10px; background: #000;
}

/* ---------- gallery panels ---------- */
#tv .tv-panel { display: none; }
#tv .tv-panel.is-on { display: block; }
#tv .tv-daymeta { margin-bottom: 14px; }
#tv .tv-h3 { font-size: clamp(19px, 5vw, 27px); font-weight: 700; color: var(--ink); }
#tv .tv-daydesc { color: var(--muted); font-size: 14px; margin-top: 7px; max-width: 62ch; }

#tv .tv-rec { margin: 0 0 20px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--white); }
#tv .tv-rec-lab {
	padding: 10px 14px; border-bottom: 1px solid var(--line);
	font-size: 11.5px; font-weight: 700; letter-spacing: .09em;
	text-transform: uppercase; color: var(--navy);
}

#tv .tv-grid { columns: 2; column-gap: 10px; }
@media (min-width: 700px)  { #tv .tv-grid { columns: 3; column-gap: 12px; } }
@media (min-width: 1000px) { #tv .tv-grid { columns: 4; } }
#tv .tv-shot {
	break-inside: avoid; margin: 0 0 10px;
	position: relative; display: block; width: 100%; padding: 0;
	background: var(--white); border: 1px solid var(--line);
	border-radius: 8px; overflow: hidden; cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
#tv .tv-shot img { width: 100%; height: auto; display: block; transition: transform .45s ease; }
#tv .tv-shot:hover img { transform: scale(1.04); }
#tv .tv-shot figcaption {
	position: absolute; inset: auto 0 0 0;
	padding: 24px 10px 9px; font-size: 12px; text-align: left; color: #fff;
	background: linear-gradient(transparent, rgba(0,0,0,.75));
}

#tv .tv-empty {
	border: 1px dashed #CBD5E1; border-radius: 8px;
	padding: 32px 18px; text-align: center;
	color: var(--muted); font-size: 14px; background: var(--white);
}
#tv .tv-empty-dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); color: #B9D2E6; }

/* ---------- full-width slider ---------- */
#tv .tv-sec-slider { background: var(--navy-d); padding-bottom: clamp(26px, 6vw, 40px); }
#tv .tv-sec-slider .tv-h2 { color: #fff; }
#tv .tv-arrows { display: none; gap: 8px; }
@media (min-width: 780px) { #tv .tv-arrows { display: flex; } }
#tv .tv-arrow {
	width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
	color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
}
#tv .tv-arrow:hover { background: rgba(255,255,255,.22); }

#tv .tv-slider {
	display: flex;
	width: 100%;
	overflow-x: auto; scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch; scrollbar-width: none;
}
#tv .tv-slider::-webkit-scrollbar { display: none; }
#tv .tv-slide {
	flex: 0 0 100%; scroll-snap-align: center;
	position: relative; aspect-ratio: 16/10; background: #000; cursor: pointer;
}
@media (min-width: 700px)  { #tv .tv-slide { flex-basis: 60%; aspect-ratio: 16/9; } }
@media (min-width: 1100px) { #tv .tv-slide { flex-basis: 42%; } }
#tv .tv-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
#tv .tv-slide-cap {
	position: absolute; inset: auto 0 0 0;
	padding: 40px 16px 16px;
	background: linear-gradient(transparent, rgba(0,0,0,.82)); color: #fff;
}
#tv .tv-slide-day { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
#tv .tv-slide-t { font-size: 14.5px; font-weight: 500; margin-top: 3px; }

#tv .tv-dots { display: flex; justify-content: center; gap: 6px; padding-top: 16px; flex-wrap: wrap; }
#tv .tv-dotb {
	width: 7px; height: 7px; padding: 0; border-radius: 50%;
	background: rgba(255,255,255,.3); border: 0; cursor: pointer;
	transition: width .2s, background .2s;
}
#tv .tv-dotb.is-on { background: var(--gold); width: 20px; border-radius: 4px; }

/* ---------- lightbox ---------- */
#tv .tv-lb {
	position: fixed; inset: 0; z-index: 99999; display: none;
	background: rgba(7,20,32,.95);
	align-items: center; justify-content: center;
	padding: env(safe-area-inset-top) 14px env(safe-area-inset-bottom);
	touch-action: pan-y;
}
#tv .tv-lb.is-open { display: flex; }
#tv .tv-lb-fig { margin: 0; text-align: center; max-width: 100%; }
#tv .tv-lb-fig img { max-width: 100%; max-height: 78vh; border-radius: 8px; margin-inline: auto; display: block; }
#tv .tv-lb-fig figcaption { color: #C3D3E0; font-size: 13.5px; margin-top: 12px; }
#tv .tv-lb-x {
	position: absolute; top: calc(env(safe-area-inset-top) + 12px); right: 14px;
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
	color: #fff; font-size: 17px; cursor: pointer;
}
#tv .tv-lb-nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 46px; height: 46px; border-radius: 50%;
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
	color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
}
#tv .tv-lb-prev { left: 10px; }
#tv .tv-lb-next { right: 10px; }
@media (max-width: 620px) { #tv .tv-lb-nav { display: none; } }

/* ---------- loading skeleton for a day arriving on demand ---------- */
#tv .tv-skel { padding: 4px 0 8px; }
#tv .tv-skel-line {
	height: 14px; border-radius: 6px; margin-bottom: 12px;
	background: linear-gradient(90deg, #E7ECF1 25%, #F3F6F9 37%, #E7ECF1 63%);
	background-size: 400% 100%;
	animation: tv-shimmer 1.3s ease-in-out infinite;
}
#tv .tv-skel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
@media (min-width: 700px)  { #tv .tv-skel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { #tv .tv-skel-grid { grid-template-columns: repeat(4, 1fr); } }
#tv .tv-skel-grid span {
	display: block; aspect-ratio: 4/3; border-radius: 8px;
	background: linear-gradient(90deg, #E7ECF1 25%, #F3F6F9 37%, #E7ECF1 63%);
	background-size: 400% 100%;
	animation: tv-shimmer 1.3s ease-in-out infinite;
}
@keyframes tv-shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- new day banner ---------- */
#tv .tv-rollover {
	position: fixed;
	left: 50%; bottom: max(16px, env(safe-area-inset-bottom));
	transform: translate(-50%, 160%);
	z-index: 9995;
	display: flex; align-items: center; gap: 12px;
	max-width: calc(100vw - 24px);
	background: var(--navy); color: #fff;
	border-radius: 999px;
	padding: 11px 12px 11px 20px;
	font-size: 14px; font-weight: 500;
	box-shadow: 0 12px 32px rgba(7, 42, 71, .42);
	transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}
#tv .tv-rollover.is-on { transform: translate(-50%, 0); }
#tv .tv-rollover button {
	background: var(--gold); color: var(--navy-d);
	border: 0; border-radius: 999px;
	padding: 8px 16px; min-height: 36px;
	font-size: 13.5px; font-weight: 700; cursor: pointer;
	white-space: nowrap;
}

/* ---------- progress bar ---------- */
#tv .tv-prog { background: var(--white); border-bottom: 1px solid var(--line); padding: 14px 0 20px; }
#tv .tv-prog-top {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 14px; margin-bottom: 14px;
}
#tv .tv-prog-count {
	font-family: 'Archivo', system-ui, sans-serif;
	color: var(--navy); letter-spacing: -.02em; line-height: 1;
}
#tv .tv-prog-count strong { font-size: clamp(26px, 6vw, 34px); font-weight: 800; }
#tv .tv-prog-of { font-size: 15px; font-weight: 600; color: var(--muted); margin-left: 2px; }
#tv .tv-prog-next { text-align: right; line-height: 1.3; min-width: 0; }
#tv .tv-prog-next-lab {
	display: block; font-size: 10px; font-weight: 800; letter-spacing: .12em;
	text-transform: uppercase; color: var(--red);
}
#tv .tv-prog-next strong {
	display: block; font-size: 14.5px; font-weight: 700; color: var(--ink);
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
#tv .tv-prog-next-day { font-size: 11.5px; color: var(--muted); }

#tv .tv-prog-track {
	position: relative; height: 8px; border-radius: 999px;
	background: #E7EDF3; margin: 0 6px;
}
#tv .tv-prog-fill {
	height: 100%; border-radius: 999px;
	background: linear-gradient(90deg, var(--navy) 0%, #2C5F8A 55%, var(--gold) 100%);
	box-shadow: 0 1px 6px rgba(11,60,99,.3);
	transition: width .6s cubic-bezier(.2,.8,.3,1);
}
#tv .tv-prog-mark {
	position: absolute; top: 50%; transform: translate(-50%, -50%);
	width: 22px; height: 22px; padding: 0;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: #fff; border: 2px solid #CBD8E3; color: #B6C2CF;
	cursor: pointer; z-index: 1;
	transition: transform .15s, border-color .15s, color .15s, background .15s;
}
#tv .tv-prog-mark.is-done { border-color: var(--gold); color: var(--gold); background: #fff; }
#tv .tv-prog-mark:not(:disabled):hover { transform: translate(-50%, -50%) scale(1.2); }
#tv .tv-prog-mark:disabled { cursor: default; }
#tv .tv-prog-tip {
	position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%);
	background: var(--ink); color: #fff;
	font-size: 11.5px; font-weight: 600; white-space: nowrap;
	padding: 5px 9px; border-radius: 6px;
	opacity: 0; pointer-events: none; transition: opacity .15s;
}
#tv .tv-prog-tip::after {
	content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	border: 5px solid transparent; border-top-color: var(--ink);
}
#tv .tv-prog-mark:hover .tv-prog-tip,
#tv .tv-prog-mark:focus-visible .tv-prog-tip { opacity: 1; }

/* ---------- day search ---------- */
#tv .tv-find {
	position: relative; display: flex; align-items: center; gap: 7px;
	background: var(--white); border: 1px solid var(--line);
	border-radius: 999px; padding: 0 10px 0 13px;
	min-height: 38px; color: var(--muted);
	transition: border-color .15s, box-shadow .15s;
}
#tv .tv-find:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,60,99,.1); }
#tv .tv-find input {
	border: 0; outline: 0; background: none;
	font-family: inherit; font-size: 14px; color: var(--ink);
	width: 116px; min-width: 0; padding: 8px 0;
	-webkit-appearance: none; appearance: none;
}
#tv .tv-find input::-webkit-search-cancel-button { display: none; }
#tv .tv-find-x {
	border: 0; background: none; color: var(--muted);
	font-size: 12px; cursor: pointer; padding: 6px; line-height: 1;
}
#tv .tv-find-none {
	color: var(--muted); font-size: 13px; margin: 2px 0 0; padding-inline: 2px;
}
#tv .tv-day.is-hidden { display: none; }
#tv .tv-day.is-hit { box-shadow: 0 0 0 3px rgba(200,144,30,.5); }
@media (max-width: 560px) {
	#tv .tv-find input { width: 92px; }
}

/* ---------- today's timings card ---------- */
#tv .tv-today {
	margin-top: 16px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 18px 18px 8px;
	box-shadow: 0 1px 3px rgba(11,60,99,.05), 0 10px 26px rgba(11,60,99,.07);
}
#tv .tv-today-head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
#tv .tv-today-t {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 16px; font-weight: 800; color: var(--ink);
}
#tv .tv-today-day { font-size: 12.5px; font-weight: 600; color: var(--muted); }
#tv .tv-today-grid {
	display: grid; gap: 12px;
	grid-template-columns: 1fr;
}
@media (min-width: 620px) { #tv .tv-today-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { #tv .tv-today-grid { grid-template-columns: repeat(4, 1fr); } }

/* Each time-of-day gets its own gradient and accent colour rather than one
   flat white card with a small coloured label — the four parts of the day
   should read apart from each other at a glance, not just on close reading. */
#tv .tv-today-part {
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 16px;
	padding: 13px 14px 13px;
	margin-bottom: 10px;
	transition: transform .15s ease, box-shadow .15s ease;
}
#tv .tv-today-part:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(11,60,99,.10);
}
#tv .tv-part-morning {
	background: linear-gradient(155deg, #FFF6E4 0%, #FFEACB 100%);
	border-color: #F6DFAE;
}
#tv .tv-part-afternoon {
	background: linear-gradient(155deg, #FFEFE3 0%, #FFDCC2 100%);
	border-color: #F7CBA3;
}
#tv .tv-part-evening {
	background: linear-gradient(155deg, #FDEAF2 0%, #FAD7E8 100%);
	border-color: #F0B9D6;
}
#tv .tv-part-night {
	background: linear-gradient(155deg, #EAF0FC 0%, #D9E4F9 100%);
	border-color: #BFD1F2;
}

#tv .tv-today-when {
	display: flex; align-items: center; gap: 7px;
	font-size: 11px; font-weight: 800; letter-spacing: .1em;
	text-transform: uppercase; margin-bottom: 10px;
}
#tv .tv-today-when svg {
	flex: none;
	width: 22px; height: 22px; padding: 4px;
	border-radius: 50%;
	background: rgba(255,255,255,.65);
}
#tv .tv-part-morning   .tv-today-when { color: #9A6212; }
#tv .tv-part-afternoon .tv-today-when { color: #B0490F; }
#tv .tv-part-evening   .tv-today-when { color: #9B2560; }
#tv .tv-part-night     .tv-today-when { color: #2C4A85; }

#tv .tv-today-list { list-style: none; margin: 0; padding: 0; }
#tv .tv-today-list li {
	display: flex; align-items: baseline; gap: 9px;
	padding: 6px 0; font-size: 13.5px;
	border-top: 1px solid rgba(255,255,255,.7);
}
#tv .tv-today-list li:first-child { border-top: 0; }
#tv .tv-today-list .tv-sched-time { min-width: 74px; }
#tv .tv-today-list .tv-sched-t1 {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 15px; font-weight: 800;
	color: var(--ink);
}
#tv .tv-today-name { color: var(--ink); font-weight: 500; }

/* ---------- advertisement slots ---------- */
#tv .tv-ad { padding: 16px 0; background: var(--paper); }
#tv .tv-ad-top { background: var(--white); }
#tv .tv-ad-bottom { background: var(--navy-d); }
#tv .tv-ad-box { position: relative; text-align: center; }
#tv .tv-ad-tag {
	display: block; text-align: right;
	font-size: 9.5px; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; color: #A8B4C0;
	margin-bottom: 5px;
}
#tv .tv-ad-bottom .tv-ad-tag { color: rgba(255,255,255,.4); }
#tv .tv-ad-box img {
	display: block; margin: 0 auto;
	max-width: 100%; height: auto;
	border-radius: 12px;
	border: 1px solid var(--line);
}
#tv .tv-ad-bottom .tv-ad-box img { border-color: rgba(255,255,255,.12); }
#tv .tv-ad-box a { display: block; line-height: 0; }

/* ---------- new since last visit ---------- */
#tv .tv-newdot {
	position: absolute; top: 6px; right: 6px;
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 2px #fff;
}
#tv .tv-day.is-on .tv-newdot { box-shadow: 0 0 0 2px var(--navy); }
/* ---------- catch-up nudge ----------
   No longer a pill that slides away after a few seconds: it now carries a
   way back into the days that were missed, so it has to stay put long
   enough to be tapped, and it needs room for the day buttons. */
#tv .tv-newbar {
	position: fixed;
	left: 50%; bottom: max(16px, env(safe-area-inset-bottom));
	transform: translate(-50%, 160%);
	z-index: 9994;
	width: calc(100vw - 24px);
	max-width: 460px;
	background: var(--ink); color: #fff;
	border-radius: 14px;
	padding: 13px 42px 13px 16px;
	font-size: 13.5px;
	box-shadow: 0 12px 30px rgba(0,0,0,.35);
	transition: transform .32s cubic-bezier(.4,0,.2,1);
}
#tv .tv-newbar.is-on { transform: translate(-50%, 0); }

#tv .tv-newbar-main { display: block; line-height: 1.45; }
#tv .tv-newbar-h {
	display: block;
	font-size: 11.5px; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 2px;
}
#tv .tv-newbar-main #tv-newbar-t { font-weight: 600; color: #fff; }

#tv .tv-newbar-days { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
#tv .tv-newbar-days:empty { display: none; }
#tv .tv-newbar-day {
	min-height: 34px; padding: 0 13px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	color: #fff; font-size: 12.5px; font-weight: 600;
	cursor: pointer;
	transition: background .15s, border-color .15s;
}
#tv .tv-newbar-day:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); }

#tv .tv-newbar-x {
	position: absolute; top: 8px; right: 8px;
	width: 30px; height: 30px;
	display: flex; align-items: center; justify-content: center;
	background: none; border: 0; border-radius: 8px;
	color: rgba(255,255,255,.65);
	font-size: 14px; line-height: 1; cursor: pointer;
}
#tv .tv-newbar-x:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- lamp offering ---------- */
#tv .tv-diya {
	display: flex; align-items: center; gap: 12px;
	padding: 12px; padding-top: 0;
	background: transparent;
}
#tv .tv-diya-btn {
	position: relative;
	display: inline-flex; align-items: center; gap: 8px;
	min-height: 44px; padding: 0 16px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--gold);
	font-size: 13.5px; font-weight: 600;
	cursor: pointer;
	transition: background .15s, border-color .15s, transform .12s;
}
#tv .tv-diya-btn:hover { border-color: var(--gold); background: #FFFBF2; }
#tv .tv-diya-btn.is-tapped { animation: tv-diya-tap .32s ease; }
#tv .tv-diya-flame { display: inline-flex; }
#tv .tv-diya-lab { color: var(--navy); }
#tv .tv-diya-count { color: var(--muted); font-size: 13px; font-weight: 500; }

@keyframes tv-diya-tap {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.09); }
	100% { transform: scale(1); }
}

/* a small flame that rises and fades on each tap */
#tv .tv-diya-pop {
	position: absolute;
	left: 22px; top: 8px;
	width: 10px; height: 10px;
	border-radius: 50% 50% 50% 0;
	background: radial-gradient(circle at 50% 65%, #FFD98A 0%, var(--gold) 60%, rgba(200,144,30,0) 100%);
	transform: rotate(-45deg);
	pointer-events: none;
	animation: tv-diya-rise .9s ease-out forwards;
}
@keyframes tv-diya-rise {
	0%   { opacity: 1; transform: rotate(-45deg) translate(0, 0) scale(1); }
	100% { opacity: 0; transform: rotate(-45deg) translate(14px, -14px) scale(.5); }
}

/* ---------- remind: day picker ---------- */
#tv .tv-remind-pick {
	display: block;
	padding: 4px 4px 10px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 6px;
}
#tv .tv-remind-pick-lab {
	display: block;
	font-size: 11.5px; font-weight: 700;
	letter-spacing: .05em; text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 5px;
}
#tv .tv-remind-pick select {
	width: 100%;
	min-height: 40px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	color: var(--navy);
	font-size: 13.5px; font-weight: 600;
}

/* ---------- add to home screen ---------- */
#tv .tv-install {
	position: fixed;
	left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
	z-index: 9996;
	transform: translateY(150%);
	transition: transform .34s cubic-bezier(.4,0,.2,1);
}
#tv .tv-install.is-on { transform: translateY(0); }
#tv .tv-install-in {
	max-width: 560px; margin: 0 auto;
	display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 14px 16px;
	box-shadow: 0 16px 40px rgba(7,42,71,.28);
}
#tv .tv-install-txt { flex: 1 1 200px; min-width: 0; }
#tv .tv-install-txt strong { display: block; font-size: 14.5px; color: var(--ink); }
#tv .tv-install-txt span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
#tv .tv-install-btns { display: flex; gap: 8px; align-items: center; margin-left: auto; }
#tv .tv-install-no {
	background: none; border: 0; color: var(--muted);
	font-size: 13.5px; font-weight: 600; cursor: pointer;
	padding: 10px 8px; min-height: 40px;
}
#tv .tv-install-yes {
	background: var(--navy); color: #fff; border: 0;
	border-radius: 999px; padding: 10px 18px; min-height: 40px;
	font-size: 13.5px; font-weight: 700; cursor: pointer; white-space: nowrap;
}

/* ---------- share from inside the lightbox ---------- */
#tv .tv-lb-share {
	position: absolute;
	left: 0; right: 0; bottom: calc(env(safe-area-inset-bottom) + 16px);
	display: flex; justify-content: center; gap: 8px;
	padding: 0 14px;
}
#tv .tv-lb-share .tv-sh {
	background: rgba(255,255,255,.1);
	border-color: rgba(255,255,255,.22);
	color: #fff;
}
#tv .tv-lb-share .tv-sh:hover { color: #fff; }
#tv .tv-lb-fig { padding-bottom: 62px; }

/* ---------- participation forms ---------- */
#tv .tv-part { background: var(--white); border-top: 1px solid var(--line); }
#tv .tv-part-grid {
	display: grid; gap: 16px;
	grid-template-columns: 1fr;
}
@media (min-width: 860px) { #tv .tv-part-grid { grid-template-columns: repeat(2, 1fr); } }
#tv .tv-form {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 18px 18px 20px;
}
#tv .tv-form-t {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 6px;
}
#tv .tv-form-note { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
#tv .tv-f { display: block; margin-bottom: 12px; }
#tv .tv-f > span {
	display: block; font-size: 12.5px; font-weight: 600;
	color: var(--ink); margin-bottom: 5px;
}
#tv .tv-f > span b { color: var(--red); font-weight: 700; }
#tv .tv-f input[type=text],
#tv .tv-f input[type=email],
#tv .tv-f select,
#tv .tv-f textarea {
	width: 100%; min-height: 44px;
	font-family: inherit; font-size: 15px; color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line); border-radius: 10px;
	padding: 10px 12px;
	-webkit-appearance: none; appearance: none;
	transition: border-color .15s, box-shadow .15s;
}
#tv .tv-f select { background-image: none; }
#tv .tv-f textarea { min-height: 84px; resize: vertical; }
#tv .tv-f input:focus, #tv .tv-f select:focus, #tv .tv-f textarea:focus {
	outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,60,99,.1);
}
#tv .tv-f input[type=file] {
	width: 100%; font-size: 14px; color: var(--muted);
	background: var(--white); border: 1px dashed #C3D0DC;
	border-radius: 10px; padding: 13px;
}
#tv .tv-f-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 460px) { #tv .tv-f-row { grid-template-columns: 1fr; } }

/* the field only a bot will fill in */
#tv .tv-hp {
	position: absolute !important;
	left: -9999px; width: 1px; height: 1px;
	opacity: 0; pointer-events: none;
}

#tv .tv-form-go {
	width: 100%; min-height: 48px;
	background: var(--navy); color: #fff;
	border: 0; border-radius: 999px;
	font-size: 15px; font-weight: 700; cursor: pointer;
	margin-top: 4px;
	transition: background .15s, opacity .15s;
}
#tv .tv-form-go:hover { background: var(--navy-d); }
#tv .tv-form-go:disabled { opacity: .6; cursor: default; }
#tv .tv-form-msg { margin: 10px 0 0; font-size: 13.5px; min-height: 1px; }
#tv .tv-form-msg.is-good { color: #15803D; font-weight: 600; }
#tv .tv-form-msg.is-bad  { color: #B91C1C; font-weight: 600; }
#tv .tv-form-fine { margin: 10px 0 0; font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* ---------- live viewer count ---------- */
#tv .tv-viewers {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 12.5px; font-weight: 600; color: var(--muted);
	margin-left: auto; padding-right: 4px;
}
#tv .tv-viewers-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: #16A34A;
	box-shadow: 0 0 0 0 rgba(22,163,74,.5);
	animation: tv-vpulse 2s infinite;
}
@keyframes tv-vpulse {
	0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.45); }
	70%  { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
	100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
#tv .tv-viewers strong { color: var(--ink); font-weight: 800; }
#tv .tv-stickyzone.is-stuck .tv-viewers { display: none; }

/* ---------- countdown to day one ---------- */
#tv .tv-precount {
	background: linear-gradient(160deg, var(--navy) 0%, var(--navy-d) 100%);
	padding: clamp(20px, 5vw, 32px) 0;
	text-align: center;
}
#tv .tv-precount-lab {
	margin: 0 0 14px;
	font-size: 12px; font-weight: 800; letter-spacing: .14em;
	text-transform: uppercase; color: var(--gold);
}
#tv .tv-precount-clock {
	display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
#tv .tv-pc-box {
	display: flex; flex-direction: column; align-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 14px;
	min-width: 68px;
	padding: 12px 8px 10px;
}
#tv .tv-pc-box span {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(24px, 6vw, 34px); font-weight: 800;
	color: #fff; line-height: 1; font-variant-numeric: tabular-nums;
}
#tv .tv-pc-box small {
	margin-top: 5px; font-size: 10px; font-weight: 700;
	letter-spacing: .09em; text-transform: uppercase; color: #B9D2E6;
}
#tv .tv-precount-when { margin: 16px 0 0; font-size: 13px; color: #B9D2E6; }
#tv .tv-precount-local-t { opacity: .85; }

/* ---------- wishes wall ---------- */
#tv .tv-wishes { background: var(--white); border-top: 1px solid var(--line); }
#tv .tv-wish-form { max-width: 640px; margin: 0 auto 22px; }
#tv .tv-wish-wall {
	display: grid; gap: 12px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px)  { #tv .tv-wish-wall { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { #tv .tv-wish-wall { grid-template-columns: repeat(3, 1fr); } }
#tv .tv-wish {
	margin: 0; padding: 15px 16px 13px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-left: 3px solid var(--gold);
	border-radius: 10px;
}
#tv .tv-wish-msg {
	margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink);
	font-style: italic;
}
#tv .tv-wish-name {
	margin-top: 9px; font-size: 12.5px; font-weight: 700; color: var(--navy);
}
#tv .tv-wish.is-pending { border-left-color: #B6C2CF; opacity: .85; }
#tv .tv-wish-pending-t {
	display: inline-block; margin-left: 6px;
	font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
	color: var(--muted); text-transform: lowercase;
}
#tv .tv-wish-empty {
	grid-column: 1 / -1; text-align: center;
	color: var(--muted); font-size: 13.5px; padding: 20px 0;
}
#tv .tv-wish-more-wrap { text-align: center; margin-top: 18px; }
#tv .tv-wish-more {
	background: var(--white); border: 1px solid var(--line);
	border-radius: 999px; padding: 11px 22px; min-height: 42px;
	font-size: 13.5px; font-weight: 700; color: var(--navy); cursor: pointer;
}
#tv .tv-wish-more:hover { border-color: var(--navy); }
#tv .tv-wish-more:disabled { opacity: .6; cursor: default; }

/* ---------- player logo watermark ----------
   Deliberately small, top-right, and pointer-events:none. YouTube's own
   title/channel overlay sits top-left on pause; its control bar sits along
   the full bottom when playing. Top-right is the one corner that stays
   clear of both, so the watermark never sits on top of anything clickable. */
#tv .tv-watermark {
	position: absolute;
	top: 10px; right: 10px;
	z-index: 3;
	width: clamp(34px, 9%, 56px);
	height: clamp(34px, 9%, 56px);
	object-fit: contain;
	border-radius: 8px;
	background: rgba(255,255,255,.92);
	padding: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,.35);
	pointer-events: none;
	-webkit-user-select: none; user-select: none;
}
#tv .tv-stickyzone.is-stuck .tv-watermark {
	width: clamp(26px, 12%, 40px);
	height: clamp(26px, 12%, 40px);
	top: 6px; right: 6px;
}

@media (prefers-reduced-motion: reduce) {
	#tv *, #tv *::before { animation: none !important; transition: none !important; }
}

/* ---------- big "next live stream starts in" countdown ----------
   Sits between the tabs and the player while nothing is on air.
   Deliberately heavy: for most of the day this is the main thing a
   visitor landing on the page needs to read. */
#tv .tv-nextlive {
	background: linear-gradient(155deg, var(--navy) 0%, var(--navy-d) 100%);
	border-radius: 18px;
	padding: clamp(22px, 5.5vw, 40px) clamp(16px, 4vw, 32px);
	margin: clamp(16px, 4vw, 24px) 0 clamp(18px, 4vw, 26px);
	text-align: center;
	box-shadow: 0 10px 30px rgba(7, 42, 71, .18);
}
#tv .tv-nextlive[hidden] { display: none; }

#tv .tv-nextlive-lab {
	display: flex; align-items: center; justify-content: center; gap: 9px;
	margin: 0 0 clamp(14px, 3vw, 20px);
	font-size: clamp(12px, 3vw, 14px); font-weight: 800;
	letter-spacing: .13em; text-transform: uppercase;
	/* set explicitly — an inherited colour loses to any theme rule */
	color: var(--gold);
}
#tv .tv-nextlive-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--red); flex: none;
	animation: tv-nl-pulse 2s ease-out infinite;
}
@keyframes tv-nl-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.55); }
	70%  { box-shadow: 0 0 0 9px rgba(211,47,47,0); }
	100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}

#tv .tv-nextlive-clock {
	display: flex; justify-content: center;
	gap: clamp(8px, 2.2vw, 16px); flex-wrap: nowrap;
}
#tv .tv-nl-box {
	display: flex; flex-direction: column; align-items: center;
	background: rgba(255,255,255,.09);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 16px;
	flex: 1 1 0; min-width: 0; max-width: 132px;
	padding: clamp(12px, 3vw, 20px) clamp(4px, 1.5vw, 12px) clamp(10px, 2.4vw, 16px);
}
#tv .tv-nl-box[hidden] { display: none; }
#tv .tv-nl-box span {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(34px, 11vw, 68px);
	font-weight: 800; line-height: 1;
	color: #fff; font-variant-numeric: tabular-nums;
}
#tv .tv-nl-box small {
	margin-top: 7px;
	font-size: clamp(9px, 2.3vw, 12px); font-weight: 700;
	letter-spacing: .09em; text-transform: uppercase;
	color: #B9D2E6; white-space: nowrap;
}

#tv .tv-nextlive-when {
	margin: clamp(14px, 3vw, 20px) 0 0;
	font-size: clamp(13px, 3.2vw, 16px); font-weight: 600;
	color: #D7E6F2;
}

/* the seconds box is the least useful figure on a narrow phone, but it is
   also the one that proves the page is live — keep it, just let it shrink */
@media (max-width: 380px) {
	#tv .tv-nl-box { border-radius: 13px; }
	#tv .tv-nl-box span { font-size: clamp(28px, 10vw, 40px); }
}

/* ---------- morning / evening photo sections ----------
   The heading is only printed when a day actually has both sets, so these
   rules simply do nothing on days that have one. */
#tv .tv-galsec + .tv-galsec { margin-top: clamp(22px, 5vw, 34px); }

#tv .tv-galsec-h {
	display: flex; align-items: center; gap: 10px;
	margin: 0 0 clamp(10px, 2.5vw, 16px);
	font-family: 'Archivo', 'Noto Sans Tamil', system-ui, sans-serif;
	font-size: clamp(15px, 3.6vw, 19px); font-weight: 800;
	letter-spacing: -.01em;
	/* explicit, so no theme heading rule can win on specificity */
	color: var(--ink);
}
#tv .tv-galsec-h::after {
	content: ''; flex: 1 1 auto; height: 1px;
	background: var(--line);
}
#tv .tv-galsec-n {
	order: 3;
	flex: none;
	min-width: 24px; padding: 2px 8px;
	border-radius: 999px;
	background: var(--paper);
	border: 1px solid var(--line);
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px; font-weight: 700; text-align: center;
	color: var(--muted);
}

/* ---------- data saver toggle ---------- */
#tv .tv-dsaver {
	display: flex; justify-content: flex-end;
	padding: 0 12px 8px;
}
#tv .tv-dsaver-lab {
	display: inline-flex; align-items: center; gap: 8px;
	cursor: pointer; user-select: none;
	font-size: 12px; font-weight: 700; color: var(--muted);
}
#tv .tv-dsaver-lab input {
	position: absolute; opacity: 0; width: 1px; height: 1px;
}
#tv .tv-dsaver-track {
	position: relative; flex: none;
	width: 32px; height: 18px; border-radius: 999px;
	background: #D7DCE3;
	transition: background .15s ease;
}
#tv .tv-dsaver-knob {
	position: absolute; top: 2px; left: 2px;
	width: 14px; height: 14px; border-radius: 50%;
	background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25);
	transition: transform .15s ease;
}
#tv .tv-dsaver-lab input:checked + .tv-dsaver-track {
	background: var(--gold);
}
#tv .tv-dsaver-lab input:checked + .tv-dsaver-track .tv-dsaver-knob {
	transform: translateX(14px);
}
#tv .tv-dsaver-lab input:focus-visible + .tv-dsaver-track {
	outline: 2px solid var(--gold); outline-offset: 2px;
}

/* ---------- click-to-load player facade ----------
   Sits on top of the (initially src-less) iframe. Reuses the same visual
   language as the highlight-clip thumbnails so it does not look like a
   separate feature bolted on. */
#tv .tv-facade {
	position: absolute; inset: 0; z-index: 3;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 10px;
	border: 0; border-radius: 13px; padding: 0;
	cursor: pointer;
	background-color: #0b1620; background-size: cover; background-position: center;
	color: #fff;
}
#tv .tv-facade[hidden] { display: none; }
#tv .tv-facade::before {
	/* darken the thumbnail so the play glyph and label stay legible over
	   any footage, bright or dark */
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
	border-radius: 13px;
}
#tv .tv-facade-play {
	position: relative;
	width: 60px; height: 60px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.4);
	backdrop-filter: blur(2px);
	transition: transform .15s ease, background .15s ease;
}
#tv .tv-facade:hover .tv-facade-play,
#tv .tv-facade:active .tv-facade-play {
	transform: scale(1.08);
	background: rgba(255,255,255,.26);
}
#tv .tv-facade-play svg { margin-left: 3px; } /* optical centring of the triangle */
#tv .tv-facade-t {
	position: relative;
	font-size: 13px; font-weight: 700;
	letter-spacing: .02em;
	text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* ---------- remind me ---------- */
#tv .tv-remind {
	position: relative;
	margin-top: clamp(12px, 3vw, 18px);
	display: flex; justify-content: center;
}
#tv .tv-remind-btn {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 9px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.28);
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 13px; font-weight: 700;
	cursor: pointer;
}
#tv .tv-remind-btn:hover { background: rgba(255,255,255,.16); }

#tv .tv-remind-menu {
	position: absolute; top: calc(100% + 8px); left: 50%;
	transform: translateX(-50%);
	z-index: 6;
	min-width: 220px;
	background: var(--white);
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(11,60,99,.24);
	padding: 8px;
	display: flex; flex-direction: column; gap: 2px;
}
#tv .tv-remind-menu[hidden] { display: none; }
#tv .tv-remind-opt {
	display: block; width: 100%;
	padding: 10px 12px;
	border: 0; border-radius: 9px;
	background: none;
	text-align: left; text-decoration: none;
	font-size: 13.5px; font-weight: 600;
	color: var(--ink);
	cursor: pointer;
}
#tv .tv-remind-opt:hover { background: var(--paper); }
#tv .tv-remind-opt.is-set {
	color: #0a7d34;
}
#tv .tv-remind-note {
	margin: 4px 4px 2px;
	padding: 0;
	font-size: 11.5px; line-height: 1.4;
	color: var(--muted);
}

/* ---------- day streak ---------- */
#tv .tv-streak {
	display: flex; align-items: center; justify-content: center; gap: 6px;
	padding: 8px var(--pad) 0;
	background: var(--white);
	font-size: 12.5px; font-weight: 700;
	color: var(--muted);
	text-align: center;
}
/* the icon and share button hold their size; only the label gives way, so
   a long streak line wraps within itself rather than pushing the icons
   onto rows of their own */
#tv .tv-streak-icon,
#tv .tv-streak-share { flex: none; }
#tv .tv-streak-t, #tv #tv-streak-t { flex: 0 1 auto; min-width: 0; }
#tv .tv-streak[hidden] { display: none; }
#tv .tv-streak-icon { font-size: 14px; line-height: 1; }

/* ---------- remind me: unsupported notification state ----------
   iOS Safari (and every other iOS browser, all WebKit) exposes the
   Notification constructor but cannot use it from a normal tab. The
   option stays visible rather than disappearing, just visibly muted,
   so tapping it explains the platform limitation instead of the button
   simply vanishing without a trace. */
#tv .tv-remind-opt.is-unsupported {
	color: var(--muted);
}
#tv .tv-remind-opt.is-unsupported:hover { background: var(--paper); }

/* ---------- streak: share button ---------- */
#tv .tv-streak { position: relative; }
#tv .tv-streak-share {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px; border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--muted);
	cursor: pointer;
	margin-left: 2px;
}
#tv .tv-streak-share[hidden] { display: none; }
#tv .tv-streak-share:hover { background: var(--paper); color: var(--ink); }

#tv .tv-streak-menu {
	position: absolute; top: calc(100% + 6px); left: 50%;
	transform: translateX(-50%);
	z-index: 6;
	min-width: 160px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 10px 26px rgba(11,60,99,.22);
	padding: 6px;
	display: flex; flex-direction: column; gap: 2px;
	text-align: left;
}

/* ---------- end of festival recap ----------
   Takes the place the player occupied, so the page does not visibly
   collapse on day 26 — same visual weight, different content. */
#tv .tv-recap {
	background: linear-gradient(155deg, var(--navy) 0%, var(--navy-d) 100%);
	border-radius: 18px;
	padding: clamp(26px, 6vw, 44px) clamp(18px, 4vw, 34px);
	margin: clamp(16px, 4vw, 24px) 0;
	text-align: center;
	box-shadow: 0 10px 30px rgba(7, 42, 71, .18);
}
#tv .tv-recap-h {
	margin: 0 0 8px;
	font-family: 'Archivo', 'Noto Sans Tamil', system-ui, sans-serif;
	font-size: clamp(20px, 5vw, 30px); font-weight: 800;
	letter-spacing: -.015em;
	/* explicit, so no theme heading rule wins on specificity */
	color: #fff;
}
#tv .tv-recap-sub {
	margin: 0 0 clamp(20px, 4.5vw, 28px);
	font-size: clamp(13px, 3.2vw, 16px);
	color: #B9D2E6;
}
#tv .tv-recap-stats {
	display: flex; justify-content: center;
	gap: clamp(10px, 3vw, 22px);
}
#tv .tv-recap-stat {
	display: flex; flex-direction: column; align-items: center;
	background: rgba(255,255,255,.09);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 15px;
	flex: 1 1 0; min-width: 0; max-width: 140px;
	padding: clamp(12px, 3vw, 18px) clamp(6px, 2vw, 14px);
}
#tv .tv-recap-stat strong {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(24px, 7vw, 40px); font-weight: 800; line-height: 1;
	color: #fff; font-variant-numeric: tabular-nums;
}
#tv .tv-recap-stat small {
	margin-top: 6px;
	font-size: clamp(9px, 2.3vw, 12px); font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	color: #B9D2E6; white-space: nowrap;
}
#tv .tv-recap-note {
	margin: clamp(18px, 4vw, 24px) 0 0;
	font-size: clamp(12px, 3vw, 14px);
	color: #D7E6F2;
}
