/* Studio City Chimney & Masonry — page styling.
   Valley palette for the Ventura Blvd crew. */

:root {
	--st-brick: #A64F2F;
	--st-brick-dark: #7A3419;
	--st-ember: #F39743;
	--st-ember-glow: #FFCF92;
	--st-coast: #27707B;
	--st-charcoal: #141110;
	--st-charcoal-2: #231D18;
	--st-charcoal-3: #2E2620;
	--st-cream: #F4EEE2;
	--st-cream-2: #EAE3D2;
	--st-ink: #191310;
	--st-muted: #6E6158;
	--st-line: rgba(25,21,19,.12);
	--st-gold: #E2BA4F;
	--st-green-ok: #2E7B4D;
	--st-radius: 16px;
	--st-radius-lg: 26px;
	--st-shadow-sm: 0 4px 14px rgba(25,21,19,.08);
	--st-shadow: 0 14px 40px rgba(25,21,19,.14);
	--st-shadow-lg: 0 30px 70px rgba(25,21,19,.26);
	--st-wrap: 1200px;
	--st-font: 'Albert Sans',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
	--st-display: 'Khand','Albert Sans',var(--st-font);
	--st-header-h: 76px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--st-font);
	color: var(--st-ink);
	background: var(--st-cream);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--st-brick);
	text-decoration: none;
}

a:hover {
	color: var(--st-brick-dark);
}

button {
	font-family: inherit;
}

h1,h2,h3,h4 {
	font-family: var(--st-display);
	font-weight: 700;
	line-height: 1.08;
	margin: 0 0 .5em;
	letter-spacing: .4px;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(2.15rem,5.4vw,4.15rem);
}

h2 {
	font-size: clamp(1.85rem,3.9vw,3rem);
}

h3 {
	font-size: clamp(1.15rem,1.7vw,1.45rem);
}

p {
	margin: 0 0 1.1em;
}

.soundstage {
	width: min(var(--st-wrap),92%);
	margin-inline: auto;
}

.middled {
	text-align: center;
}

.offscreen-aid {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.jumpcut-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--st-brick);
	color: #fff;
	padding: 12px 20px;
	z-index: 9999;
}

.jumpcut-link:focus {
	left: 10px;
	top: 10px;
}

:focus-visible {
	outline: 3px solid var(--st-ember);
	outline-offset: 3px;
}

#bg-fx-st {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

#emberCanvas-st {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .55;
}

.glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: .34;
	will-change: transform;
}

.glow-orb-1 {
	width: 520px;
	height: 520px;
	background: radial-gradient(circle at 30% 30%,var(--st-ember),transparent 68%);
	top: -140px;
	left: -120px;
	animation: float1 26s ease-in-out infinite;
}

.glow-orb-2 {
	width: 640px;
	height: 640px;
	background: radial-gradient(circle at 60% 40%,var(--st-brick),transparent 66%);
	top: 38%;
	right: -220px;
	animation: float2 32s ease-in-out infinite;
}

.glow-orb-3 {
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 50% 50%,var(--st-gold),transparent 65%);
	bottom: -120px;
	left: 22%;
	animation: float3 29s ease-in-out infinite;
}

@keyframes float1 {
	0%,100% {
		transform: translate3d(0,0,0) scale(1);
	}
	50% {
		transform: translate3d(90px,120px,0) scale(1.16);
	}
}

@keyframes float2 {
	0%,100% {
		transform: translate3d(0,0,0) scale(1.05);
	}
	50% {
		transform: translate3d(-120px,-90px,0) scale(.9);
	}
}

@keyframes float3 {
	0%,100% {
		transform: translate3d(0,0,0) scale(.95);
	}
	50% {
		transform: translate3d(70px,-110px,0) scale(1.2);
	}
}

main,header,footer,.banner-strip {
	position: relative;
	z-index: 1;
}

.cue-key {
	--st-bg: var(--st-brick);
	--st-fg: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	background: var(--st-bg);
	color: var(--st-fg);
	font-weight: 700;
	font-size: 1.02rem;
	padding: 16px 30px;
	border-radius: 60px;
	border: 0;
	cursor: pointer;
	letter-spacing: .3px;
	box-shadow: 0 10px 26px rgba(178,58,33,.32);
	transition: transform .22s cubic-bezier(.2,.8,.3,1),box-shadow .22s,background .22s;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.cue-key:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(178,58,33,.42);
	color: #fff;
}

.cue-key:active {
	transform: translateY(-1px);
}

.cue-key::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(100deg,transparent,rgba(255,255,255,.42),transparent);
	transform: skewX(-18deg);
	animation: sheen 4.5s ease-in-out infinite;
}

@keyframes sheen {
	0%,72% {
		left: -60%;
	}
	88%,100% {
		left: 135%;
	}
}

.cue-key-blaze {
	--st-bg: linear-gradient(135deg,var(--st-ember),var(--st-brick));
	box-shadow: 0 10px 26px rgba(240,128,60,.4);
}

