:root {
	--ra-black: #050505;
	--ra-ink: #101010;
	--ra-panel: #171717;
	--ra-panel-2: #202020;
	--ra-red: #df111f;
	--ra-red-dark: #9d0c16;
	--ra-bone: #f4efe7;
	--ra-muted: #b8b0a7;
	--ra-line: rgba(244, 239, 231, 0.15);
	--ra-gold: #f0ba45;
	--ra-steel: #78a8b8;
	--ra-green: #62b37b;
	--ra-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ra-black);
	color: var(--ra-bone);
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		linear-gradient(135deg, rgba(223, 17, 31, 0.12), transparent 38%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 74px),
		var(--ra-black);
}

a {
	color: var(--ra-bone);
	text-decoration-color: rgba(223, 17, 31, 0.8);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.22em;
}

a:hover,
a:focus {
	color: #ffffff;
	text-decoration-color: var(--ra-gold);
}

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

button,
input,
textarea,
select {
	font: inherit;
}

.site-shell {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--ra-red);
	color: #ffffff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(244, 239, 231, 0.12);
	background: rgba(5, 5, 5, 0.88);
	backdrop-filter: blur(16px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(1240px, calc(100% - 32px));
	min-height: 78px;
	margin-inline: auto;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	color: var(--ra-bone);
	text-decoration: none;
}

.site-brand__image {
	height: 52px;
	object-fit: contain;
	object-position: left center;
}

.site-brand__copy {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.site-brand__name {
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
}

.site-brand__tagline {
	color: var(--ra-muted);
	font-size: 0.82rem;
	line-height: 1.3;
}

.primary-navigation {
	display: block;
}

.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	color: var(--ra-bone);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-navigation a:hover,
.primary-navigation a:focus,
.primary-navigation .current-menu-item > a {
	background: rgba(223, 17, 31, 0.18);
	color: #ffffff;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--ra-line);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--ra-bone);
}

.menu-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
}

.ra-hero {
	position: relative;
	display: grid;
	min-height: 760px;
	overflow: hidden;
	isolation: isolate;
	background: #050505;
}

.ra-hero::before {
	position: absolute;
	inset: -24px;
	z-index: 0;
	content: "";
	background: var(--ra-live-artwork, var(--ra-hero-image)) center / cover no-repeat;
	filter: blur(10px) saturate(0.92) contrast(1.08);
	opacity: 0.62;
	transform: scale(1.04);
}

.ra-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.28) 100%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.56) 72%, #050505 100%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
	mix-blend-mode: normal;
}

.ra-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(330px, 440px);
	align-items: center;
	gap: 56px;
	padding-block: 92px 54px;
}

.ra-hero__content {
	max-width: 690px;
}

.ra-kicker {
	margin: 0 0 14px;
	color: var(--ra-gold);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.ra-hero__title {
	max-width: 720px;
	margin: 0;
}

.ra-hero__logo {
	width: min(100%, 680px);
	max-height: 300px;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.72));
}

.ra-hero__lead {
	max-width: 650px;
	margin: 28px 0 0;
	color: #e7dfd6;
	font-size: 1.18rem;
	line-height: 1.75;
}

.ra-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.ra-button,
.ra-stream-fallback,
.ra-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 18px;
	border-radius: 6px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.ra-button--primary,
.ra-stream-fallback {
	border: 1px solid var(--ra-red);
	background: linear-gradient(180deg, #ef1728, #ab0d18);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(223, 17, 31, 0.27);
}

.ra-button--ghost {
	border: 1px solid rgba(244, 239, 231, 0.28);
	background: rgba(244, 239, 231, 0.05);
	color: var(--ra-bone);
}

.ra-link {
	min-height: auto;
	padding: 0;
	color: var(--ra-gold);
}

.ra-live-panel {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(244, 239, 231, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(32, 32, 32, 0.96), rgba(13, 13, 13, 0.95)),
		repeating-linear-gradient(135deg, rgba(244, 239, 231, 0.06) 0 1px, transparent 1px 12px);
	box-shadow: var(--ra-shadow);
}

.ra-live-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.ra-live-panel__head p {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 900;
}

.ra-live-panel__head span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	font-size: 0.76rem;
	font-weight: 900;
}

.ra-live-panel__head span::before {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--ra-green);
	box-shadow: 0 0 16px rgba(98, 179, 123, 0.9);
	content: "";
}

.ra-player-output {
	min-height: 82px;
}

