:root {
	--enid-site-bg: #07131f;
	--enid-site-surface: #0d1d2f;
	--enid-site-surface-alt: #122844;
	--enid-site-surface-soft: #152f4c;
	--enid-site-text: #edf3fb;
	--enid-site-muted: #9fb0c7;
	--enid-site-accent: #2e8bf0;
	--enid-site-accent-strong: #d2333d;
	--enid-site-border: rgba(255, 255, 255, 0.08);
	--enid-site-shadow: 0 20px 48px rgba(2, 11, 23, 0.45);
	--enid-site-shadow-soft: 0 12px 30px rgba(2, 11, 23, 0.24);
	--enid-site-max-width: min(1180px, calc(100% - 32px));
	--enid-site-alert-accent: var(--enid-site-accent-strong);
}

body {
	background:
		radial-gradient(circle at top, rgba(46, 139, 240, 0.16), transparent 32%),
		linear-gradient(180deg, #08131f 0%, #091726 100%);
	color: var(--enid-site-text);
}

body .wp-site-blocks {
	min-height: 100vh;
}

body a,
body a:where(:not(.wp-element-button)) {
	color: var(--enid-site-accent);
	text-decoration: none;
}

body :where(.is-layout-constrained) > * {
	max-width: var(--enid-site-max-width);
}

.wp-site-blocks {
	padding-bottom: 0;
}

.enid-scanner-shell-card {
	padding: 24px;
	border: 1px solid var(--enid-site-border);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(18, 40, 68, 0.88) 0%, rgba(9, 23, 38, 0.96) 100%);
	box-shadow: var(--enid-site-shadow);
}

.enid-scanner-shell-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(210, 51, 61, 0.16);
	color: var(--enid-site-text);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.enid-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	background:
		linear-gradient(180deg, rgba(5, 13, 23, 0.92) 0%, rgba(5, 13, 23, 0.76) 100%);
}

.enid-site-brand {
	display: grid;
	gap: 6px;
}

.enid-site-brand__title,
.enid-site-brand__title.wp-block-heading {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.enid-site-brand__title a {
	color: var(--enid-site-text);
}

.enid-site-brand__tagline {
	margin: 0;
	color: var(--enid-site-muted);
	font-size: 0.92rem;
}

.enid-site-header__inner,
.enid-site-footer__inner,
.enid-main-wrap,
.enid-page-section,
.enid-sponsor-wrap {
	max-width: var(--enid-site-max-width);
	margin: 0 auto;
}

.enid-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.enid-site-nav {
	margin-left: auto;
}

.enid-site-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 6px 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.enid-site-nav__item {
	margin: 0;
}

.enid-site-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 0.94rem;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--enid-site-muted);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.enid-site-nav a:hover,
.enid-site-nav a:focus-visible {
	border-color: rgba(46, 139, 240, 0.32);
	background: rgba(255, 255, 255, 0.04);
	color: var(--enid-site-text);
}

.enid-site-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.72rem 1rem;
	border: 1px solid rgba(46, 139, 240, 0.3);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--enid-site-text);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.enid-site-menu-toggle:hover,
.enid-site-menu-toggle:focus-visible {
	border-color: rgba(46, 139, 240, 0.48);
	background: rgba(46, 139, 240, 0.12);
	color: var(--enid-site-text);
}

.enid-main-wrap {
	padding-top: 28px;
	padding-bottom: 56px;
}

.enid-page-section {
	margin-top: 34px;
}

.enid-page-section--tight {
	margin-top: 14px;
}

.enid-live-card {
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid rgba(95, 155, 228, 0.2);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(46, 139, 240, 0.18), transparent 32%),
		linear-gradient(180deg, rgba(14, 30, 48, 0.98) 0%, rgba(9, 20, 33, 0.98) 100%);
	box-shadow: var(--enid-site-shadow);
}

.enid-alert-banner {
	margin-bottom: 18px;
	padding: 18px 22px;
	border: 1px solid rgba(210, 51, 61, 0.28);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.18), transparent 34%),
		linear-gradient(180deg, rgba(48, 15, 23, 0.96) 0%, rgba(27, 10, 16, 0.98) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-alert-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.enid-alert-banner__eyebrow {
	margin: 0 0 8px;
	color: #ff9aa1;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-alert-banner h2 {
	margin: 0 0 8px;
	color: #fff2f3;
}

.enid-alert-banner p {
	margin: 0;
	color: #f3c4c8;
}

.enid-live-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.enid-live-card__eyebrow {
	margin: 0 0 10px;
	color: #7fb3f0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-live-card__title {
	margin: 0;
	color: var(--enid-site-text);
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 0.98;
}

.enid-live-card__subtitle {
	margin: 10px 0 0;
	max-width: 46rem;
	color: var(--enid-site-muted);
	font-size: 1rem;
}

.enid-live-card__badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(46, 139, 240, 0.16);
	color: var(--enid-site-text);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.enid-live-card__player-shell {
	padding: 10px;
	border: 1px solid rgba(126, 184, 255, 0.1);
	border-radius: 22px;
	background:
		radial-gradient(circle at 12% 50%, rgba(46, 139, 240, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(9, 25, 42, 0.7) 0%, rgba(5, 15, 25, 0.82) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 10px 24px rgba(0, 0, 0, 0.14);
}

.enid-live-card__player {
	display: block;
	width: 100%;
	min-height: 245px;
	border: 0;
	border-radius: 14px;
	background: #000;
}

.enid-custom-audio-player {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) minmax(210px, 300px);
	align-items: center;
	gap: 12px 20px;
	min-height: 172px;
	padding: clamp(14px, 1.7vw, 18px);
	border: 1px solid rgba(121, 184, 255, 0.14);
	border-radius: 18px;
	background:
		radial-gradient(circle at 12% 42%, rgba(46, 139, 240, 0.2), transparent 34%),
		radial-gradient(circle at 88% 48%, rgba(98, 226, 159, 0.1), transparent 30%),
		linear-gradient(135deg, rgba(13, 34, 55, 0.9) 0%, rgba(6, 18, 30, 0.94) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 12px 28px rgba(2, 12, 24, 0.18);
}

.enid-custom-audio-player::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.045) 48%, transparent 56%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 36px);
	opacity: 0.42;
	pointer-events: none;
}

.enid-custom-audio-player > * {
	position: relative;
	z-index: 1;
}

.enid-custom-audio-player > p:empty {
	display: none;
	margin: 0;
}

.enid-custom-audio-player__audio-slot {
	display: none;
}

.enid-custom-audio-player__audio {
	display: none;
}

.enid-custom-audio-player__button-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.enid-custom-audio-player__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(58px, 6vw, 68px);
	height: clamp(58px, 6vw, 68px);
	border: 1px solid rgba(151, 205, 255, 0.34);
	border-radius: 999px;
	background:
		radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 28%),
		linear-gradient(135deg, #2e8bf0 0%, #0d4f9d 100%);
	color: #fff;
	font: inherit;
	font-size: clamp(1.12rem, 1.7vw, 1.38rem);
	font-weight: 900;
	line-height: 1;
	box-shadow:
		0 16px 34px rgba(5, 31, 72, 0.42),
		0 0 0 7px rgba(46, 139, 240, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.enid-custom-audio-player__button:hover,
.enid-custom-audio-player__button:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(151, 205, 255, 0.58);
	box-shadow:
		0 18px 38px rgba(5, 31, 72, 0.52),
		0 0 0 8px rgba(46, 139, 240, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.32);
	outline: none;
}

.enid-custom-audio-player__button:active {
	transform: translateY(0);
}

.enid-custom-audio-player__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.35em;
	transform: translateX(0.04em);
}

.enid-custom-audio-player[data-player-state="playing"] .enid-custom-audio-player__button {
	background:
		radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.24), transparent 28%),
		linear-gradient(135deg, #22c55e 0%, #138244 100%);
	box-shadow:
		0 16px 34px rgba(17, 94, 51, 0.42),
		0 0 0 7px rgba(34, 197, 94, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.enid-custom-audio-player__main {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	min-width: 0;
}

.enid-custom-audio-player__label {
	display: block;
	color: #f5f9ff;
	font-size: clamp(1.08rem, 1.8vw, 1.42rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.035em;
}

.enid-custom-audio-player__status {
	display: block;
	margin-top: 6px;
	color: #9fc3ea;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.enid-custom-audio-player[data-player-state="playing"] .enid-custom-audio-player__status {
	color: #93e8b6;
}

.enid-custom-audio-player[data-player-state="error"] .enid-custom-audio-player__status {
	color: #ffb4bc;
}

.enid-custom-audio-player__signal {
	display: inline-flex;
	align-items: flex-end;
	gap: 4px;
	height: 28px;
	padding: 0 2px;
}

.enid-custom-audio-player__signal span {
	display: block;
	width: 5px;
	height: 12px;
	border-radius: 999px;
	background: rgba(142, 187, 246, 0.38);
	box-shadow: 0 0 12px rgba(46, 139, 240, 0.18);
}

.enid-custom-audio-player__signal span:nth-child(2) {
	height: 18px;
}

.enid-custom-audio-player__signal span:nth-child(3) {
	height: 25px;
}

.enid-custom-audio-player__signal span:nth-child(4) {
	height: 15px;
}

.enid-custom-audio-player[data-player-state="playing"] .enid-custom-audio-player__signal span {
	background: rgba(77, 224, 137, 0.78);
	box-shadow: 0 0 16px rgba(34, 197, 94, 0.26);
}

.enid-custom-audio-player__volume-wrap {
	justify-self: end;
	width: min(100%, 300px);
	min-width: 0;
}

.enid-custom-audio-player__volume {
	display: grid;
	gap: 8px;
	min-width: 0;
	color: #b8cee4;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-custom-audio-player__volume input[type="range"] {
	width: 100%;
	min-width: 150px;
	height: 28px;
	margin: 0;
	padding: 0;
	accent-color: #2e8bf0;
	background: transparent;
	cursor: pointer;
	appearance: none;
}

.enid-custom-audio-player__volume input[type="range"]::-webkit-slider-runnable-track {
	height: 8px;
	border: 1px solid rgba(151, 205, 255, 0.18);
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(46, 139, 240, 0.72), rgba(34, 197, 94, 0.52));
}

.enid-custom-audio-player__volume input[type="range"]::-webkit-slider-thumb {
	width: 22px;
	height: 22px;
	margin-top: -8px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 999px;
	background: #f5f9ff;
	box-shadow: 0 6px 16px rgba(2, 11, 23, 0.45);
	appearance: none;
}

.enid-custom-audio-player__volume input[type="range"]::-moz-range-track {
	height: 8px;
	border: 1px solid rgba(151, 205, 255, 0.18);
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(46, 139, 240, 0.72), rgba(34, 197, 94, 0.52));
}

.enid-custom-audio-player__volume input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 999px;
	background: #f5f9ff;
	box-shadow: 0 6px 16px rgba(2, 11, 23, 0.45);
}

.enid-custom-audio-player__volume input[type="range"]:focus-visible {
	outline: 2px solid rgba(142, 187, 246, 0.75);
	outline-offset: 4px;
	border-radius: 999px;
}

.enid-custom-audio-player__error {
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 2px;
	color: #ffd1d6;
	font-size: 0.86rem;
	text-align: center;
}

.enid-custom-audio-player__error[hidden] {
	display: none;
}

.enid-custom-audio-player__error a {
	color: #f5f9ff;
	font-weight: 800;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.enid-live-card__support-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 20px;
	align-items: start;
}

.enid-support-card--channel-left {
	order: 1;
}

.enid-support-card--feed-status {
	order: 2;
}

.enid-support-card--channel-right {
	order: 3;
}