.cue-key-scrim {
	--st-bg: transparent;
	--st-fg: #fff;
	border: 2px solid rgba(255,255,255,.6);
	box-shadow: none;
}

.cue-key-scrim:hover {
	background: rgba(255,255,255,.12);
	box-shadow: none;
}

.cue-key-noir {
	--st-bg: var(--st-charcoal);
	box-shadow: 0 10px 26px rgba(25,21,19,.3);
}

.cue-key-wide {
	padding: 19px 38px;
	font-size: 1.12rem;
}

.cue-key-full {
	display: flex;
	width: 100%;
}

.banner-strip {
	background: var(--st-charcoal);
	color: #DCCFC2;
	font-size: .86rem;
	letter-spacing: .3px;
}

.banner-strip .soundstage {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	align-items: center;
	justify-content: space-between;
	padding: 9px 0;
}

.banner-strip b {
	color: #fff;
}

.banner-strip .bs-cell {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.onair-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #49C77E;
	box-shadow: 0 0 0 0 rgba(73,199,126,.7);
	animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
	70% {
		box-shadow: 0 0 0 9px rgba(73,199,126,0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(73,199,126,0);
	}
}

.masthead-band {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(246,240,231,.86);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--st-line);
	transition: box-shadow .3s,background .3s;
}

.masthead-band.weighted {
	box-shadow: 0 8px 30px rgba(25,21,19,.13);
	background: rgba(246,240,231,.96);
}

.masthead-band .soundstage {
	width: min(1360px,94%);
}

.gridline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: var(--st-header-h);
}

.marquee-name {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--st-ink);
	flex: 0 0 auto;
}

.marquee-name:hover {
	color: var(--st-ink);
}

.marquee-name-glyph {
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	filter: drop-shadow(0 4px 8px rgba(178,58,33,.3));
}

.marquee-name-script {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.marquee-name-script strong {
	font-family: var(--st-display);
	font-size: 1.06rem;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.marquee-name-script span {
	font-size: .7rem;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	color: var(--st-brick);
	font-weight: 600;
}

.lineup {
	display: flex;
	align-items: center;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lineup a {
	color: var(--st-ink);
	font-weight: 600;
	font-size: .92rem;
	white-space: nowrap;
	position: relative;
	padding: 6px 0;
}

.lineup a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background: var(--st-brick);
	transition: width .28s;
}

.lineup a:hover::after,.lineup a.spotlit::after {
	width: 100%;
}

.gridline-push {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.gridline-digits {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	text-align: right;
}

.gridline-digits small {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: var(--st-muted);
}

.gridline-digits b {
	font-family: var(--st-display);
	font-size: 1.22rem;
	color: var(--st-brick);
}

.clapper {
	display: none;
	width: 48px;
	height: 44px;
	border: 1px solid var(--st-line);
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	padding: 0;
	position: relative;
}

.clapper span {
	position: absolute;
	left: 13px;
	width: 22px;
	height: 2px;
	background: var(--st-ink);
	transition: .3s;
}

.clapper span:nth-child(1) {
	top: 15px;
}

.clapper span:nth-child(2) {
	top: 21px;
}

.clapper span:nth-child(3) {
	top: 27px;
}

.clapper[aria-expanded="true"] span:nth-child(1) {
	top: 21px;
	transform: rotate(45deg);
}

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

.clapper[aria-expanded="true"] span:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg);
}

.opener {
	position: relative;
	color: #fff;
	padding: clamp(56px,8vw,104px) 0 clamp(70px,9vw,120px);
	overflow: hidden;
	isolation: isolate;
}

.opener-backlot {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.opener-backlot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
	to {
		transform: scale(1.17) translate3d(-1.5%,-1.5%,0);
	}
}

.opener::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(100deg,rgba(18,14,12,.95) 0%,rgba(26,18,14,.86) 38%,rgba(181,57,31,.6) 74%,rgba(242,145,63,.42) 100%);
}

.opener-blocking {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 52px;
	align-items: center;
}

.slugline {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.26);
	color: #fff;
	padding: 8px 17px;
	border-radius: 60px;
	font-size: .79rem;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 22px;
	backdrop-filter: blur(6px);
}

.opener h1 {
	color: #fff;
	text-shadow: 0 6px 30px rgba(0,0,0,.4);
}

.opener h1 .keylight {
	color: var(--st-ember-glow);
	display: inline-block;
}

.opener-logline {
	font-size: clamp(1.02rem,1.5vw,1.2rem);
	color: #EADFD4;
	max-width: 610px;
}

.opener-takes {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 26px;
}

.opener-credits {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: .92rem;
	color: #E6DAD0;
}

.opener-credits li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkmark-dot {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(73,199,126,.2);
	display: grid;
	place-items: center;
}

.checkmark-dot svg {
	width: 12px;
	height: 12px;
	stroke: #6BE39C;
	fill: none;
	stroke-width: 3;
}