.ra-player-output iframe,
.ra-player-output audio,
.ra-player-output .widget {
	width: 100%;
}

.ra-now-playing {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: start;
	margin-top: 18px;
	padding: 16px;
	border: 1px solid rgba(244, 239, 231, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(244, 239, 231, 0.08), rgba(244, 239, 231, 0.02)),
		rgba(5, 5, 5, 0.44);
}

.ra-now-playing__cover {
	position: relative;
	width: 100%;
	aspect-ratio: 10 / 10;
	overflow: hidden;
	border: 1px solid rgba(244, 239, 231, 0.13);
	border-radius: 6px;
	background: var(--ra-current-cover, var(--ra-live-artwork, var(--ra-hero-image))) center / cover no-repeat;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.ra-now-playing__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.ra-now-playing__body {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.ra-now-playing__body span {
	display: block;
	color: var(--ra-steel);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.ra-now-playing__body strong {
	display: block;
	margin-top: 0;
	color: #ffffff;
	font-size: 1.13rem;
	line-height: 1.26;
	overflow-wrap: anywhere;
}

.ra-now-playing__body em {
	display: block;
	margin-top: 5px;
	color: var(--ra-gold);
	font-size: 0.84rem;
	font-weight: 900;
	font-style: normal;
	line-height: 1.28;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.ra-now-playing__body em:empty {
	display: none;
}

.ra-player-output .freeYess-wrapper {
	width: 100%;
}

.ra-player-output .freeYess-player {
	width: 100%;
	border: 1px solid rgba(244, 239, 231, 0.12);
	border-radius: 8px;
	background: #0d0d0d !important;
	box-shadow: none;
}

.ra-player-output .freeYess-artwork {
	border-radius: 6px;
}

.ra-player-output .freeYess-yesLink {
	display: none !important;
}

.ra-player-output .freeYess-title,
.ra-player-output .freeYess-artist {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.ra-signal-strip {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-bottom: 28px;
	border: 1px solid rgba(244, 239, 231, 0.12);
	background: rgba(244, 239, 231, 0.1);
}

.ra-signal-strip span {
	padding: 16px;
	background: rgba(5, 5, 5, 0.72);
	color: #ffffff;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.ra-powerplay-strip {
	border-block: 1px solid rgba(244, 239, 231, 0.1);
	background:
		linear-gradient(90deg, rgba(223, 17, 31, 0.14), rgba(120, 168, 184, 0.08)),
		#0b0b0b;
}

.ra-powerplay-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 58px;
	color: var(--ra-bone);
	text-align: center;
}

.ra-powerplay-strip__inner span {
	color: var(--ra-gold);
	font-size: 0.76rem;
	font-weight: 950;
	text-transform: uppercase;
}

.ra-powerplay-strip__inner strong {
	color: #ffffff;
	font-size: 0.98rem;
	overflow-wrap: anywhere;
}

.ra-section {
	padding-block: 82px;
}

.ra-section--tight {
	padding-block: 58px;
}

.ra-section--schedule {
	background:
		linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(5, 5, 5, 0.98)),
		repeating-linear-gradient(90deg, rgba(223, 17, 31, 0.1) 0 1px, transparent 1px 90px);
}

.ra-section--news {
	background: #0a0a0a;
}

.ra-section__head {
	max-width: 680px;
	margin-bottom: 34px;
}

.ra-section__head--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.ra-section__head h2 {
	margin: 0;
	color: #ffffff;
	font-size: 2.35rem;
	line-height: 1.1;
}

.ra-feature-grid,
.ra-schedule,
.ra-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ra-feature,
.ra-schedule__item,
.ra-post-card,
.ra-empty-card,
.entry-card,
.site-sidebar .widget,
.comments-area {
	border: 1px solid rgba(244, 239, 231, 0.13);
	border-radius: 8px;
	background: rgba(23, 23, 23, 0.92);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.ra-feature,
.ra-schedule__item,
.ra-empty-card {
	padding: 24px;
}

.ra-feature__mark,
.ra-schedule__item span {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--ra-red);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.ra-feature h2,
.ra-schedule__item h3,
.ra-empty-card h3 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 1.28rem;
	line-height: 1.25;
}

.ra-feature p,
.ra-schedule__item p,
.ra-empty-card p {
	margin: 0;
	color: var(--ra-muted);
}

.ra-listen-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(223, 17, 31, 0.16), transparent 34%),
		linear-gradient(180deg, #050505 0%, #101010 100%);
}

.ra-listen-section::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background:
		repeating-linear-gradient(90deg, rgba(244, 239, 231, 0.035) 0 1px, transparent 1px 88px),
		repeating-linear-gradient(0deg, rgba(244, 239, 231, 0.025) 0 1px, transparent 1px 12px);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000000 16%, #000000 84%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000000 16%, #000000 84%, transparent);
}

.ra-listen-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
	gap: 32px;
	align-items: start;
}