.enid-support-card {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(18, 40, 68, 0.82) 0%, rgba(11, 25, 40, 0.94) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-support-card__label {
	display: block;
	margin-bottom: 10px;
	color: #8ebbf6;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.enid-support-card__value {
	display: block;
	color: var(--enid-site-text);
	font-size: clamp(1.35rem, 3vw, 2rem);
	line-height: 1.1;
}

.enid-support-card__value--status-online {
	color: #8de4b1;
}

.enid-support-card__value--status-offline {
	color: #ffb0b8;
}

.enid-support-card__value--status-unknown {
	color: #f6df92;
}

.enid-support-card__value--channel {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.enid-support-card__stats {
	margin: 14px 0 0;
	display: grid;
	gap: 10px;
}

.enid-support-card__stat-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enid-support-card__stat-row:first-child {
	padding-top: 0;
	border-top: 0;
}

.enid-support-card__stat-row dt,
.enid-support-card__stat-row dd {
	margin: 0;
}

.enid-support-card__stat-row dt {
	color: #b6cae0;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.enid-support-card__stat-row dd {
	color: var(--enid-site-text);
	font-size: 0.96rem;
	font-weight: 700;
	text-align: right;
}

.enid-support-card__copy {
	margin: 10px 0 0;
	color: var(--enid-site-muted);
	font-size: 0.94rem;
}

.enid-support-card__meta-note,
.enid-support-card__source {
	margin: 10px 0 0;
	color: #9eb5cb;
	font-size: 0.8rem;
	line-height: 1.45;
}

.enid-live-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.enid-live-card__actions--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 420px;
}

.enid-live-card__note {
	margin-top: 20px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-live-card__note p {
	margin: 0;
	color: var(--enid-site-muted);
}

.enid-button-group {
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-button-group__label {
	display: block;
	margin-bottom: 12px;
	color: #7fb3f0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-button-group__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.enid-button-group__note {
	margin: 0;
	color: var(--enid-site-muted);
	font-size: 0.92rem;
}

.enid-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.15rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, #2e8bf0 0%, #1559af 100%);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	box-shadow: 0 14px 30px rgba(7, 37, 82, 0.28);
}

.enid-button:hover,
.enid-button:focus-visible {
	transform: translateY(-1px);
	color: #fff;
}

.enid-button--ghost {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: none;
	color: var(--enid-site-text);
}

.enid-button--alert {
	background: linear-gradient(135deg, #df4a54 0%, #991d26 100%);
	box-shadow: 0 14px 30px rgba(73, 8, 15, 0.28);
}

.enid-secondary-strip,
.enid-content-card,
.enid-pill-nav,
.enid-sponsor-placeholder,
.enid-site-footer {
	padding: clamp(20px, 2.25vw, 26px);
	border: 1px solid var(--enid-site-border);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(13, 29, 47, 0.94) 0%, rgba(9, 21, 34, 0.96) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-secondary-strip__inner,
.enid-sponsor-placeholder__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.enid-secondary-strip h2,
.enid-content-card h2,
.enid-sponsor-placeholder h2,
.enid-site-footer h2,
.enid-site-footer h3 {
	margin: 0 0 12px;
	color: var(--enid-site-text);
}

.enid-secondary-strip p,
.enid-content-card p,
.enid-content-card li,
.enid-sponsor-placeholder p,
.enid-site-footer p,
.enid-site-footer li {
	color: var(--enid-site-muted);
}

.enid-sponsor-showcase {
	display: grid;
	gap: 14px;
}

.enid-sponsor-showcase__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px 24px;
}

.enid-sponsor-showcase__empty {
	padding: 16px 18px;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-sponsor-showcase__empty h3 {
	margin: 0 0 6px;
	color: var(--enid-site-text);
	font-size: 1rem;
}

.enid-sponsor-showcase__empty p {
	margin: 0;
}

.enid-sponsor-banner {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 18px;
	background: transparent;
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-sponsor-banner--linked {
	color: inherit;
	text-decoration: none;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.enid-sponsor-banner--linked:hover,
.enid-sponsor-banner--linked:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(2, 11, 23, 0.28);
	outline: none;
}

.enid-sponsor-banner__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: clamp(132px, 20vw, 250px);
	max-height: clamp(132px, 22vw, 250px);
	padding: clamp(8px, 1.1vw, 14px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.015);
	overflow: hidden;
}

.enid-sponsor-banner__image {
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: clamp(120px, 18vw, 230px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
	object-position: center center;
}

.enid-sponsor-banner__fallback {
	display: grid;
	gap: 6px;
	justify-items: center;
	padding: 18px 16px;
	text-align: center;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-sponsor-banner__fallback-label {
	margin: 0;
	color: #b8d7fb;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.enid-sponsor-banner__fallback-name {
	margin: 0;
	color: var(--enid-site-text);
	font-size: 1rem;
	font-weight: 700;
}

.enid-sponsor-banner img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center center;
}

.enid-sponsor-directory {
	display: grid;
	gap: 10px;
}

.enid-sponsor-directory__grid {
	display: grid;
	gap: 10px;
}

.enid-sponsor-directory__item {
	margin: 0;
}

.enid-sponsor-directory .enid-sponsor-banner {
	box-sizing: border-box;
}

.enid-sponsor-directory .enid-sponsor-banner > p,
.enid-sponsor-directory__grid > p,
.enid-sponsor-directory__item > p {
	display: none;
	margin: 0;
	padding: 0;
}

.enid-sponsor-directory .enid-sponsor-banner br,
.enid-sponsor-directory__item > p br {
	display: none;
}

.enid-sponsor-directory .enid-sponsor-banner__media {
	box-sizing: border-box;
	min-height: clamp(132px, 14vw, 180px);
	max-height: clamp(132px, 15vw, 190px);
	padding: clamp(6px, 0.8vw, 9px);
	background:
		radial-gradient(circle at 12% 18%, rgba(46, 139, 240, 0.1), transparent 30%),
		rgba(255, 255, 255, 0.018);
	border-color: rgba(134, 184, 238, 0.14);
}

.enid-sponsor-directory .enid-sponsor-banner__image {
	max-height: clamp(112px, 12vw, 166px);
}

.enid-sponsor-directory__fallback {
	display: grid;
	place-items: center;
	box-sizing: border-box;
	min-height: clamp(132px, 14vw, 180px);
	padding: 24px;
	border: 1px dashed rgba(134, 184, 238, 0.24);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	text-align: center;
}

.enid-sponsor-directory__fallback p {
	margin: 0;
	color: var(--enid-site-text);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 800;
}

.enid-sponsor-inquiry-card {
	display: grid;
	gap: 14px;
}

.enid-sponsor-inquiry-card > * {
	margin-top: 0;
	margin-bottom: 0;
}

.enid-sponsor-inquiry-card p {
	max-width: 58rem;
}

.enid-sponsor-inquiry-card .enid-sponsor-inquiry-button {
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.enid-sponsor-inquiry-card .enid-sponsor-inquiry-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0.82rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--enid-site-text);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.1;
	box-shadow: none;
	transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.enid-sponsor-inquiry-card .enid-sponsor-inquiry-button .wp-block-button__link:hover,
.enid-sponsor-inquiry-card .enid-sponsor-inquiry-button .wp-block-button__link:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(46, 139, 240, 0.44);
	background: rgba(46, 139, 240, 0.12);
	color: #fff;
}

@media (max-width: 782px) {
	.enid-sponsor-wrap {
		margin-top: 16px;
	}

	.enid-sponsor-placeholder {
		padding: 14px;
		border-radius: 20px;
	}

	.enid-sponsor-showcase {
		gap: 6px;
	}

	.enid-sponsor-showcase__header {
		gap: 8px;
	}

	.enid-sponsor-placeholder h2 {
		margin-bottom: 0;
		font-size: clamp(1.05rem, 5vw, 1.24rem);
		line-height: 1.15;
	}

	.enid-sponsor-placeholder .enid-sponsor-banner {
		margin-top: 0;
	}

	.enid-sponsor-placeholder .enid-sponsor-banner > p,
	.enid-sponsor-placeholder .enid-sponsor-banner br {
		display: none;
		margin: 0;
		padding: 0;
	}

	.enid-sponsor-placeholder .enid-sponsor-banner__media {
		min-height: 0;
		max-height: none;
		padding: 6px;
		border-radius: 14px;
	}

	.enid-sponsor-placeholder .enid-sponsor-banner__media picture {
		display: block;
		width: 100%;
	}

	.enid-sponsor-placeholder .enid-sponsor-banner__image,
	.enid-sponsor-placeholder .enid-sponsor-banner img {
		width: 100%;
		max-height: none;
		height: auto;
	}

	.enid-sponsor-directory {
		gap: 10px;
	}

	.enid-sponsor-directory__grid {
		gap: 10px;
	}

	.enid-sponsor-directory .enid-sponsor-banner__media {
		min-height: clamp(112px, 36vw, 180px);
		max-height: clamp(112px, 42vw, 200px);
		padding: 8px;
	}

	.enid-sponsor-directory .enid-sponsor-banner__image {
		max-height: clamp(96px, 32vw, 168px);
	}

	.enid-sponsor-directory__fallback {
		min-height: clamp(112px, 36vw, 180px);
	}
}

.enid-content-card__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.enid-content-card__grid--equal-heights {
	align-items: stretch;
}

.enid-content-card__grid--equal-heights > .enid-mini-card {
	height: 100%;
	margin-top: 0;
}

.enid-content-card__grid--scanner-apps {
	align-items: stretch;
}

.enid-content-card__grid--scanner-apps > .enid-mini-card {
	height: 100%;
	margin-top: 0;
}

.enid-content-card__grid--will-not-hear {
	align-items: stretch;
}

.enid-content-card__grid--will-not-hear > .enid-mini-card {
	height: 100%;
	min-height: 88px;
	margin-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.enid-content-card__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enid-weather-content-shell {
	margin-top: 28px;
}

.enid-weather-dashboard {
	max-width: min(1220px, calc(100vw - 40px));
	margin: 0 auto;
}

.enid-weather-dashboard__hero {
	margin-top: 0;
}

.enid-weather-dashboard__section {
	margin-top: 28px;
}

.enid-weather-page-shell {
	position: relative;
	margin-top: 6px;
}

.enid-weather-page-shell::before {
	content: "";
	position: absolute;
	inset: 14px -24px auto;
	height: 320px;
	border-radius: 42px;
	background:
		radial-gradient(circle at 10% 6%, rgba(46, 139, 240, 0.2), transparent 34%),
		radial-gradient(circle at 86% 10%, rgba(112, 190, 255, 0.12), transparent 26%),
		linear-gradient(180deg, rgba(20, 51, 86, 0.12) 0%, transparent 100%);
	pointer-events: none;
	filter: blur(8px);
}

.enid-weather-hero {
	position: relative;
	overflow: visible;
	padding: clamp(20px, 2.7vw, 26px);
	border-color: rgba(117, 181, 248, 0.28);
	background:
		radial-gradient(circle at top left, rgba(46, 139, 240, 0.24), transparent 34%),
		radial-gradient(circle at 88% 18%, rgba(99, 181, 255, 0.12), transparent 22%),
		linear-gradient(180deg, rgba(17, 39, 63, 0.99) 0%, rgba(8, 19, 31, 0.99) 100%);
	box-shadow:
		0 24px 56px rgba(2, 11, 23, 0.46),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.enid-weather-hero.is-normal {
	border-color: rgba(93, 161, 236, 0.22);
	background:
		radial-gradient(circle at top left, rgba(46, 139, 240, 0.18), transparent 34%),
		radial-gradient(circle at 88% 16%, rgba(99, 181, 255, 0.08), transparent 22%),
		linear-gradient(180deg, rgba(13, 31, 50, 0.98) 0%, rgba(8, 19, 31, 0.99) 100%);
}

.enid-weather-hero::after {
	content: none;
}

.enid-weather-hero.is-alert {
	border-color: rgba(210, 51, 61, 0.3);
	background:
		radial-gradient(circle at top left, rgba(210, 51, 61, 0.24), transparent 32%),
		radial-gradient(circle at 80% 20%, rgba(255, 122, 132, 0.14), transparent 24%),
		radial-gradient(circle at 60% 62%, rgba(132, 29, 37, 0.12), transparent 30%),
		linear-gradient(180deg, rgba(43, 16, 23, 0.98) 0%, rgba(16, 10, 15, 0.98) 100%);
}

.enid-weather-hero__inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.enid-weather-hero__copy,
.enid-weather-hero__status,
.enid-weather-hero__footer {
	position: relative;
	z-index: 1;
}

.es-weather-hero::before,
.es-weather-hero::after {
	/* Future background-image hooks can be layered here if custom art is added later. */
}

.enid-weather-hero__eyebrow,
.enid-weather-section-card__eyebrow,
.enid-forecast-card__label,
.enid-alert-card__eyebrow {
	margin: 0 0 8px;
	color: #91c4ff;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.enid-weather-hero__title {
	margin: 0;
	color: #f3f8ff;
	font-size: clamp(2.1rem, 4vw, 2.9rem);
	line-height: 1.04;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.enid-weather-hero.is-normal .enid-weather-hero__title {
	font-size: clamp(1.9rem, 3.5vw, 2.5rem);
}

.enid-weather-hero__subtitle {
	margin: 10px 0 0;
	max-width: 40rem;
	color: #d7e5f3;
	font-size: clamp(1rem, 1.7vw, 1.1rem);
	line-height: 1.65;
	text-wrap: pretty;
}

.enid-weather-hero.is-normal .enid-weather-hero__subtitle {
	margin-top: 10px;
	max-width: 36rem;
}

.enid-weather-hero__status {
	display: grid;
	justify-items: end;
	gap: 8px;
	min-width: 198px;
}

.enid-weather-status-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1.12rem;
	border: 1px solid rgba(125, 185, 249, 0.32);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(46, 139, 240, 0.18) 0%, rgba(46, 139, 240, 0.08) 100%);
	color: #f3f8ff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow:
		0 10px 24px rgba(12, 39, 77, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.enid-weather-status-pill.is-alert {
	border-color: rgba(255, 150, 158, 0.28);
	background: rgba(210, 51, 61, 0.16);
	color: #fff1f2;
}

.enid-weather-hero__meta,
.enid-weather-section-card__meta {
	margin: 0;
	color: #adc0d6;
	font-size: 0.92rem;
}

.enid-weather-hero__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px 20px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enid-weather-hero.is-normal .enid-weather-hero__footer {
	margin-top: 12px;
	padding-top: 10px;
}

.enid-weather-hero__footer p,
.enid-weather-hero__cache-note {
	margin: 0;
	max-width: 42rem;
	color: var(--enid-site-muted);
	font-size: 0.96rem;
	line-height: 1.6;
}

.enid-weather-hero > p:empty,
.enid-weather-hero__inner > p:empty,
.enid-weather-hero__copy > p:empty,
.enid-weather-hero__status > p:empty,
.enid-weather-hero__footer > p:empty {
	display: none;
}

.enid-weather-section-card__header,
.enid-weather-source-card__inner,
.enid-weather-compact-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.enid-weather-status-card__eyebrow,
.enid-weather-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 12px;
	color: #8ebbf6;
	font-size: 0.9rem;
}

.enid-weather-section-card {
	position: relative;
	overflow: hidden;
	padding: clamp(22px, 3vw, 30px);
	border-color: rgba(101, 143, 186, 0.16);
	background:
		linear-gradient(180deg, rgba(11, 25, 40, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
	box-shadow:
		0 18px 38px rgba(2, 10, 20, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enid-weather-dashboard-card {
	padding-bottom: clamp(40px, 4.6vw, 52px);
}

.enid-weather-section-card::after {
	content: none;
}

.enid-weather-grid,
.enid-forecast-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.enid-weather-dashboard-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.92fr);
	align-items: stretch;
	gap: 22px;
}

.enid-weather-primary-panel {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px;
	min-height: 0;
	height: 100%;
	padding: 20px 24px 24px;
	border: 1px solid rgba(128, 185, 244, 0.14);
	border-radius: 30px;
	background:
		radial-gradient(circle at top left, rgba(87, 179, 255, 0.22), transparent 32%),
		radial-gradient(circle at 84% 20%, rgba(173, 222, 255, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(16, 40, 65, 0.95) 0%, rgba(8, 20, 34, 0.99) 100%);
	box-shadow:
		0 16px 34px rgba(3, 14, 27, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.enid-weather-primary-panel__meta {
	margin-bottom: 4px;
}

.enid-weather-primary-panel__temp {
	display: block;
	margin: 0;
	color: var(--enid-site-text);
	font-size: clamp(3.3rem, 8vw, 5.6rem);
	line-height: 0.88;
	letter-spacing: -0.08em;
	text-shadow: 0 10px 24px rgba(8, 25, 44, 0.24);
}

.enid-weather-primary-panel__condition {
	margin: 0;
	color: #f4f8ff;
	font-size: clamp(1.3rem, 2.6vw, 1.82rem);
	font-weight: 700;
	line-height: 1.18;
}

.enid-weather-primary-panel__detail {
	margin: 2px 0 0;
	max-width: 30rem;
	color: #c0d2e3;
	font-size: 1rem;
	line-height: 1.64;
}

.enid-weather-primary-panel__timestamp {
	margin: 10px 0 0;
	color: #9fb8d1;
	font-size: 0.92rem;
}

.enid-weather-primary-panel > p:empty {
	display: none;
}

.enid-weather-section-card > .enid-weather-meta:empty {
	display: none;
}

.enid-weather-dashboard-side {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	gap: 22px;
	min-width: 0;
	height: 100%;
	align-content: stretch;
}

.enid-weather-compact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	min-width: 0;
}

.enid-weather-compact-grid > .enid-weather-metric {
	height: 100%;
	min-width: 0;
}

.enid-weather-dashboard-grid > p:empty,
.enid-weather-dashboard-side > p:empty,
.enid-weather-compact-grid > p:empty,
.enid-weather-compact-card__header > p:empty,
.enid-weather-compact-card__header > div > p:empty,
.enid-weather-metric > p:empty {
	display: none !important;
	margin: 0 !important;
}

.enid-weather-metric,
.enid-weather-compact-card,
.enid-forecast-card,
.enid-alert-card {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-weather-compact-card {
	padding: 22px 24px;
	border-color: rgba(96, 159, 228, 0.2);
	background:
		linear-gradient(180deg, rgba(14, 31, 49, 0.98) 0%, rgba(8, 18, 30, 0.98) 100%);
	box-shadow:
		0 14px 28px rgba(2, 10, 20, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.enid-weather-compact-card.is-alert {
	border-color: rgba(210, 51, 61, 0.28);
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(46, 16, 22, 0.96) 0%, rgba(17, 10, 15, 0.98) 100%);
}

.enid-weather-compact-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.76rem;
	border: 1px solid rgba(136, 197, 255, 0.18);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	color: #d8ebff;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.enid-weather-compact-card.is-alert .enid-weather-compact-card__badge {
	border-color: rgba(255, 145, 152, 0.22);
	color: #fff0f1;
}

.enid-weather-compact-card h3 {
	margin: 0;
	color: var(--enid-site-text);
	font-size: 1.18rem;
	line-height: 1.2;
}

.enid-weather-compact-card__summary {
	margin: 14px 0 0;
	color: #d7e4f1;
	font-size: 1rem;
	line-height: 1.66;
}

.enid-weather-metric {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 0;
	padding: 22px 22px 20px;
	border-color: rgba(102, 150, 199, 0.18);
	background:
		linear-gradient(180deg, rgba(16, 34, 54, 0.92) 0%, rgba(8, 18, 30, 0.98) 100%);
	box-shadow:
		0 12px 26px rgba(2, 10, 20, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.enid-weather-metric__label,
.enid-forecast-card__condition,
.enid-alert-card__meta {
	display: block;
	color: #b1c4d9;
	font-size: 0.94rem;
}

.enid-weather-metric__value,
.enid-forecast-card__temp {
	display: block;
	margin-top: 10px;
	color: var(--enid-site-text);
	font-size: clamp(1.3rem, 3vw, 2rem);
}

.enid-weather-metric__value--compact {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	line-height: 1.25;
	letter-spacing: 0;
}

.enid-weather-metric__subvalue {
	display: block;
	margin-top: 12px;
	color: #a9bfd6;
	font-size: 0.94rem;
	line-height: 1.45;
}

.enid-weather-metric__value--wind {
	max-width: 24ch;
	font-size: clamp(1.34rem, 2.5vw, 1.82rem);
	line-height: 1.4;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.enid-weather-metric__detail {
	margin: 22px 0 0;
	color: #aac0d8;
	font-size: 1rem;
	line-height: 1.75;
}

.enid-forecast-card h3,
.enid-alert-card h3 {
	margin: 0 0 10px;
	color: var(--enid-site-text);
}

.enid-forecast-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	grid-auto-rows: auto;
}

.enid-forecast-card {
	display: flex;
	flex-direction: column;
	height: clamp(30rem, 40vw, 34rem);
	min-height: 0;
	overflow: hidden;
	padding: 24px;
	border-color: rgba(106, 151, 194, 0.18);
	background:
		radial-gradient(circle at top left, rgba(70, 145, 219, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(17, 36, 57, 0.96) 0%, rgba(9, 20, 33, 0.99) 100%);
	box-shadow:
		0 16px 30px rgba(2, 10, 20, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.enid-forecast-card__label {
	margin-bottom: 14px;
}

.enid-forecast-card h3 {
	margin-bottom: 10px;
	font-size: clamp(1.3rem, 2.2vw, 1.66rem);
	line-height: 1.2;
}

.enid-forecast-card__temp {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
}

.enid-forecast-card__condition {
	margin: 0 0 14px;
	color: #e3edf8;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.56;
}

.enid-forecast-card__meta {
	margin-bottom: 14px;
}

.enid-forecast-card__wind {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.62rem 0.9rem;
	border: 1px solid rgba(150, 187, 223, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #c8d9ea;
	font-size: 0.96rem;
	font-weight: 600;
}

.enid-forecast-card__summary-wrap {
	display: flex;
	flex: 1 1 auto;
	align-items: flex-start;
	min-height: 0;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.enid-forecast-card__meta > p:empty,
.enid-forecast-card__summary-wrap > p:empty {
	display: none;
}

.enid-forecast-card__summary {
	margin: 0;
	color: #c6d5e4;
	font-size: 1rem;
	line-height: 1.72;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	overflow: hidden;
}

.enid-alert-list {
	display: grid;
	gap: 22px;
}

.enid-alert-empty-state {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	border: 1px solid rgba(107, 187, 255, 0.18);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(12, 28, 45, 0.92) 0%, rgba(8, 18, 30, 0.96) 100%);
	box-shadow:
		0 14px 30px rgba(2, 10, 20, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enid-alert-empty-state__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 82px;
	height: 82px;
	padding: 12px;
	border: 1px solid rgba(136, 197, 255, 0.2);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(46, 139, 240, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%);
	color: #d8ebff;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.enid-alert-empty-state h3 {
	margin: 0 0 8px;
	color: var(--enid-site-text);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.28;
}

.enid-alert-empty-state p {
	margin: 0;
	color: var(--enid-site-muted);
	font-size: 0.96rem;
	line-height: 1.6;
}

.enid-alert-card.is-trigger {
	border-color: rgba(210, 51, 61, 0.28);
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.1), transparent 32%),
		linear-gradient(180deg, rgba(46, 16, 22, 0.82) 0%, rgba(16, 10, 15, 0.94) 100%);
}

.enid-alert-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.enid-alert-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.enid-alert-card__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(210, 51, 61, 0.14);
	color: #ffd5d7;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.enid-alert-card__badge--secondary {
	background: rgba(255, 200, 103, 0.12);
	color: #ffe3b4;
}

.enid-alert-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin: 14px 0 16px;
}

.enid-alert-card__meta span {
	padding: 0.5rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
}

.enid-alert-card__area,
.enid-alert-card__description,
.enid-alert-card__source {
	margin: 0 0 16px;
}

.enid-alert-card__instruction {
	margin: 22px 0 16px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-alert-card__instruction p {
	margin: 0;
}

.enid-alert-card__instruction p + p {
	margin-top: 8px;
}

.enid-weather-source-card {
	padding: clamp(20px, 2.6vw, 26px);
	border-color: rgba(104, 149, 191, 0.18);
	background:
		radial-gradient(circle at top right, rgba(65, 145, 226, 0.12), transparent 24%),
		linear-gradient(180deg, rgba(14, 32, 52, 0.98) 0%, rgba(8, 19, 31, 0.98) 100%);
	box-shadow:
		0 14px 28px rgba(2, 10, 20, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enid-weather-source-card__link {
	display: flex;
	align-items: center;
}

.enid-weather-source-card p:last-child {
	margin-bottom: 0;
}

.enid-mini-card {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-mini-card h3 {
	margin: 0 0 8px;
	color: var(--enid-site-text);
	font-size: 1.08rem;
}

.enid-mini-card p,
.enid-mini-card ul {
	margin: 0;
}

.enid-mini-card ul {
	padding-left: 18px;
}

.enid-app-card__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin: 0 0 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.enid-app-card__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.enid-app-card__logo--broadcastify {
	background: rgba(10, 19, 31, 0.9);
}

.enid-mini-card .enid-app-card__logo--broadcastify {
	width: 100%;
	height: 78px;
	margin-bottom: 16px;
	padding: 10px 14px;
	box-sizing: border-box;
}

.enid-mini-card .enid-app-card__logo--broadcastify img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.enid-app-badges {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	margin: 10px 0 12px;
}

.enid-store-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 172px;
	height: 52px;
	padding: 4px 8px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
}

.enid-store-badge img {
	display: block;
	width: auto;
	height: 100%;
	max-width: none;
	object-fit: contain;
}

.enid-store-badge:hover,
.enid-store-badge:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(142, 187, 246, 0.28);
	box-shadow: 0 10px 22px rgba(5, 16, 28, 0.28);
}

.enid-store-badge--apple img {
	transform: scale(1.18);
	transform-origin: center;
}

.enid-store-badge--google img {
	transform: scale(1.42);
	transform-origin: center;
}

.enid-pill-nav {
	position: sticky;
	top: 86px;
	z-index: 20;
	padding: 18px 22px;
	backdrop-filter: blur(14px);
}

.enid-pill-nav--weather {
	border-color: rgba(97, 163, 236, 0.24);
	background:
		radial-gradient(circle at top left, rgba(58, 145, 225, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(10, 24, 40, 0.92) 0%, rgba(8, 19, 31, 0.95) 100%);
	box-shadow:
		0 18px 32px rgba(2, 11, 23, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enid-pill-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.enid-pill-nav a {
	display: inline-flex;
	align-items: center;
	padding: 0.95rem 1.22rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--enid-site-text);
	font-size: 1rem;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enid-pill-nav--weather a {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.enid-pill-nav a:hover,
.enid-pill-nav a:focus-visible {
	border-color: rgba(46, 139, 240, 0.44);
	background: rgba(46, 139, 240, 0.12);
}

.enid-section-jump {
	display: none;
}

.enid-anchor-target {
	scroll-margin-top: 220px;
}

@media (max-width: 1180px) {
	.enid-weather-dashboard-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.enid-weather-dashboard-side {
		display: grid;
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.enid-weather-compact-grid {
		grid-column: auto;
		grid-row: auto;
	}

	.enid-weather-primary-panel,
	.enid-weather-compact-card--status {
		grid-column: auto;
		grid-row: auto;
	}

	.enid-forecast-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.enid-sponsor-wrap {
	margin-top: 46px;
}

.home .enid-main-wrap {
	padding-bottom: 48px;
}

.home .enid-page-section {
	margin-top: 28px;
}

.home .enid-page-section--tight {
	margin-top: 12px;
}

.home .enid-live-card {
	padding: clamp(20px, 2.2vw, 30px);
}

.enid-live-card--listen-live {
	padding: clamp(20px, 2.2vw, 30px);
}

.home .enid-live-card__header {
	margin-bottom: 16px;
}

.enid-live-card--listen-live .enid-live-card__header {
	margin-bottom: 16px;
}

.home .enid-live-card__support-grid {
	align-items: stretch;
	margin-top: 14px;
	gap: 12px;
	grid-template-areas:
		"left feed right"
		"listen feed community";
}

.home .enid-live-card__support-grid--with-community {
	grid-template-areas:
		"left feed right"
		"listen feed community";
}

.enid-live-card__support-grid--listen-live {
	align-items: start;
	margin-top: 14px;
	gap: 12px;
	grid-template-areas:
		"left feed right"
		"listen feed source";
}

.home .enid-live-card__support-grid:not(.enid-live-card__support-grid--with-community) {
	grid-template-areas:
		"left feed right"
		"listen feed right";
}

.home .enid-live-card__support-grid > p:empty,
.enid-live-card__support-grid--listen-live > p:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.home .enid-live-card__support-grid > .enid-support-card > br,
.home .enid-live-card__support-grid > .enid-support-card p:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.home .enid-support-card {
	padding: 14px 16px;
}

.enid-live-card__support-grid--listen-live .enid-support-card {
	padding: 14px 16px;
}

.home .enid-support-card__label {
	margin-bottom: 8px;
}

.enid-live-card__support-grid--listen-live .enid-support-card__label {
	margin-bottom: 8px;
}

.home .enid-support-card__value {
	line-height: 1.05;
}

.enid-live-card__support-grid--listen-live .enid-support-card__value {
	line-height: 1.05;
}

.home .enid-support-card__stats {
	margin-top: 10px;
	gap: 8px;
}

.enid-live-card__support-grid--listen-live .enid-support-card__stats {
	margin-top: 10px;
	gap: 8px;
}

.home .enid-support-card__stat-row {
	padding-top: 8px;
	gap: 10px;
}

.enid-live-card__support-grid--listen-live .enid-support-card__stat-row {
	padding-top: 8px;
	gap: 10px;
}

.home .enid-support-card__copy {
	margin-top: 8px;
	line-height: 1.42;
}

.enid-live-card__support-grid--listen-live .enid-support-card__copy {
	margin-top: 8px;
	line-height: 1.42;
}

.home .enid-button-group {
	padding: 12px 14px;
}

.enid-live-card__support-grid--listen-live .enid-button-group {
	padding: 14px 16px;
}

.home .enid-button-group__label {
	margin-bottom: 8px;
}

.enid-live-card__support-grid--listen-live .enid-button-group__label {
	margin-bottom: 8px;
}

.home .enid-button-group__buttons {
	gap: 10px;
}

.enid-live-card__support-grid--listen-live .enid-button-group__buttons {
	gap: 8px;
}

.home .enid-live-card__note {
	margin-top: 14px;
	padding: 12px 14px;
}

.home .enid-secondary-strip {
	padding: clamp(16px, 2vw, 22px);
}

.home .enid-secondary-strip__inner {
	gap: 12px 16px;
}

.home .enid-secondary-strip h2 {
	margin-bottom: 8px;
}

.home .enid-secondary-strip p {
	margin-bottom: 0;
}

.home .enid-secondary-strip .enid-button {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: none;
	color: var(--enid-site-text);
	font-size: 0.9rem;
	line-height: 1.1;
	padding: 0.82rem 1rem;
}

.home .enid-secondary-strip .enid-button:hover,
.home .enid-secondary-strip .enid-button:focus-visible {
	border-color: rgba(46, 139, 240, 0.44);
	background: rgba(46, 139, 240, 0.12);
	color: #fff;
}

.enid-sponsor-wrap {
	margin-top: 20px;
}

.enid-sponsor-placeholder {
	padding: clamp(16px, 2vw, 20px);
}

.enid-sponsor-showcase {
	gap: 8px;
}

.enid-sponsor-showcase__header {
	gap: 8px 12px;
}

.enid-sponsor-showcase > p {
	display: none;
	margin: 0;
	padding: 0;
}

.enid-sponsor-banner__media {
	min-height: clamp(112px, 16vw, 210px);
	max-height: clamp(112px, 18vw, 220px);
	padding: clamp(6px, 0.9vw, 10px);
}

.enid-sponsor-banner__image {
	max-height: clamp(100px, 14vw, 200px);
}

.home .enid-support-card--channel-left {
	grid-area: left;
}

.enid-live-card__support-grid--listen-live .enid-support-card--channel-left {
	grid-area: left;
}

.home .enid-support-card--feed-status {
	grid-area: feed;
	align-self: stretch;
}

.enid-live-card__support-grid--listen-live .enid-support-card--feed-status {
	grid-area: feed;
	align-self: stretch;
}

.home .enid-support-card--channel-right {
	grid-area: right;
}

.enid-live-card__support-grid--listen-live .enid-support-card--channel-right {
	grid-area: right;
}

.home .enid-live-card__action-slot {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(18, 40, 68, 0.82) 0%, rgba(11, 25, 40, 0.94) 100%);
	box-shadow: var(--enid-site-shadow-soft);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}

.enid-live-card__support-grid--listen-live .enid-live-card__action-slot {
	margin: 0;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(18, 40, 68, 0.82) 0%, rgba(11, 25, 40, 0.94) 100%);
	box-shadow: var(--enid-site-shadow-soft);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-self: stretch;
}

.home .enid-live-card__action-slot--listen {
	grid-area: listen;
}

.enid-live-card__support-grid--listen-live .enid-live-card__action-slot--listen-live {
	grid-area: listen;
}

.home .enid-live-card__action-slot--community {
	grid-area: community;
}

.enid-live-card__support-grid--listen-live .enid-live-card__action-slot--source {
	grid-area: source;
}

.home .enid-live-card__action-slot .enid-button-group__buttons {
	gap: 8px;
	align-items: flex-start;
	align-content: flex-start;
	width: 100%;
}

.home .enid-live-card__action-slot .enid-button-group__buttons > p:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.home .enid-live-card__action-slot > p:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.home .enid-live-card__action-slot .enid-button-group__label {
	margin-bottom: 0;
}

.enid-live-card__support-grid--listen-live .enid-live-card__action-slot .enid-button-group__buttons {
	gap: 8px;
}

.home .enid-live-card__action-slot .enid-button-group__note {
	margin-top: 4px;
	font-size: 0.8rem;
	line-height: 1.28;
	max-width: 28ch;
}

.home .enid-community-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.home .enid-community-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: auto;
	max-width: 100%;
	min-height: 44px;
	padding: 0.58rem 0.78rem;
	border: 1px solid rgba(91, 143, 255, 0.32);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(29, 86, 191, 0.96) 0%, rgba(16, 49, 112, 0.98) 100%);
	box-shadow: 0 14px 26px rgba(5, 20, 49, 0.28);
	color: #f6faff;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.home .enid-community-link:hover,
.home .enid-community-link:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(143, 182, 255, 0.62);
	box-shadow: 0 18px 30px rgba(5, 20, 49, 0.34);
	color: #ffffff;
}

.home .enid-community-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home .enid-community-link__icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.home .enid-community-link__label {
	display: block;
	color: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
}

.enid-live-card__support-grid--listen-live .enid-live-card__action-slot .enid-button-group__note {
	margin-top: 4px;
	font-size: 0.84rem;
	line-height: 1.35;
	max-width: 30ch;
}

.home .enid-live-card__action-slot--community .enid-button-group__note {
	text-wrap: pretty;
}

.enid-live-card__support-grid--listen-live .enid-live-card__action-slot--source .enid-button-group__note {
	color: var(--enid-site-muted);
	text-wrap: pretty;
}

.enid-site-footer {
	margin: 42px auto 0;
	border-radius: 24px 24px 0 0;
	padding-bottom: 28px;
}

.enid-site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 18px;
}

.enid-site-footer__title,
.enid-site-footer__title.wp-block-heading {
	margin-bottom: 8px;
	font-size: 1.42rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.enid-site-footer__title a {
	color: var(--enid-site-text);
}

.enid-site-footer__column {
	padding: 10px 0 0;
}

.enid-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.92rem;
	line-height: 1.35;
}

.enid-footer-links li + li {
	margin-top: 6px;
}

.enid-site-footer a {
	color: var(--enid-site-text);
}

.enid-site-footer__meta {
	margin-top: 16px;
	color: #7e92ab;
	font-size: 0.88rem;
}

.enid-footer-social {
	margin-top: 16px;
}

.enid-footer-social__label {
	display: block;
	margin-bottom: 8px;
	color: #8ebbf6;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-footer-social__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.enid-footer-social__links a {
	display: inline-flex;
	align-items: center;
	padding: 0.58rem 0.88rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
}

.enid-pill-nav--incidents {
	border-color: rgba(192, 86, 93, 0.18);
	background:
		radial-gradient(circle at top left, rgba(210, 51, 61, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(14, 25, 39, 0.92) 0%, rgba(9, 18, 29, 0.95) 100%);
	box-shadow:
		0 18px 32px rgba(2, 11, 23, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enid-incidents-page-shell {
	position: relative;
}

.enid-incidents-shell > #incident-categories {
	margin-top: 12px;
}

.enid-incident-overview-card {
	padding: clamp(22px, 2.2vw, 24px);
	border-color: rgba(189, 92, 98, 0.16);
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.12), transparent 26%),
		linear-gradient(180deg, rgba(16, 26, 39, 0.98) 0%, rgba(10, 18, 29, 0.99) 100%);
}

.enid-incident-page-title {
	margin: 0;
	color: var(--enid-site-text);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.enid-incident-page-copy {
	max-width: 42rem;
	font-size: 1.02rem;
	line-height: 1.68;
}

.enid-incidents-shell > #incident-categories > .enid-content-card {
	padding: clamp(22px, 2.2vw, 24px);
}

.enid-incident-notice-card {
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid rgba(210, 51, 61, 0.22);
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.16), transparent 30%),
		linear-gradient(180deg, rgba(46, 16, 22, 0.94) 0%, rgba(17, 10, 15, 0.98) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-incident-notice-card__header {
	margin-bottom: 10px;
}

.enid-incident-notice-card p {
	margin: 0;
	color: #f3d0d2;
	font-size: 1rem;
	line-height: 1.72;
}

.enid-incident-filter-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.enid-incident-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.enid-incident-filter-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.72rem 0.94rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--enid-site-text);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1;
}

.enid-incident-filter-pill:hover,
.enid-incident-filter-pill:focus-visible {
	border-color: rgba(46, 139, 240, 0.34);
	background: rgba(46, 139, 240, 0.1);
}

.enid-incident-filter-pill.is-active {
	border-color: rgba(46, 139, 240, 0.34);
	background: rgba(46, 139, 240, 0.14);
	color: #f2f8ff;
}

.enid-incident-filter-mobile {
	display: none;
}

.enid-incident-grid,
.enid-incident-media-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.enid-incident-card,
.enid-incident-media-card,
.enid-incident-detail-card {
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(16, 31, 47, 0.96) 0%, rgba(8, 17, 28, 0.98) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-incident-card__badges,
.enid-incident-detail-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.enid-incident-card__badge,
.enid-incident-detail-card__meta span {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.78rem;
	border-radius: 999px;
	background: rgba(46, 139, 240, 0.14);
	color: #dfeeff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.enid-incident-card__title,
.enid-incident-media-card h3,
.enid-incident-detail-card__title {
	margin: 18px 0 10px;
	color: var(--enid-site-text);
}

.enid-incident-card__title {
	font-size: 1.45rem;
	line-height: 1.24;
}

.enid-incident-media-card h3 {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.24;
}

.enid-incident-card__title a {
	color: inherit;
}

.enid-incident-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-bottom: 14px;
	color: #bfd0e2;
	font-size: 0.94rem;
}

.enid-incident-card__summary,
.enid-incident-detail-card__summary,
.enid-incident-detail-copy {
	margin: 0;
	color: #d4dfeb;
	font-size: 1rem;
	line-height: 1.72;
}

.enid-incident-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 20px;
}

.enid-incident-card__media-indicator {
	color: #9fb5cc;
	font-size: 0.94rem;
	font-weight: 600;
}

.enid-incident-empty-state {
	padding: 28px;
	border: 1px dashed rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.02);
}

.enid-incident-empty-state h3 {
	margin: 0 0 10px;
	color: var(--enid-site-text);
	font-size: 1.35rem;
}

.enid-incident-empty-state p {
	margin: 0;
	color: var(--enid-site-muted);
	line-height: 1.68;
}

.enid-incident-detail-card__title {
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.enid-incident-detail-card__meta {
	margin-bottom: 18px;
}

.enid-incident-detail-card__summary {
	margin: 0;
	max-width: 52rem;
}

.enid-incident-media-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.enid-incident-media-card__source {
	margin: 6px 0 0;
	color: #95b7db;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.enid-incident-media-card__note {
	margin: 0 0 16px;
	color: #cad8e6;
	line-height: 1.68;
}

.enid-incident-media-embed {
	margin-top: 10px;
}

.enid-incident-media-embed__frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	aspect-ratio: 16 / 9;
	background: #09121d;
	box-shadow: inset 0 0 0 1px rgba(46, 139, 240, 0.06);
}

.enid-incident-media-embed__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.enid-incident-media-fallback {
	margin: 10px 0 0;
}

.enid-incident-media-fallback .enid-button {
	width: auto;
}

.enid-incident-key-times {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enid-incident-key-times h4 {
	margin: 0 0 12px;
	color: var(--enid-site-text);
	font-size: 1rem;
}

.enid-incident-key-times ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.enid-incident-key-times li {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: #cfdae7;
	font-size: 0.96rem;
	line-height: 1.5;
}

.enid-incident-key-times strong {
	color: #f2f7ff;
}

.enid-report-support-shell {
	display: grid;
	gap: 14px;
}

.enid-report-support-hero {
	padding: clamp(18px, 2.4vw, 22px);
	border-color: rgba(89, 160, 237, 0.18);
	background: linear-gradient(180deg, rgba(13, 28, 45, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-report-support-hero__title {
	margin: 0;
	color: #f5f9ff;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.enid-report-support-hero__intro {
	margin: 8px 0 0;
	max-width: 44rem;
	color: #d9e8f6;
	font-size: 0.98rem;
	line-height: 1.52;
}

.enid-report-support-notice,
.enid-report-support-next-steps {
	padding: 16px 18px;
	border-color: rgba(102, 160, 223, 0.16);
	background: linear-gradient(180deg, rgba(12, 25, 40, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-report-support-notice p,
.enid-report-support-next-steps p {
	margin: 0;
	color: #d3e3f1;
	font-size: 0.93rem;
	line-height: 1.56;
}

.enid-report-support-next-steps {
	display: grid;
	gap: 10px;
}

.enid-report-support-next-steps__header {
	display: grid;
	gap: 4px;
}

.enid-report-support-next-steps__header h2 {
	margin: 0;
	color: var(--enid-site-text);
	font-size: 1.08rem;
	line-height: 1.2;
}

.enid-report-support-next-steps__header p {
	max-width: 48rem;
}

.enid-report-support-next-steps__list {
	margin: 0;
	padding-left: 18px;
	color: #d3e3f1;
	display: grid;
	gap: 6px;
}

.enid-report-support-next-steps__list li {
	line-height: 1.45;
}

.enid-report-support-options {
	display: grid;
	gap: 8px;
}

.enid-report-support-card-grid {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: min(100%, 980px);
	margin-inline: auto;
}

.enid-report-support-card-grid__row {
	display: flex !important;
	gap: 22px;
	align-items: stretch;
	width: 100%;
}

.enid-report-support-option {
	appearance: none;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 6px;
	width: 100%;
	min-width: 0;
	justify-self: stretch;
	flex: 1 1 0;
	max-width: none;
	min-height: 148px;
	padding: 18px 18px 17px;
	border: 1px solid rgba(105, 163, 225, 0.14);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(14, 30, 49, 0.96) 0%, rgba(8, 18, 30, 0.98) 100%);
	color: inherit;
	text-align: left;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.enid-report-support-option:hover,
.enid-report-support-option:focus-visible {
	border-color: rgba(90, 170, 246, 0.3);
	box-shadow: 0 10px 22px rgba(3, 14, 27, 0.18);
	outline: none;
}

.enid-report-support-option.is-selected {
	border-color: rgba(116, 194, 255, 0.82);
	background: linear-gradient(180deg, rgba(20, 46, 74, 0.99) 0%, rgba(9, 21, 35, 0.99) 100%);
	box-shadow:
		0 0 0 1px rgba(116, 194, 255, 0.34),
		0 12px 28px rgba(9, 34, 65, 0.28),
		inset 0 3px 0 rgba(151, 216, 255, 0.9),
		inset 0 2px 0 rgba(182, 231, 255, 0.12);
}

.enid-report-support-option h3 {
	margin: 0;
	color: var(--enid-site-text);
	font-size: clamp(1rem, 1.45vw, 1.14rem);
	line-height: 1.22;
	text-wrap: balance;
}

.enid-report-support-option p {
	margin: 0;
	color: #bfd2e4;
	font-size: 0.89rem;
	line-height: 1.44;
}

.enid-report-support-helper-note {
	margin: 0;
	width: min(100%, 980px);
	margin-inline: auto;
	color: var(--enid-site-muted);
	font-size: 0.88rem;
	line-height: 1.42;
}

.enid-report-support-form-shell {
	padding: clamp(14px, 2vw, 18px);
	border: 1px solid rgba(102, 160, 223, 0.12);
	border-top: 2px solid rgba(101, 180, 255, 0.42);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(13, 28, 45, 0.96) 0%, rgba(7, 17, 28, 0.99) 100%);
	box-shadow:
		0 10px 24px rgba(2, 11, 23, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.enid-report-support-form-shell[hidden] {
	display: none !important;
}

.enid-report-support-form-panel[hidden] {
	display: none !important;
}

.enid-report-support-form-panel.is-active {
	padding-top: 10px;
	border-top: 1px solid rgba(115, 193, 255, 0.28);
	box-shadow: inset 0 1px 0 rgba(115, 193, 255, 0.08);
}

.enid-report-support-form-panel__header {
	display: grid;
	gap: 4px;
	padding-top: 2px;
}

.enid-report-support-form-panel__header h2 {
	margin: 0;
	color: var(--enid-site-text);
	font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.enid-report-support-form-panel__header p {
	margin: 0;
	color: var(--enid-site-muted);
	font-size: 0.92rem;
	line-height: 1.48;
}

.enid-report-support-form {
	display: grid;
	gap: 10px;
	margin-top: 10px;
}

.enid-report-support-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.enid-report-support-field {
	display: grid;
	gap: 5px;
}

.enid-report-support-field--wide {
	grid-column: 1 / -1;
}

.enid-report-support-field__label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	color: #edf5ff;
	font-size: 0.91rem;
	font-weight: 700;
	line-height: 1.3;
}

.enid-report-support-field__control {
	width: 100%;
	padding: 0.68rem 0.82rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(4, 12, 21, 0.7);
	color: var(--enid-site-text);
	font: inherit;
	line-height: 1.3;
	box-sizing: border-box;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.enid-report-support-field__control::placeholder {
	color: #86a2c0;
}

.enid-report-support-field__control:focus {
	outline: none;
	border-color: rgba(98, 179, 255, 0.44);
	background: rgba(6, 15, 26, 0.86);
	box-shadow: 0 0 0 3px rgba(46, 139, 240, 0.16);
}

.enid-report-support-field__control--textarea {
	min-height: 94px;
	resize: vertical;
}

.enid-report-support-field.is-invalid .enid-report-support-field__control {
	border-color: rgba(224, 92, 102, 0.54);
	box-shadow: 0 0 0 3px rgba(210, 51, 61, 0.12);
}

.enid-report-support-field__helper {
	margin: 0;
	color: #a9bfd6;
	font-size: 0.88rem;
	line-height: 1.55;
}

.enid-report-support-field__error {
	margin: 0;
	color: #ffb7bc;
	font-size: 0.86rem;
	line-height: 1.4;
}

.enid-report-support-form__status {
	padding: 10px 12px;
	border: 1px solid rgba(100, 168, 235, 0.18);
	border-radius: 12px;
	background: rgba(46, 139, 240, 0.08);
	color: #ddf0ff;
	font-size: 0.9rem;
	line-height: 1.48;
}

.enid-report-support-form__status.is-error {
	border-color: rgba(224, 92, 102, 0.32);
	background: rgba(210, 51, 61, 0.1);
	color: #ffd7da;
}

.enid-report-support-form__status.is-preview {
	border-color: rgba(100, 168, 235, 0.28);
	background: rgba(46, 139, 240, 0.12);
}

.enid-report-support-form__status.is-success {
	border-color: rgba(111, 214, 159, 0.3);
	background: rgba(43, 163, 99, 0.12);
	color: #dffbe9;
}

.enid-report-support-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-top: 0;
}

.enid-report-support-form__dev-note {
	margin: 0;
	max-width: 44rem;
	color: #a9bfd6;
	font-size: 0.82rem;
	line-height: 1.45;
}

.enid-report-support-honeypot {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	border: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.enid-report-support-emergency {
	padding: 11px 13px;
	border: 1px solid rgba(210, 51, 61, 0.18);
	border-radius: 14px;
	background: rgba(42, 16, 22, 0.92);
	box-shadow: 0 8px 18px rgba(2, 11, 23, 0.14);
}

.enid-report-support-emergency p {
	margin: 0;
	color: #f1d0d2;
	font-size: 0.88rem;
	line-height: 1.42;
}

.has-enid-alert-mode .enid-live-card,
.has-enid-alert-mode .enid-pill-nav {
	border-color: rgba(210, 51, 61, 0.26);
}

.has-enid-alert-mode .enid-live-card {
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.16), transparent 30%),
		linear-gradient(180deg, rgba(32, 15, 23, 0.98) 0%, rgba(15, 10, 15, 0.98) 100%);
}

.has-enid-alert-mode .enid-live-card__player-shell {
	border-color: rgba(255, 137, 148, 0.16);
	background: linear-gradient(180deg, rgba(30, 11, 17, 0.86) 0%, rgba(10, 8, 13, 0.96) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.035),
		0 0 28px rgba(210, 51, 61, 0.08);
}

.has-enid-alert-mode .enid-custom-audio-player {
	border-color: rgba(255, 137, 148, 0.26);
	background:
		radial-gradient(circle at 14% 24%, rgba(210, 51, 61, 0.2), transparent 31%),
		radial-gradient(circle at 88% 20%, rgba(46, 139, 240, 0.1), transparent 26%),
		linear-gradient(135deg, rgba(38, 14, 22, 0.98) 0%, rgba(8, 10, 18, 0.99) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.075),
		0 16px 34px rgba(28, 5, 9, 0.32),
		0 0 34px rgba(210, 51, 61, 0.1);
}

.has-enid-alert-mode .enid-custom-audio-player::before {
	background:
		linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.035) 48%, transparent 56%),
		repeating-linear-gradient(90deg, rgba(255, 136, 146, 0.045) 0 1px, transparent 1px 36px);
	opacity: 0.45;
}

.has-enid-alert-mode .enid-custom-audio-player__status {
	color: #ffc1c7;
}

.has-enid-alert-mode .enid-custom-audio-player[data-player-state="playing"] .enid-custom-audio-player__status {
	color: #93e8b6;
}

.has-enid-alert-mode .enid-site-header {
	border-bottom-color: rgba(210, 51, 61, 0.24);
}

.has-enid-alert-mode .enid-live-card__badge,
.has-enid-alert-mode .enid-button-group__label,
.has-enid-alert-mode .enid-support-card__label,
.has-enid-alert-mode .enid-pill-nav a:hover,
.has-enid-alert-mode .enid-pill-nav a:focus-visible {
	background: rgba(210, 51, 61, 0.14);
	color: #ffdadd;
	border-color: rgba(210, 51, 61, 0.22);
}

.has-enid-alert-mode .enid-weather-hero,
.has-enid-alert-mode .enid-pill-nav--weather,
.has-enid-alert-mode .enid-pill-nav--incidents,
.has-enid-alert-mode .enid-weather-source-card {
	border-color: rgba(210, 51, 61, 0.24);
}

.has-enid-alert-mode .enid-weather-hero__eyebrow,
.has-enid-alert-mode .enid-weather-section-card__eyebrow,
.has-enid-alert-mode .enid-forecast-card__label,
.has-enid-alert-mode .enid-alert-card__eyebrow,
.has-enid-alert-mode .enid-weather-status-card__eyebrow {
	color: #ffb3b8;
}

.has-enid-alert-mode .enid-report-support-hero,
.has-enid-alert-mode .enid-report-support-form-shell,
.has-enid-alert-mode .enid-report-support-option.is-selected {
	border-color: rgba(210, 51, 61, 0.28);
}

.has-enid-alert-mode .enid-report-support-hero {
	background: linear-gradient(180deg, rgba(41, 16, 23, 0.98) 0%, rgba(15, 10, 15, 0.99) 100%);
}

.has-enid-alert-mode .enid-report-support-form__status.is-preview,
.has-enid-alert-mode .enid-report-support-emergency {
	border-color: rgba(255, 159, 166, 0.18);
}

.enid-report-support-page__sponsor {
	margin-top: 20px;
}

.enid-report-support-page__sponsor .enid-sponsor-placeholder {
	padding: clamp(18px, 2.2vw, 22px);
	border-color: rgba(255, 255, 255, 0.05);
	background: linear-gradient(180deg, rgba(11, 23, 36, 0.88) 0%, rgba(8, 17, 28, 0.92) 100%);
	box-shadow: 0 8px 18px rgba(2, 11, 23, 0.12);
}

.enid-report-support-page__sponsor .enid-sponsor-placeholder h2 {
	font-size: 1.08rem;
}

.enid-report-support-page__sponsor .enid-sponsor-placeholder p {
	font-size: 0.92rem;
	line-height: 1.5;
}

.enid-report-support-page__sponsor .enid-sponsor-card {
	background:
		radial-gradient(circle at top right, rgba(46, 139, 240, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(15, 28, 42, 0.86) 0%, rgba(9, 18, 29, 0.92) 100%);
	box-shadow: 0 8px 18px rgba(2, 11, 23, 0.1);
}

.enid-support-ticket-shell {
	display: grid;
	gap: 16px;
}

.enid-support-ticket-hero,
.enid-support-ticket-card {
	padding: clamp(18px, 2.4vw, 22px);
	border-color: rgba(89, 160, 237, 0.18);
	background: linear-gradient(180deg, rgba(13, 28, 45, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
	box-shadow: var(--enid-site-shadow-soft);
}

.enid-support-ticket-hero__title {
	margin: 0;
	color: #f5f9ff;
	font-size: clamp(1.85rem, 4vw, 2.8rem);
	line-height: 1.02;
}

.enid-support-ticket-hero__intro {
	margin: 10px 0 0;
	max-width: 48rem;
	color: #d9e8f6;
	font-size: 0.98rem;
	line-height: 1.55;
}

.enid-support-ticket-notice {
	padding: 12px 14px;
	border: 1px solid rgba(100, 168, 235, 0.18);
	border-radius: 14px;
	background: rgba(46, 139, 240, 0.08);
	color: #dbeeff;
	font-size: 0.92rem;
	line-height: 1.5;
}

.enid-support-ticket-notice.is-success {
	border-color: rgba(111, 214, 159, 0.3);
	background: rgba(43, 163, 99, 0.12);
	color: #dffbe9;
}

.enid-support-ticket-notice.is-error {
	border-color: rgba(224, 92, 102, 0.32);
	background: rgba(210, 51, 61, 0.1);
	color: #ffd7da;
}

.enid-support-ticket-card--notice p {
	margin: 0;
	color: var(--enid-site-muted);
}

.enid-support-ticket-card__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.enid-support-ticket-card__header h2 {
	margin: 4px 0 0;
	color: var(--enid-site-text);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.enid-support-ticket-card__eyebrow {
	margin: 0;
	color: #7eb6ff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-support-ticket-status {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.enid-support-ticket-status--new {
	background: rgba(46, 139, 240, 0.18);
	color: #a8d3ff;
}

.enid-support-ticket-status--active {
	background: rgba(38, 194, 213, 0.18);
	color: #a5f0fb;
}

.enid-support-ticket-status--waiting {
	background: rgba(255, 193, 92, 0.18);
	color: #ffd79a;
}

.enid-support-ticket-status--resolved {
	background: rgba(43, 163, 99, 0.18);
	color: #bbf0d2;
}

.enid-support-ticket-status--closed {
	background: rgba(144, 160, 181, 0.2);
	color: #d8e2ee;
}

.enid-support-ticket-meta {
	display: grid;
	gap: 12px;
	margin: 0;
}

.enid-support-ticket-meta div {
	display: grid;
	grid-template-columns: minmax(120px, 0.32fr) 1fr;
	gap: 12px;
}

.enid-support-ticket-meta dt,
.enid-support-ticket-meta dd {
	margin: 0;
}

.enid-support-ticket-meta dt {
	color: #c0d2e7;
	font-weight: 700;
}

.enid-support-ticket-meta dd {
	color: var(--enid-site-text);
}

.enid-support-ticket-private-note {
	margin: 18px 0 0;
	padding-top: 16px;
	border-top: 1px solid rgba(126, 182, 255, 0.16);
	color: #a9bfd6;
	font-size: 0.88rem;
	line-height: 1.55;
}

.enid-support-ticket-thread {
	display: grid;
	gap: 14px;
}

.enid-support-ticket-thread__item {
	padding: 16px;
	border: 1px solid rgba(126, 182, 255, 0.14);
	border-radius: 16px;
	background: rgba(7, 16, 28, 0.65);
}

.enid-support-ticket-thread__item header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 14px;
	margin-bottom: 10px;
}

.enid-support-ticket-thread__item header strong {
	color: var(--enid-site-text);
}

.enid-support-ticket-thread__item header span {
	color: var(--enid-site-muted);
	font-size: 0.88rem;
}

.enid-support-ticket-thread__item pre,
.enid-support-ticket-thread__body {
	margin: 0;
	padding: 14px;
	border-radius: 12px;
	background: rgba(10, 24, 39, 0.9);
	color: #e3edf7;
	font-family: inherit;
	font-size: 0.94rem;
	line-height: 1.62;
	word-break: break-word;
}

.enid-support-ticket-thread__item pre {
	white-space: pre-wrap;
}

.enid-support-ticket-thread__body {
	white-space: normal;
}

.enid-support-ticket-thread__body p,
.enid-support-ticket-thread__body ul,
.enid-support-ticket-thread__body ol {
	margin-top: 0;
	margin-bottom: 0.55em;
}

.enid-support-ticket-thread__body ul,
.enid-support-ticket-thread__body ol {
	padding-left: 1.4em;
	list-style-position: outside;
}

.enid-support-ticket-thread__body ul {
	list-style-type: disc;
}

.enid-support-ticket-thread__body ol {
	list-style-type: decimal;
}

.enid-support-ticket-thread__body li {
	display: list-item;
	margin: 0 0 0.28em;
}

.enid-support-ticket-thread__body > :last-child {
	margin-bottom: 0;
}

.enid-support-ticket-reply-form .wp-editor-wrap,
.enid-support-ticket-reply-form .wp-editor-container {
	max-width: 100%;
}

.enid-support-ticket-private-file {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	padding: 14px;
	border: 1px solid rgba(126, 182, 255, 0.22);
	border-radius: 14px;
	background: rgba(10, 24, 39, 0.72);
}

.enid-support-ticket-private-file strong {
	color: #7eb6ff;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.enid-support-ticket-private-file small {
	color: var(--enid-site-muted);
	font-size: 0.88rem;
}

.enid-support-ticket-private-file em {
	color: var(--enid-site-muted);
}

.enid-support-ticket-private-file__status {
	font-style: normal;
	color: #ffd7da;
	font-weight: 700;
}

.enid-support-ticket-private-file__helper {
	color: #a9bfd6;
	font-size: 0.88rem;
	line-height: 1.55;
}

.enid-support-ticket-reply-form {
	margin-top: 0;
}

.enid-support-ticket-action-split {
	display: grid;
	gap: 14px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(126, 182, 255, 0.14);
}

.enid-support-ticket-action-split h3 {
	margin: 4px 0 8px;
	color: var(--enid-site-text);
	font-size: 1.02rem;
}

.enid-support-ticket-action-split p {
	margin: 0;
	color: #a9bfd6;
	font-size: 0.92rem;
	line-height: 1.55;
}

.enid-support-ticket-action-form {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.enid-updates-shell,
.enid-about-shell {
	display: grid;
	gap: 20px;
}

.enid-updates-hero,
.enid-about-hero {
	padding: clamp(24px, 3vw, 32px);
	border-color: rgba(89, 160, 237, 0.18);
	background:
		radial-gradient(circle at top right, rgba(46, 139, 240, 0.16), transparent 34%),
		linear-gradient(180deg, rgba(13, 28, 45, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
}

.enid-updates-hero__eyebrow,
.enid-about-hero__eyebrow,
.enid-about-channel-card__label {
	margin: 0 0 10px;
	color: #8ebbf6;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-updates-hero__title,
.enid-about-hero__title {
	margin: 0;
	color: #f5f9ff;
	font-size: clamp(2rem, 4.8vw, 3.3rem);
	line-height: 1.02;
	letter-spacing: -0.05em;
}

.enid-updates-hero__intro,
.enid-about-hero__intro {
	margin: 12px 0 0;
	max-width: 48rem;
	color: #d9e8f6;
	font-size: 1rem;
	line-height: 1.62;
}

.enid-about-section {
	display: grid;
	gap: 16px;
}

.enid-about-section > * {
	margin-top: 0;
	margin-bottom: 0;
}

.enid-about-section h2 {
	margin: 0;
	color: #f5f9ff;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.enid-about-section p {
	max-width: 72rem;
}

.enid-about-section a {
	font-weight: 800;
}

.enid-about-section .enid-content-card__grid {
	margin-top: 0;
	align-items: stretch;
}

.enid-about-section .enid-content-card__grid > .enid-mini-card {
	box-sizing: border-box;
	height: 100%;
	margin-top: 0;
}

.enid-about-section .enid-mini-card {
	display: grid;
	align-content: start;
	gap: 12px;
}

.enid-about-section .enid-mini-card > * {
	margin: 0;
}

.enid-about-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
}

.enid-about-list--compact {
	gap: 6px;
}

.enid-updates-hero__grid {
	margin-top: 18px;
}

.enid-updates-hero__mini ul {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 6px;
}

.enid-updates-query {
	margin-top: 0;
}

.enid-updates-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.enid-update-card {
	height: 100%;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.enid-update-card > * {
	margin-top: 0;
}

.enid-update-card__image,
.enid-update-card__image.wp-block-post-featured-image {
	margin: 0;
	position: relative;
	padding: 10px;
	border: 1px solid rgba(155, 195, 246, 0.32);
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(17, 42, 68, 0.98), rgba(3, 10, 20, 0.98));
	box-shadow:
		0 30px 58px rgba(0, 0, 0, 0.6),
		0 14px 30px rgba(0, 0, 0, 0.48),
		0 0 38px rgba(46, 139, 240, 0.24),
		0 0 0 1px rgba(255, 255, 255, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.16),
		inset 0 -18px 34px rgba(0, 0, 0, 0.24);
}

.enid-update-card__image a {
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 16px;
	overflow: hidden;
	background: #081321;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow:
		0 20px 32px rgba(0, 0, 0, 0.52),
		0 0 34px rgba(46, 139, 240, 0.2);
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.enid-update-card__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: clamp(180px, 28vw, 360px);
	object-fit: cover;
}

.enid-update-card__image a::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.18),
		inset 0 -34px 44px rgba(2, 11, 23, 0.34),
		inset 0 20px 34px rgba(255, 255, 255, 0.1);
	pointer-events: none;
}

.enid-update-card__image a:hover,
.enid-update-card__image a:focus-visible {
	box-shadow:
		0 24px 42px rgba(0, 0, 0, 0.58),
		0 0 46px rgba(46, 139, 240, 0.28);
	transform: translateY(-1px);
}

.enid-update-card__meta {
	gap: 8px;
	margin-bottom: 0;
}

.enid-update-card__date,
.enid-update-card__terms,
.enid-update-card__terms a {
	color: #9bc3f6;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.enid-update-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.enid-update-card__terms a {
	display: inline-flex;
	padding: 0.34rem 0.68rem;
	border: 1px solid rgba(126, 182, 255, 0.18);
	border-radius: 999px;
	background: rgba(46, 139, 240, 0.08);
}

.enid-update-card__title,
.enid-update-card__title.wp-block-post-title {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.2;
}

.enid-update-card__title a {
	color: var(--enid-site-text);
}

.enid-update-card__excerpt,
.enid-update-card__excerpt p {
	margin: 0;
	color: #cedbea;
	line-height: 1.65;
}

.enid-update-card__excerpt .wp-block-post-excerpt__more-link {
	display: inline-flex;
	margin-top: 12px;
	font-weight: 700;
}

.enid-updates-empty {
	padding: clamp(24px, 3vw, 30px);
	text-align: left;
}

.enid-single-post-shell {
	display: grid;
	gap: 20px;
	width: 100%;
	max-width: min(1040px, 100%);
	margin: 0 auto;
}

.enid-single-post-shell > * {
	box-sizing: border-box;
	width: 100%;
	max-width: 1040px;
	margin-right: auto;
	margin-left: auto;
}

.enid-single-post-hero {
	padding: clamp(24px, 3.2vw, 38px);
	border-color: rgba(89, 160, 237, 0.18);
	background:
		radial-gradient(circle at top right, rgba(46, 139, 240, 0.17), transparent 34%),
		linear-gradient(180deg, rgba(13, 28, 45, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
}

.enid-single-post-hero__eyebrow {
	margin: 0 0 12px;
	color: #8ebbf6;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.enid-single-post-hero__title,
.enid-single-post-hero__title.wp-block-post-title {
	margin: 0;
	max-width: 16em;
	color: #f5f9ff;
	font-size: clamp(2rem, 4.8vw, 3.45rem);
	line-height: 1.03;
	letter-spacing: -0.055em;
}

.enid-single-post-meta {
	gap: 8px;
	margin-top: 18px;
}

.enid-single-post-meta__date,
.enid-single-post-meta__terms,
.enid-single-post-meta__terms a {
	color: #9bc3f6;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.enid-single-post-meta__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.enid-single-post-meta__terms a {
	display: inline-flex;
	padding: 0.34rem 0.68rem;
	border: 1px solid rgba(126, 182, 255, 0.18);
	border-radius: 999px;
	background: rgba(46, 139, 240, 0.08);
}

.enid-single-post-featured,
.enid-single-post-featured.wp-block-post-featured-image {
	margin-top: 0;
	margin-bottom: 0;
	padding: 10px;
	border: 1px solid rgba(155, 195, 246, 0.32);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(17, 42, 68, 0.98), rgba(3, 10, 20, 0.98));
	box-shadow:
		0 30px 58px rgba(0, 0, 0, 0.6),
		0 14px 30px rgba(0, 0, 0, 0.48),
		0 0 38px rgba(46, 139, 240, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.enid-single-post-featured img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	background: #081321;
	box-shadow: 0 20px 32px rgba(0, 0, 0, 0.52);
}

.enid-single-post-content {
	padding: clamp(24px, 3.2vw, 38px);
}

.enid-single-post-body {
	color: #d9e8f6;
	font-size: clamp(1rem, 1.45vw, 1.08rem);
	line-height: 1.72;
}

.enid-single-post-body > * {
	margin-top: 0;
	margin-bottom: 1.15em;
}

.enid-single-post-body > :last-child {
	margin-bottom: 0;
}

.enid-single-post-body h2,
.enid-single-post-body h3,
.enid-single-post-body h4 {
	margin-top: 1.35em;
	margin-bottom: 0.55em;
	color: #f5f9ff;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.enid-single-post-body a {
	font-weight: 800;
}

.enid-single-post-body ul,
.enid-single-post-body ol {
	padding-left: 1.35em;
}

.enid-single-post-actions {
	margin-top: clamp(22px, 3vw, 32px);
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enid-single-post-actions .wp-block-buttons {
	margin: 0;
}

.enid-about-grid {
	align-items: stretch;
}

.enid-about-channel-card {
	position: relative;
	overflow: hidden;
}

.enid-about-channel-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, rgba(46, 139, 240, 0.95) 0%, rgba(21, 89, 175, 0.92) 100%);
}

.enid-about-safety {
	border-color: rgba(117, 181, 248, 0.24);
	background:
		radial-gradient(circle at top right, rgba(46, 139, 240, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(12, 30, 49, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
}

.enid-about-thank-you {
	border-color: rgba(117, 181, 248, 0.22);
	background:
		radial-gradient(circle at top right, rgba(117, 181, 248, 0.14), transparent 32%),
		linear-gradient(180deg, rgba(12, 30, 49, 0.98) 0%, rgba(7, 17, 28, 0.99) 100%);
}

.enid-about-disclaimer {
	border-color: rgba(210, 51, 61, 0.2);
	background:
		radial-gradient(circle at top right, rgba(210, 51, 61, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(27, 14, 21, 0.98) 0%, rgba(14, 10, 15, 0.99) 100%);
}

.enid-about-disclaimer .wp-block-buttons {
	margin-top: 16px;
}

.has-enid-alert-mode .enid-support-ticket-hero,
.has-enid-alert-mode .enid-support-ticket-card {
	border-color: rgba(210, 51, 61, 0.28);
	background: linear-gradient(180deg, rgba(41, 16, 23, 0.98) 0%, rgba(15, 10, 15, 0.99) 100%);
}

@media (max-width: 820px) {
	.enid-report-support-card-grid {
		gap: 14px;
		width: 100%;
	}

	.enid-report-support-card-grid__row {
		gap: 14px;
	}

	.enid-report-support-helper-note {
		width: 100%;
	}

	.enid-support-ticket-meta div {
		grid-template-columns: 1fr;
	}

	.enid-updates-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.enid-custom-audio-player {
		grid-template-columns: 1fr;
		justify-items: stretch;
		padding: 18px;
		text-align: center;
	}

	.enid-custom-audio-player__button {
		justify-self: center;
	}

	.enid-custom-audio-player__main {
		justify-content: center;
	}

	.enid-custom-audio-player__signal {
		display: none;
	}

	.enid-custom-audio-player__volume input[type="range"] {
		min-width: 0;
	}

	.enid-report-support-card-grid__row {
		flex-direction: column;
	}

	.enid-report-support-helper-note {
		width: 100%;
	}
}

@media (max-width: 720px) {
	body :where(.is-layout-constrained) > * {
		max-width: calc(100% - 24px);
	}
}

@media (max-width: 980px) {
	.enid-custom-audio-player {
		grid-template-columns: auto minmax(0, 1fr);
		min-height: 0;
	}

	.enid-custom-audio-player__volume,
	.enid-custom-audio-player__error {
		grid-column: 1 / -1;
	}

	.enid-live-card__support-grid,
	.enid-live-card__actions,
	.enid-content-card__grid,
	.enid-content-card__grid--two,
	.enid-content-card__grid--equal-heights,
	.enid-content-card__grid--scanner-apps,
	.enid-content-card__grid--will-not-hear,
	.enid-incident-grid,
	.enid-incident-media-list,
	.enid-site-footer__inner {
		grid-template-columns: 1fr;
	}

	.enid-weather-compact-grid {
		grid-template-columns: 1fr;
	}

	.enid-alert-banner__inner,
	.enid-secondary-strip__inner,
	.enid-sponsor-placeholder__inner,
	.enid-sponsor-showcase__header,
	.enid-site-header__inner,
	.enid-weather-hero__inner,
	.enid-weather-hero__footer,
		.enid-incident-filter-header,
		.enid-incident-card__footer,
		.enid-incident-media-card__header,
		.enid-weather-section-card__header,
	.enid-weather-compact-card__header,
	.enid-weather-source-card__inner,
	.enid-alert-empty-state,
	.enid-report-support-form__footer,
	.enid-support-ticket-card__header,
	.enid-support-ticket-thread__item header {
		flex-direction: column;
		align-items: flex-start;
	}

	.enid-site-nav {
		margin-left: 0;
		width: 100%;
	}

	.enid-site-nav__list {
		justify-content: flex-start;
	}

	.enid-sponsor-card__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.enid-weather-hero__status {
		justify-items: start;
		min-width: 0;
	}

	.enid-report-support-form__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.enid-site-header {
		padding: 10px 0;
	}

	.enid-site-header__inner {
		flex-direction: row;
		align-items: center;
		gap: 10px 12px;
	}

	.enid-site-brand {
		flex: 1 1 0;
		min-width: 0;
		gap: 3px;
	}

	.enid-site-brand__title,
	.enid-site-brand__title.wp-block-heading {
		font-size: clamp(1.08rem, 5vw, 1.32rem);
	}

	.enid-site-brand__tagline {
		font-size: 0.78rem;
		line-height: 1.3;
	}

	.enid-scanner-child-ready .enid-site-menu-toggle {
		display: inline-flex;
	}

	.enid-site-nav {
		width: 100%;
		margin-left: 0;
	}

	.enid-scanner-child-ready .enid-site-nav {
		display: none;
	}

	.enid-scanner-child-ready .enid-site-header.is-menu-open .enid-site-nav {
		display: block;
	}

	.enid-site-nav__list {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
		padding: 10px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 18px;
		background: rgba(4, 12, 22, 0.92);
	}

	.enid-site-nav a {
		justify-content: flex-start;
		width: 100%;
		min-height: 44px;
		padding: 0.8rem 0.92rem;
		font-size: 0.92rem;
	}

	.home .enid-main-wrap {
		padding-bottom: 36px;
	}

	.home .enid-page-section {
		margin-top: 20px;
	}

	.home .enid-page-section--tight {
		margin-top: 10px;
	}

	.home .enid-live-card {
		padding: 18px 16px;
	}

	.enid-live-card--listen-live {
		padding: 18px 16px;
	}

	.home .enid-live-card__header {
		margin-bottom: 12px;
	}

	.enid-live-card--listen-live .enid-live-card__header {
		margin-bottom: 12px;
	}

	.home .enid-live-card__support-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"feed"
			"left"
			"right"
			"listen"
			"community";
		margin-top: 12px;
		gap: 10px;
	}

	.enid-live-card__support-grid--listen-live {
		grid-template-columns: 1fr;
		grid-template-areas:
			"feed"
			"left"
			"right"
			"listen"
			"source";
		margin-top: 12px;
		gap: 10px;
	}

	.home .enid-live-card__support-grid:not(.enid-live-card__support-grid--with-community) {
		grid-template-areas:
			"feed"
			"left"
			"right"
			"listen";
	}

	.home .enid-support-card--channel-left,
	.home .enid-support-card--feed-status,
	.home .enid-support-card--channel-right,
	.home .enid-live-card__action-slot--listen,
	.home .enid-live-card__action-slot--community {
		order: initial;
	}

	.enid-live-card__support-grid--listen-live .enid-support-card--channel-left,
	.enid-live-card__support-grid--listen-live .enid-support-card--feed-status,
	.enid-live-card__support-grid--listen-live .enid-support-card--channel-right,
	.enid-live-card__support-grid--listen-live .enid-live-card__action-slot--listen-live,
	.enid-live-card__support-grid--listen-live .enid-live-card__action-slot--source {
		order: initial;
	}

	.home .enid-support-card {
		padding: 14px;
	}

	.enid-live-card__support-grid--listen-live .enid-support-card,
	.enid-live-card__support-grid--listen-live .enid-live-card__action-slot {
		padding: 14px;
	}

	.home .enid-button-group {
		padding: 12px 13px;
	}

	.home .enid-community-links {
		gap: 8px;
		flex-direction: column;
	}

	.home .enid-community-link {
		width: 100%;
		min-height: 46px;
		padding: 0.64rem 0.74rem;
		gap: 10px;
	}

	.home .enid-community-link__icon {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.enid-live-card__support-grid--listen-live .enid-button-group {
		padding: 12px 13px;
	}

	.home .enid-secondary-strip {
		padding: 16px 14px;
	}

	.home .enid-secondary-strip__inner {
		gap: 12px;
	}

	.home .enid-sponsor-wrap {
		margin-top: 16px;
	}

	.home .enid-sponsor-placeholder {
		padding: 14px;
	}

	.home .enid-sponsor-placeholder .enid-sponsor-banner__media {
		min-height: 0;
		max-height: none;
		padding: 6px;
	}

	.home .enid-sponsor-placeholder .enid-sponsor-banner__image,
	.home .enid-sponsor-placeholder .enid-sponsor-banner img {
		max-height: none;
	}

	.enid-pill-nav {
		display: none;
	}

	.enid-section-jump {
		display: block;
		position: sticky;
		top: 74px;
		z-index: 20;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 14px;
		background: linear-gradient(180deg, rgba(13, 29, 47, 0.94) 0%, rgba(9, 21, 34, 0.96) 100%);
		box-shadow: 0 12px 24px rgba(2, 10, 20, 0.18);
		overflow: hidden;
	}

	.enid-section-jump summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 42px;
		padding: 0.7rem 0.9rem;
		color: var(--enid-site-text);
		font-size: 0.88rem;
		font-weight: 800;
		line-height: 1.1;
		cursor: pointer;
		list-style: none;
	}

	.enid-section-jump summary::-webkit-details-marker {
		display: none;
	}

	.enid-section-jump summary::after {
		content: "+";
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.35rem;
		height: 1.35rem;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.06);
		color: #b8d7fb;
		font-size: 1rem;
		line-height: 1;
	}

	.enid-section-jump[open] summary {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.enid-section-jump[open] summary::after {
		content: "-";
	}

	.enid-section-jump summary:focus-visible,
	.enid-section-jump__link:focus-visible {
		outline: 2px solid rgba(46, 139, 240, 0.72);
		outline-offset: 2px;
	}

	.enid-section-jump__list {
		display: grid;
		gap: 0;
		margin: 0;
		padding: 6px;
		list-style: none;
	}

	.enid-section-jump__list li {
		margin: 0;
	}

	.enid-section-jump__link {
		display: flex;
		align-items: center;
		min-height: 40px;
		padding: 0.62rem 0.72rem;
		border-radius: 10px;
		color: var(--enid-site-muted);
		font-size: 0.86rem;
		font-weight: 700;
		line-height: 1.2;
	}

	.enid-section-jump__link:hover,
	.enid-section-jump__link:focus-visible {
		background: rgba(46, 139, 240, 0.12);
		color: var(--enid-site-text);
	}

	.enid-incident-filter-pills {
		display: none;
	}

	.enid-incident-filter-pills br {
		display: none;
	}

	.enid-incident-filter-mobile {
		display: block;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.025);
		overflow: hidden;
	}

	.enid-incident-filter-mobile__summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 42px;
		padding: 0.7rem 0.9rem;
		color: var(--enid-site-text);
		font-size: 0.88rem;
		font-weight: 800;
		line-height: 1.1;
		cursor: pointer;
		list-style: none;
	}

	.enid-incident-filter-mobile__summary::-webkit-details-marker {
		display: none;
	}

	.enid-incident-filter-mobile__summary::after {
		content: "+";
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.35rem;
		height: 1.35rem;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.06);
		color: #b8d7fb;
		font-size: 1rem;
		line-height: 1;
	}

	.enid-incident-filter-mobile[open] .enid-incident-filter-mobile__summary {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.enid-incident-filter-mobile[open] .enid-incident-filter-mobile__summary::after {
		content: "-";
	}

	.enid-incident-filter-mobile__summary:focus-visible,
	.enid-incident-filter-mobile__link:focus-visible {
		outline: 2px solid rgba(46, 139, 240, 0.72);
		outline-offset: 2px;
	}

	.enid-incident-filter-mobile__list {
		display: grid;
		gap: 0;
		margin: 0;
		padding: 6px;
		list-style: none;
	}

	.enid-incident-filter-mobile__list li {
		margin: 0;
	}

	.enid-incident-filter-mobile__link {
		display: flex;
		align-items: center;
		min-height: 40px;
		padding: 0.62rem 0.72rem;
		border-radius: 10px;
		color: var(--enid-site-muted);
		font-size: 0.86rem;
		font-weight: 700;
		line-height: 1.2;
	}

	.enid-incident-filter-mobile__link:hover,
	.enid-incident-filter-mobile__link:focus-visible {
		background: rgba(46, 139, 240, 0.12);
		color: var(--enid-site-text);
	}

	.enid-incident-filter-mobile__link.is-active {
		background: rgba(46, 139, 240, 0.16);
		color: #f2f8ff;
	}

	.enid-incidents-shell > #incident-categories > .enid-content-card,
	.enid-incidents-shell > #incident-list > .enid-content-card {
		padding: 18px 16px;
	}

	.enid-incident-filter-header {
		gap: 6px;
		margin-bottom: 8px;
	}

	.enid-incident-filter-header h2 {
		margin-bottom: 0;
		font-size: clamp(1.35rem, 7vw, 1.72rem);
		line-height: 1.08;
	}

	.enid-incident-filter-header .enid-live-card__eyebrow {
		margin-bottom: 5px;
	}

	.enid-incident-filter-header > p:empty,
	.enid-incident-filter-header > div > p:empty,
	.enid-sponsor-showcase__header > p:empty,
	.enid-sponsor-showcase__header > div > p:empty {
		display: none;
		margin: 0;
		padding: 0;
	}

	.enid-sponsor-showcase__header {
		margin-bottom: 0;
	}

	.enid-anchor-target {
		scroll-margin-top: 146px;
	}

	.enid-live-card__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.enid-alert-card__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.enid-support-card--channel-left,
	.enid-support-card--feed-status,
	.enid-support-card--channel-right {
		order: initial;
	}

	.enid-weather-hero__title {
		font-size: clamp(1.8rem, 8vw, 2.3rem);
	}

	.enid-weather-primary-panel {
		padding: 24px;
	}

	.enid-incident-card,
	.enid-incident-media-card,
	.enid-incident-detail-card,
	.enid-weather-metric,
	.enid-weather-compact-card,
	.enid-forecast-card,
	.enid-alert-card {
		padding: 20px;
	}

	.enid-forecast-grid {
		grid-template-columns: 1fr;
	}

	.enid-forecast-card {
		height: auto;
	}

	.enid-forecast-card__summary {
		display: block;
		-webkit-line-clamp: unset;
		overflow: visible;
	}

	.enid-report-support-hero,
	.enid-report-support-form-shell,
	.enid-report-support-option,
	.enid-report-support-emergency {
		padding: 16px;
	}
}