.billboard-card {
	background: linear-gradient(160deg,rgba(255,255,255,.98),rgba(246,240,231,.94));
	color: var(--st-ink);
	border-radius: var(--st-radius-lg);
	padding: 30px 28px;
	box-shadow: var(--st-shadow-lg);
	border: 1px solid rgba(255,255,255,.6);
	position: relative;
	animation: floaty 6.5s ease-in-out infinite;
}

@keyframes floaty {
	0%,100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-13px);
	}
}

.billboard-banner {
	position: absolute;
	top: -18px;
	right: -10px;
	background: var(--st-brick);
	color: #fff;
	font-family: var(--st-display);
	font-size: .82rem;
	letter-spacing: 1.4px;
	padding: 9px 16px;
	border-radius: 40px;
	box-shadow: 0 8px 20px rgba(178,58,33,.4);
	text-transform: uppercase;
	animation: wobble 5s ease-in-out infinite;
}

@keyframes wobble {
	0%,100% {
		transform: rotate(-3deg);
	}
	50% {
		transform: rotate(3deg);
	}
}

.billboard-figure {
	font-family: var(--st-display);
	font-size: clamp(3.4rem,7vw,4.6rem);
	line-height: 1;
	color: var(--st-brick);
	display: flex;
	align-items: flex-start;
	gap: 4px;
	justify-content: center;
	margin: 6px 0 2px;
}

.billboard-figure sup {
	font-size: .42em;
	margin-top: .32em;
}

.billboard-card h2 {
	font-size: 1.32rem;
	margin-bottom: 4px;
	text-align: center;
}

.billboard-card .billboard-tagline {
	text-align: center;
	color: var(--st-muted);
	font-size: .9rem;
	margin-bottom: 16px;
}

.billboard-roster {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	gap: 9px;
	font-size: .95rem;
}

.billboard-roster li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.billboard-roster svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	margin-top: 3px;
	stroke: var(--st-brick);
	fill: none;
	stroke-width: 3;
}

.billboard-smallprint {
	font-size: .76rem;
	color: var(--st-muted);
	text-align: center;
	margin: 12px 0 0;
	line-height: 1.5;
}

.crawl-strip {
	background: var(--st-charcoal-2);
	color: #CBBDB0;
	overflow: hidden;
	padding: 13px 0;
	border-block: 1px solid rgba(255,255,255,.07);
}

.crawl-strip-run {
	display: flex;
	gap: 52px;
	white-space: nowrap;
	width: max-content;
	animation: scrollX 34s linear infinite;
	font-family: var(--st-display);
	letter-spacing: 2px;
	font-size: .94rem;
	text-transform: uppercase;
}

.crawl-strip-run span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.crawl-strip-run b {
	color: var(--st-ember);
}

@keyframes scrollX {
	to {
		transform: translateX(-50%);
	}
}

section {
	padding: clamp(56px,7vw,100px) 0;
	position: relative;
}

.slate-head {
	max-width: 760px;
	margin: 0 auto 52px;
}

.slate-head.housed {
	margin-inline: 0;
}

.callout-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--st-brick);
	font-weight: 800;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	font-size: .78rem;
	margin-bottom: 14px;
}

.callout-chip::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--st-brick);
}

.logline-p {
	font-size: 1.06rem;
	color: var(--st-muted);
}

.stage-cream {
	background: linear-gradient(180deg,rgba(237,227,213,.75),rgba(246,240,231,.4));
}

.stage-dark {
	background: var(--st-charcoal);
	color: #DDD1C6;
}

.stage-dark h2,.stage-dark h3 {
	color: #fff;
}

.stage-dark .logline-p {
	color: #B7A99C;
}

.stage-dark .callout-chip {
	color: var(--st-ember-glow);
}

.stage-dark .callout-chip::before {
	background: var(--st-ember);
}

.boxscore {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 22px;
}

.boxscore-cell {
	background: #fff;
	border-radius: var(--st-radius);
	padding: 26px 20px;
	text-align: center;
	box-shadow: var(--st-shadow-sm);
	border: 1px solid var(--st-line);
	transition: transform .3s,box-shadow .3s;
}

.boxscore-cell:hover {
	transform: translateY(-7px);
	box-shadow: var(--st-shadow);
}

.boxscore-cell b {
	display: block;
	font-family: var(--st-display);
	font-size: clamp(2rem,3.6vw,2.9rem);
	color: var(--st-brick);
	line-height: 1;
}

.boxscore-cell span {
	font-size: .87rem;
	color: var(--st-muted);
	letter-spacing: .6px;
}

.department-lot {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(295px,1fr));
	gap: 26px;
}

.department {
	background: #fff;
	border-radius: var(--st-radius-lg);
	overflow: hidden;
	box-shadow: var(--st-shadow-sm);
	border: 1px solid var(--st-line);
	display: flex;
	flex-direction: column;
	transition: transform .35s cubic-bezier(.2,.8,.3,1),box-shadow .35s;
}

.department:hover {
	transform: translateY(-10px);
	box-shadow: var(--st-shadow-lg);
}