.ra-listen-intro {
	display: grid;
	align-content: start;
	padding: 10px 0;
}

.ra-listen-intro h2 {
	margin: 0;
	color: #ffffff;
	font-size: 2.45rem;
	line-height: 1.04;
}

.ra-listen-intro p:not(.ra-kicker) {
	margin: 18px 0 0;
	color: var(--ra-muted);
}

.ra-device-note span {
	color: var(--ra-gold);
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.ra-listen-panel {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(244, 239, 231, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(244, 239, 231, 0.06), rgba(244, 239, 231, 0.015)),
		rgba(12, 12, 12, 0.78);
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
}

.ra-listen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 14px;
}

.ra-listen-card {
	position: relative;
	display: grid;
	align-content: center;
	min-height: 104px;
	padding: 20px;
	overflow: hidden;
	border: 1px solid rgba(244, 239, 231, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(244, 239, 231, 0.09), rgba(244, 239, 231, 0.018)),
		var(--ra-panel);
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ra-listen-card::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(135deg, rgba(223, 17, 31, 0.22), transparent 58%);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.ra-listen-card:hover::before,
.ra-listen-card:focus::before {
	opacity: 1;
}

.ra-listen-card:hover,
.ra-listen-card:focus {
	border-color: rgba(240, 186, 69, 0.46);
	background:
		linear-gradient(145deg, rgba(223, 17, 31, 0.22), rgba(244, 239, 231, 0.04)),
		var(--ra-panel-2);
	transform: translateY(-2px);
}

.ra-listen-card strong {
	position: relative;
	z-index: 1;
	color: #ffffff;
	font-size: 1.08rem;
	line-height: 1.2;
}

.ra-device-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px;
	border: 1px solid rgba(244, 239, 231, 0.12);
	border-radius: 8px;
	background: rgba(5, 5, 5, 0.48);
}

.ra-device-note p {
	margin: 0;
	color: var(--ra-muted);
	text-align: right;
}

.ra-post-card {
	overflow: hidden;
}

.ra-post-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--ra-panel-2);
}

.ra-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ra-post-card__body {
	padding: 22px;
}

.ra-post-card h3 {
	margin: 8px 0 10px;
	font-size: 1.18rem;
	line-height: 1.25;
}

.ra-post-card h3 a {
	text-decoration: none;
}

.ra-post-card p {
	margin: 0;
	color: var(--ra-muted);
}

.entry-meta {
	color: var(--ra-steel);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	padding-block: 58px 86px;
}

.content-area {
	display: grid;
	gap: 26px;
	min-width: 0;
}

.archive-header,
.error-404 {
	padding: 34px;
	border: 1px solid rgba(244, 239, 231, 0.12);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(10, 10, 10, 0.96));
}

.archive-header h1,
.error-404 h1 {
	margin: 0;
	color: #ffffff;
	font-size: 2.3rem;
	line-height: 1.1;
}

.archive-description,
.error-404 p {
	margin-top: 14px;
	color: var(--ra-muted);
}

.entry-card {
	padding: 30px;
}

.entry-card__media {
	display: block;
	margin: -30px -30px 26px;
	aspect-ratio: 16 / 8;
	background: var(--ra-panel-2);
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}

.entry-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.entry-title {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 2.4rem;
	line-height: 1.12;
}

.entry-title a {
	text-decoration: none;
}

.ra-wp-content {
	color: #ded7cf;
}

.ra-wp-content > *:first-child {
	margin-top: 0;
}

.ra-wp-content > *:last-child {
	margin-bottom: 0;
}

.ra-wp-content h1,
.ra-wp-content h2,
.ra-wp-content h3,
.ra-wp-content h4 {
	color: #ffffff;
	line-height: 1.18;
}

.ra-wp-content p,
.ra-wp-content ul,
.ra-wp-content ol {
	margin-block: 0 1.1em;
}