.department-still {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--st-charcoal-3);
}

.department-still img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2,.8,.3,1);
}

.department:hover .department-still img {
	transform: scale(1.09);
}

.department-still::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,transparent 42%,rgba(20,16,14,.72));
}

.department-badge {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 2;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: var(--st-brick);
	display: grid;
	place-items: center;
	box-shadow: 0 8px 20px rgba(178,58,33,.45);
}

.department-badge svg {
	width: 24px;
	height: 24px;
	stroke: #fff;
	fill: none;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.department-copy {
	padding: 24px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.department-copy h3 {
	margin-bottom: 8px;
}

.department-copy p {
	font-size: .95rem;
	color: var(--st-muted);
	margin-bottom: 16px;
}

.department-copy ul {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	font-size: .9rem;
	display: grid;
	gap: 6px;
}

.department-copy li {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	color: #4A423C;
}

.department-copy li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--st-ember);
	flex: 0 0 auto;
	margin-top: 8px;
}

.department-lead {
	margin-top: auto;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .95rem;
}

.department-lead svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.4;
	transition: transform .3s;
}

.department:hover .department-lead svg {
	transform: translateX(5px);
}

.cue-board {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center;
}

.cue-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cue-list li {
	display: flex;
	gap: 15px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 14px;
	padding: 16px 18px;
	align-items: flex-start;
	transition: transform .3s,border-color .3s,background .3s;
}

.cue-list li:hover {
	transform: translateX(7px);
	border-color: rgba(240,128,60,.55);
	background: rgba(240,128,60,.08);
}

.cue-list .cu {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 11px;
	background: rgba(240,128,60,.16);
	display: grid;
	place-items: center;
}

.cue-list .cu svg {
	width: 20px;
	height: 20px;
	stroke: var(--st-ember-glow);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cue-list b {
	display: block;
	color: #fff;
	font-family: var(--st-display);
	letter-spacing: .5px;
	font-size: 1.02rem;
	text-transform: uppercase;
}

.cue-list span {
	font-size: .92rem;
	color: #B3A599;
}

.cue-still {
	position: relative;
	border-radius: var(--st-radius-lg);
	overflow: hidden;
	box-shadow: var(--st-shadow-lg);
}

.cue-still img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}

.cue-caption {
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	background: rgba(25,21,19,.82);
	backdrop-filter: blur(9px);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 16px;
	padding: 16px 18px;
	color: #fff;
}

.cue-caption b {
	font-family: var(--st-display);
	display: block;
	color: var(--st-ember-glow);
	letter-spacing: 1px;
}

.cue-caption span {
	font-size: .88rem;
	color: #C7B9AC;
}

.sequence {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 24px;
	counter-reset: step;
	position: relative;
}

.sequence-beat {
	background: #fff;
	border-radius: var(--st-radius);
	padding: 34px 24px 26px;
	box-shadow: var(--st-shadow-sm);
	border: 1px solid var(--st-line);
	position: relative;
	transition: transform .35s,box-shadow .35s;
}

.sequence-beat:hover {
	transform: translateY(-8px);
	box-shadow: var(--st-shadow);
}

.sequence-marker {
	position: absolute;
	top: -20px;
	left: 24px;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(140deg,var(--st-ember),var(--st-brick));
	color: #fff;
	font-family: var(--st-display);
	font-size: 1.3rem;
	display: grid;
	place-items: center;
	box-shadow: 0 10px 22px rgba(178,58,33,.35);
}

.sequence-beat h3 {
	font-size: 1.12rem;
	margin-top: 8px;
}

.sequence-beat p {
	font-size: .93rem;
	color: var(--st-muted);
	margin: 0;
}

.reel-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

.reel-frame {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--st-shadow-sm);
	aspect-ratio: 1;
	background: var(--st-charcoal-3);
}

.reel-frame:nth-child(1),.reel-frame:nth-child(6) {
	grid-row: span 2;
	aspect-ratio: 1/2.06;
}

.reel-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.2,.8,.3,1);
}

.reel-frame:hover img {
	transform: scale(1.1);
}

.reel-frame figcaption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 34px 16px 14px;
	background: linear-gradient(transparent,rgba(20,16,14,.86));
	color: #fff;
	font-size: .85rem;
	font-weight: 600;
	transform: translateY(6px);
	opacity: 0;
	transition: .35s;
}

.reel-frame:hover figcaption {
	transform: translateY(0);
	opacity: 1;
}

.notices {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
}

.notice {
	background: #fff;
	border-radius: var(--st-radius);
	padding: 28px 26px;
	box-shadow: var(--st-shadow-sm);
	border: 1px solid var(--st-line);
	position: relative;
	transition: transform .35s,box-shadow .35s;
}

.notice:hover {
	transform: translateY(-8px);
	box-shadow: var(--st-shadow);
}

.notice .quotehook {
	position: absolute;
	top: 16px;
	right: 22px;
	font-family: var(--st-display);
	font-size: 4.2rem;
	color: rgba(178,58,33,.13);
	line-height: 1;
}

.sparkles {
	display: flex;
	gap: 3px;
	margin-bottom: 12px;
}

.sparkles svg {
	width: 18px;
	height: 18px;
	fill: var(--st-gold);
}

.notice p {
	font-size: .98rem;
	color: #4A423C;
}

.notice footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	border-top: 1px solid var(--st-line);
	padding-top: 14px;
}

.headshot {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(140deg,var(--st-brick),var(--st-ember));
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--st-display);
	font-size: 1.05rem;
	flex: 0 0 auto;
}

.notice footer b {
	display: block;
	font-size: .95rem;
}

.notice footer span {
	font-size: .8rem;
	color: var(--st-muted);
}

.zones-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.zones-chips li {
	background: #fff;
	border: 1px solid var(--st-line);
	border-radius: 60px;
	padding: 10px 20px;
	font-size: .92rem;
	font-weight: 600;
	box-shadow: var(--st-shadow-sm);
	transition: transform .25s,background .25s,color .25s,border-color .25s;
}

.zones-chips li:hover {
	transform: translateY(-4px);
	background: var(--st-brick);
	color: #fff;
	border-color: var(--st-brick);
}

.qa-block {
	max-width: 880px;
	margin-inline: auto;
}

.qa-block details {
	background: #fff;
	border: 1px solid var(--st-line);
	border-radius: 14px;
	margin-bottom: 12px;
	box-shadow: var(--st-shadow-sm);
	overflow: hidden;
	transition: box-shadow .3s;
}

.qa-block details[open] {
	box-shadow: var(--st-shadow);
}

.qa-block summary {
	cursor: pointer;
	list-style: none;
	padding: 20px 58px 20px 22px;
	font-weight: 700;
	font-size: 1.03rem;
	position: relative;
}

.qa-block summary::-webkit-details-marker {
	display: none;
}

.qa-block summary::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 2.6px solid var(--st-brick);
	border-bottom: 2.6px solid var(--st-brick);
	transform: translateY(-70%) rotate(45deg);
	transition: transform .3s;
}

.qa-block details[open] summary::after {
	transform: translateY(-25%) rotate(-135deg);
}

.qa-block .qa-block-copy {
	padding: 0 22px 20px;
	color: var(--st-muted);
	font-size: .97rem;
}

.qa-block .qa-block-copy p:last-child {
	margin-bottom: 0;
}

.trailer-band {
	position: relative;
	color: #fff;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.trailer-band .trailer-backlot {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.trailer-band .trailer-backlot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trailer-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg,rgba(140,43,22,.94),rgba(25,21,19,.9));
}

.trailer-band h2 {
	color: #fff;
	font-size: clamp(2rem,4.4vw,3.3rem);
}

.trailer-band p {
	color: #EFE3D8;
	max-width: 660px;
	margin-inline: auto;
	font-size: 1.06rem;
}

.trailer-takes {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 28px;
}

.trailer-digits {
	display: block;
	font-family: var(--st-display);
	font-size: clamp(2rem,5vw,2.9rem);
	color: #fff;
	margin-top: 20px;
	letter-spacing: 1px;
}

.trailer-digits:hover {
	color: var(--st-ember-glow);
}

.booking-board {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: start;
}

.booking-board>* {
	min-width: 0;
}

.callsheet a,.credits-band address a {
	overflow-wrap: anywhere;
}

.page-card {
	background: #fff;
	border-radius: var(--st-radius-lg);
	padding: 34px 32px;
	box-shadow: var(--st-shadow);
	border: 1px solid var(--st-line);
}

.formcell {
	margin-bottom: 16px;
}

.formcell label {
	display: block;
	font-weight: 700;
	font-size: .86rem;
	margin-bottom: 7px;
	letter-spacing: .4px;
}

.formcell input,.formcell select,.formcell textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.6px solid var(--st-line);
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	background: #FBF7F0;
	color: var(--st-ink);
	transition: border-color .25s,box-shadow .25s,background .25s;
}

.formcell input:focus,.formcell select:focus,.formcell textarea:focus {
	outline: none;
	border-color: var(--st-brick);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(178,58,33,.12);
}

.formcell textarea {
	resize: vertical;
	min-height: 110px;
}