.ra-wp-content a {
	font-weight: 800;
}

.ra-wp-content .wp-block-button__link,
.search-submit,
.form-submit .submit {
	border: 0;
	border-radius: 6px;
	background: var(--ra-red);
	color: #ffffff;
	font-weight: 900;
	text-decoration: none;
}

.site-sidebar {
	display: grid;
	align-content: start;
	gap: 18px;
}

.site-sidebar .widget {
	padding: 22px;
}

.widget-title {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 1.15rem;
}

.widget ul {
	padding-left: 1.1rem;
	margin: 0;
}

.widget li + li {
	margin-top: 8px;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-field,
.ra-wp-content input[type="text"],
.ra-wp-content input[type="email"],
.ra-wp-content input[type="url"],
.ra-wp-content textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(244, 239, 231, 0.2);
	border-radius: 6px;
	background: #101010;
	color: #ffffff;
}

.search-submit,
.form-submit .submit {
	min-height: 44px;
	padding: 10px 16px;
	cursor: pointer;
}

.post-navigation,
.posts-navigation,
.comments-area {
	padding: 22px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}

.comment-list {
	padding-left: 1.25rem;
}

.site-footer {
	border-top: 1px solid rgba(244, 239, 231, 0.12);
	background: #070707;
}

.footer-newsletter,
.footer-social-feed {
	padding-block: 40px;
	background: #111;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(0, 1fr));
	gap: 26px;
	padding-block: 46px;
}

.site-footer__brand img {
	width: 210px;
	margin-bottom: 16px;
}

.site-footer__brand p {
	max-width: 330px;
	margin: 0;
	color: var(--ra-muted);
}

.site-footer__widgets .widget + .widget {
	margin-top: 18px;
}

.site-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-block: 18px;
	border-top: 1px solid rgba(244, 239, 231, 0.1);
	color: var(--ra-muted);
	font-size: 0.88rem;
}

.site-footer__bar p {
	margin: 0;
}

.social-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.social-menu a {
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 980px) {
	.site-header__inner {
		min-height: 70px;
	}

	.site-brand__copy {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		padding: 12px;
		border: 1px solid rgba(244, 239, 231, 0.14);
		border-radius: 8px;
		background: rgba(5, 5, 5, 0.98);
		box-shadow: var(--ra-shadow);
	}

	.site-header.is-menu-open .primary-navigation {
		display: block;
	}

	.primary-navigation ul {
		display: grid;
		gap: 2px;
	}

	.primary-navigation a {
		padding: 12px;
	}

	.ra-hero {
		min-height: auto;
	}

	.ra-hero__inner {
		grid-template-columns: 1fr;
		gap: 34px;
		padding-block: 72px 42px;
	}

	.ra-hero__logo {
		max-height: 240px;
	}

	.ra-feature-grid,
	.ra-schedule,
	.ra-post-grid,
	.ra-listen-layout,
	.content-with-sidebar,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-sidebar {
		order: 2;
	}

	.ra-section__head--row,
	.site-footer__bar {
		align-items: start;
		flex-direction: column;
	}
}

@media (max-width: 680px) {
	.site-shell {
		width: min(100% - 28px, 1180px);
	}

	.admin-bar .site-header {
		top: 0;
	}

	.site-brand__image {
		height: 46px;
	}

	.ra-hero__inner {
		padding-block: 54px 34px;
	}

	.ra-hero__title {
		max-width: 100%;
	}

	.ra-hero__lead {
		font-size: 1rem;
	}

	.ra-live-panel {
		padding: 18px;
	}

	.ra-now-playing {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.ra-signal-strip {
		grid-template-columns: 1fr;
	}

	.ra-powerplay-strip__inner {
		display: grid;
		gap: 2px;
		padding-block: 12px;
	}

	.ra-section {
		padding-block: 56px;
	}

	.ra-section--tight {
		padding-block: 38px;
	}

	.ra-section__head h2,
	.archive-header h1,
	.error-404 h1,
	.entry-title {
		font-size: 1.85rem;
	}

	.ra-listen-grid {
		grid-template-columns: 1fr;
	}

	.ra-device-note {
		display: grid;
		gap: 4px;
	}

	.ra-device-note p {
		text-align: left;
	}

	.entry-card,
	.archive-header,
	.error-404 {
		padding: 22px;
	}

	.entry-card__media {
		margin: -22px -22px 22px;
	}

	.search-form {
		display: grid;
	}
}