.split-run {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.page-note {
	font-size: .79rem;
	color: var(--st-muted);
	margin-top: 12px;
	text-align: center;
}

.page-line {
	display: none;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: .94rem;
	margin-bottom: 16px;
}

.page-line.greenlit {
	display: block;
	background: rgba(46,125,81,.1);
	color: #2E7B4D;
	border: 1px solid rgba(46,125,81,.3);
}

.page-line.flub {
	display: block;
	background: rgba(178,58,33,.1);
	color: var(--st-brick-dark);
	border: 1px solid rgba(178,58,33,.3);
}

.callsheet {
	list-style: none;
	padding: 0;
	margin: 0 0 26px;
	display: grid;
	gap: 16px;
}

.callsheet li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.callsheet-badge {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 14px;
	background: rgba(178,58,33,.1);
	display: grid;
	place-items: center;
}

.callsheet-badge svg {
	width: 22px;
	height: 22px;
	stroke: var(--st-brick);
	fill: none;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.callsheet b {
	display: block;
	font-family: var(--st-display);
	letter-spacing: .6px;
	text-transform: uppercase;
	font-size: .95rem;
}

.callsheet a,.callsheet span {
	color: var(--st-muted);
	font-size: 1rem;
}

.callsheet a:hover {
	color: var(--st-brick);
}

.location-still {
	border-radius: var(--st-radius);
	overflow: hidden;
	box-shadow: var(--st-shadow-sm);
	border: 1px solid var(--st-line);
	line-height: 0;
}

.location-still iframe {
	width: 100%;
	height: 290px;
	border: 0;
}

.showtimes {
	background: #fff;
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	padding: 22px 24px;
	box-shadow: var(--st-shadow-sm);
	margin-bottom: 26px;
}

.showtimes dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 18px;
	margin: 0;
	font-size: .95rem;
}

.showtimes dt {
	font-weight: 700;
}

.showtimes dd {
	margin: 0;
	text-align: right;
	color: var(--st-muted);
}

.credits-band {
	background: var(--st-charcoal);
	color: #A99B8E;
	padding: 70px 0 0;
	font-size: .95rem;
}

.credits-board {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 38px;
	padding-bottom: 44px;
}

.credits-band h4 {
	color: #fff;
	font-size: 1rem;
	letter-spacing: 1.6px;
	margin-bottom: 18px;
}

.credits-band a {
	color: #A99B8E;
}

.credits-band a:hover {
	color: var(--st-ember-glow);
}

.credits-leads {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.credits-mark {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	color: #fff;
}

.credits-mark strong {
	font-family: var(--st-display);
	font-size: 1.1rem;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.credits-scroll {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	justify-content: space-between;
	font-size: .84rem;
}

.standby-dial {
	position: fixed;
	right: 22px;
	bottom: 26px;
	z-index: 950;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg,var(--st-brick),var(--st-brick-dark));
	color: #fff;
	padding: 15px 24px 15px 17px;
	border-radius: 60px;
	font-weight: 800;
	letter-spacing: .4px;
	box-shadow: 0 16px 40px rgba(178,58,33,.5);
	transition: transform .3s cubic-bezier(.2,.8,.3,1),box-shadow .3s;
}

.standby-dial:hover {
	transform: scale(1.06) translateY(-3px);
	color: #fff;
	box-shadow: 0 22px 52px rgba(178,58,33,.6);
}

.standby-dial .sd-halo {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.standby-dial .sd-halo::before,.standby-dial .sd-halo::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.6);
	animation: ring 2.6s ease-out infinite;
}

.standby-dial .sd-halo::after {
	animation-delay: 1.3s;
}

@keyframes ring {
	0% {
		transform: scale(1);
		opacity: .85;
	}
	100% {
		transform: scale(2.1);
		opacity: 0;
	}
}

.standby-dial svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	animation: shake 3.2s ease-in-out infinite;
}

@keyframes shake {
	0%,86%,100% {
		transform: rotate(0);
	}
	90% {
		transform: rotate(-14deg);
	}
	94% {
		transform: rotate(14deg);
	}
}

.standby-dial .sd-script {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.standby-dial .sd-script small {
	font-size: .66rem;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	opacity: .85;
	font-weight: 600;
}

.standby-dial .sd-script b {
	font-family: var(--st-display);
	font-size: 1.12rem;
	letter-spacing: .6px;
}

.pocket-bar2 {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 960;
	background: rgba(25,21,19,.97);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
}

.pocket-bar2 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 8px;
}

.pocket-bar2 a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding: 9px 4px;
	border-radius: 12px;
	color: #E8DCD2;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
}

.pocket-bar2 a svg {
	width: 19px;
	height: 19px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pocket-bar2 .pb2-dial {
	background: linear-gradient(135deg,var(--st-brick),var(--st-brick-dark));
	color: #fff;
	box-shadow: 0 6px 18px rgba(178,58,33,.5);
	animation: mbPulse 2.4s ease-in-out infinite;
}

@keyframes mbPulse {
	0%,100% {
		box-shadow: 0 6px 18px rgba(178,58,33,.5);
	}
	50% {
		box-shadow: 0 6px 26px rgba(240,128,60,.85);
	}
}

.crane-up {
	position: fixed;
	right: 26px;
	bottom: 104px;
	z-index: 940;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--st-charcoal);
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: var(--st-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .3s;
	border: 0;
	cursor: pointer;
}

.crane-up.staged {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.crane-up svg {
	width: 18px;
	height: 18px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.6;
}

.fadein {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .8s cubic-bezier(.2,.8,.3,1),transform .8s cubic-bezier(.2,.8,.3,1);
}

.fadein.cued {
	opacity: 1;
	transform: none;
}

.fadein.vst1 {
	transition-delay: .1s;
}

.fadein.vst2 {
	transition-delay: .2s;
}

.fadein.vst3 {
	transition-delay: .3s;
}

.fadein.vst4 {
	transition-delay: .4s;
}

.fadein.vst5 {
	transition-delay: .5s;
}

.fadein.vst6 {
	transition-delay: .6s;
}

@media (max-width:1080px) {
	.opener-blocking {
		grid-template-columns: 1fr;
		gap: 44px;
	}
	.billboard-card {
		max-width: 520px;
	}
	.boxscore {
		grid-template-columns: repeat(2,1fr);
	}
	.sequence {
		grid-template-columns: repeat(2,1fr);
		row-gap: 38px;
	}
	.notices {
		grid-template-columns: 1fr;
	}
	.credits-board {
		grid-template-columns: 1fr 1fr;
	}
	.reel-grid {
		grid-template-columns: repeat(3,1fr);
	}
}

@media (max-width:1440px) {
	.lineup {
		gap: 18px;
	}
	.lineup a {
		font-size: .9rem;
	}
	.gridline-digits {
		display: none;
	}
}

@media (max-width:1240px) {
	.lineup {
		gap: 15px;
	}
	.lineup a {
		font-size: .86rem;
	}
	.lineup li:has(.gridline-soft) {
		display: none;
	}
	.gridline-soft {
		display: none;
	}
}

@media (max-width:1150px) {
	.lineup {
		position: fixed;
		inset: var(--st-header-h) 0 auto 0;
		background: var(--st-cream);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 6% 26px;
		border-bottom: 1px solid var(--st-line);
		box-shadow: var(--st-shadow);
		transform: translateY(-135%);
		transition: transform .4s cubic-bezier(.2,.8,.3,1);
		max-height: calc(100vh - var(--st-header-h));
		overflow: auto;
	}
	.lineup.rolling {
		transform: translateY(0);
	}
	.lineup li:has(.gridline-soft) {
		display: block;
	}
	.gridline-soft {
		display: block;
	}
	.lineup li {
		border-bottom: 1px solid var(--st-line);
	}
	.lineup a {
		display: block;
		padding: 15px 0;
		font-size: 1.05rem;
	}
	.clapper {
		display: block;
	}
	.gridline-digits {
		display: none;
	}
	.gridline-push .cue-key {
		padding: 12px 20px;
		font-size: .92rem;
	}
	.cue-board,.booking-board {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.standby-dial {
		display: none;
	}
	.pocket-bar2 {
		display: block;
	}
	body {
		padding-bottom: 74px;
	}
	.crane-up {
		bottom: 88px;
		right: 16px;
	}
}

@media (max-width:640px) {
	body {
		font-size: 16px;
	}
	.banner-strip .soundstage {
		justify-content: center;
		text-align: center;
		font-size: .8rem;
		gap: 6px 16px;
		padding: 7px 0;
	}
	.banner-strip .bs-stow,.banner-strip .bs-flash {
		display: none;
	}
	.gridline-dial-script {
		display: none;
	}
	.gridline-push .cue-key {
		padding: 12px 14px;
		border-radius: 50%;
	}
	.gridline-push {
		gap: 9px;
	}
	.boxscore,.sequence {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
	.reel-grid {
		grid-template-columns: repeat(2,1fr);
		gap: 10px;
	}
	.reel-frame:nth-child(1),.reel-frame:nth-child(6) {
		grid-row: span 1;
		aspect-ratio: 1;
	}
	.split-run {
		grid-template-columns: 1fr;
	}
	.page-card {
		padding: 26px 20px;
	}
	.credits-board {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.opener-takes .cue-key {
		flex: 1 1 100%;
	}
	.gridline {
		gap: 8px;
	}
	.marquee-name {
		min-width: 0;
		gap: 9px;
	}
	.marquee-name-glyph {
		width: 38px;
		height: 38px;
	}
	.marquee-name-script {
		min-width: 0;
	}
	.marquee-name-script span {
		font-size: .56rem;
		letter-spacing: 1.2px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.marquee-name-script strong {
		font-size: .85rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.boxscore .boxscore-cell {
		padding: 20px 12px;
	}
	.department-copy,.page-card {
		overflow-wrap: break-word;
	}
}

@media (max-width:400px) {
	.soundstage {
		width: 94%;
	}
	.sequence {
		grid-template-columns: 1fr;
		row-gap: 34px;
	}
	.boxscore {
		gap: 10px;
	}
	.marquee-name-glyph {
		width: 34px;
		height: 34px;
	}
	.marquee-name-script strong {
		font-size: .8rem;
	}
	.gridline-push .cue-key {
		padding: 11px 13px;
	}
	.clapper {
		width: 44px;
	}
}

@media (prefers-reduced-motion:reduce) {
	*,*::before,*::after {
		animation-duration: .001ms!important;
		animation-iteration-count: 1!important;
		transition-duration: .001ms!important;
	}
	html {
		scroll-behavior: auto;
	}
	.fadein {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.masthead-band,.standby-dial,.pocket-bar2,.crane-up,#bg-fx-st,.crawl-strip {
		display: none!important;
	}
	body {
		background: #fff;
		color: #000;
	}
}

.billboard-comp {
	font-family: var(--st-display);
	font-size: clamp(3rem,6.4vw,4.3rem);
	line-height: 1;
	color: var(--st-brick);
	text-align: center;
	letter-spacing: 2px;
	margin: 8px 0 2px;
}

.billboard-comp small {
	display: block;
	font-family: var(--st-font);
	font-size: .31em;
	letter-spacing: 3.4px;
	color: var(--st-coast);
	font-weight: 800;
	margin-top: 6px;
}

.billboard-card .billboard-roster svg {
	stroke: var(--st-coast);
}

.banner-comp {
	background: var(--st-coast);
	box-shadow: 0 8px 20px rgba(30,111,104,.42);
}

.checkmark-dot-coast {
	background: rgba(30,111,104,.22);
}

.checkmark-dot-coast svg {
	stroke: #7FD8CE;
}

.aftershock-note {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: rgba(242,145,63,.1);
	border: 1px solid rgba(242,145,63,.34);
	border-radius: 14px;
	padding: 16px 18px;
	margin-top: 24px;
}

.aftershock-note svg {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	margin-top: 2px;
	stroke: var(--st-brick);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aftershock-note p {
	margin: 0;
	font-size: .94rem;
}

.hotline-card {
	background: linear-gradient(158deg,var(--st-charcoal) 0%,var(--st-charcoal-2) 55%,#34251B 100%);
	color: #DCCFC3;
	border-radius: var(--st-radius-lg);
	padding: 38px 34px;
	box-shadow: var(--st-shadow-lg);
	border: 1px solid rgba(255,255,255,.09);
	position: relative;
	overflow: hidden;
}

.hotline-card::before {
	content: "";
	position: absolute;
	top: -90px;
	right: -70px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle,rgba(242,145,63,.34),transparent 68%);
	filter: blur(14px);
	animation: float1 18s ease-in-out infinite;
}

.hotline-card>* {
	position: relative;
	z-index: 1;
}

.hotline-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--st-ember-glow);
	font-weight: 800;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	font-size: .74rem;
	margin-bottom: 12px;
}

.hotline-chip::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--st-ember);
}

.hotline-card h3 {
	color: #fff;
	font-size: clamp(1.4rem,2.4vw,1.9rem);
	margin-bottom: 10px;
}

.hotline-card p {
	color: #B5A79A;
	font-size: .99rem;
}

.hotline-digits {
	display: block;
	font-family: var(--st-display);
	font-size: clamp(2.1rem,4.6vw,3rem);
	color: #fff;
	letter-spacing: 1px;
	margin: 20px 0 18px;
	text-align: center;
	transition: color .25s,transform .25s;
}

.hotline-digits:hover {
	color: var(--st-ember-glow);
	transform: scale(1.03);
}

.hotline-showtimes {
	text-align: center;
	font-size: .92rem;
	margin: 18px 0 0;
	color: #B5A79A;
}

.hotline-showtimes strong {
	color: #fff;
}

.hotline-rundown {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.hotline-rundown h4 {
	color: #fff;
	font-size: .92rem;
	letter-spacing: 1.8px;
	margin-bottom: 14px;
}

.hotline-rundown ol {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ce;
	display: grid;
	gap: 12px;
}

.hotline-rundown li {
	counter-increment: ce;
	display: flex;
	gap: 13px;
	align-items: flex-start;
	font-size: .94rem;
	color: #C3B5A8;
}

.hotline-rundown li::before {
	content: counter(ce);
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(242,145,63,.18);
	color: var(--st-ember-glow);
	font-family: var(--st-display);
	font-size: .9rem;
	display: grid;
	place-items: center;
	margin-top: 1px;
}

@media (max-width:640px) {
	.hotline-card {
		padding: 28px 22px;
	}
}

.notice p {
	font-size: .95rem;
	line-height: 1.62;
}

.notice footer b {
	font-size: .92rem;
	line-height: 1.3;
}

.notice .headshot svg {
	display: block;
}

@media (max-width:1080px) {
	.notices {
		gap: 22px;
	}
}

.pocket-bar2 ul.pb2-duo {
	grid-template-columns: 1.7fr 1fr;
}

@media (max-width: 392px) {
	.marquee-name {
		flex: 1 1 auto;
		min-width: 0;
		overflow: hidden;
	}
	.marquee-name-script strong,
	.marquee-name-script span {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
	}
	.cue-key-blaze.gridline-dial {
		padding: 9px 12px;
	}
}

.pocket-bar2 ul {
	grid-template-columns: 1fr;
}

.sequence > * {
	min-width: 0;
}

.sequence-beat h3 {
	overflow-wrap: anywhere;
}
