.nr92-pm-dashboard {
	--nr92-red: #ec2323;
	--nr92-dark: #030303;
	--nr92-ink: #1a1a1a;
	--nr92-muted: #686868;
	--nr92-line: #dedede;
	--nr92-soft: #f5f5f5;
	display: grid;
	gap: 28px;
	color: var(--nr92-ink);
}

.nr92-pm-panel {
	background: #fefefe;
	border: 1px solid var(--nr92-line);
	border-radius: 18px;
	box-shadow: 0 14px 38px rgba(3, 3, 3, .07);
	overflow: hidden;
}

.nr92-pm-panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px 30px 20px;
}

.nr92-pm-panel-heading h2 {
	margin: 2px 0 0;
	font-size: clamp(1.45rem, 3vw, 2rem);
	line-height: 1.1;
}

.nr92-pm-eyebrow {
	color: var(--nr92-red);
	font-size: .73rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.nr92-pm-form {
	padding: 8px 30px 30px;
}

.nr92-pm-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.nr92-pm-field,
.nr92-pm-check {
	display: grid;
	gap: 8px;
}

.nr92-pm-field > span,
.nr92-pm-check > span {
	font-size: .85rem;
	font-weight: 750;
}

.nr92-pm-field b {
	color: var(--nr92-red);
}

.nr92-pm-field-wide {
	grid-column: 1 / -1;
}

.nr92-pm-field input:not([type="file"]),
.nr92-pm-field select,
.nr92-pm-field textarea {
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 11px 13px;
	border: 1px solid #cfcfcf;
	border-radius: 9px;
	background: #fefefe;
	color: var(--nr92-ink);
	font: inherit;
}

.nr92-pm-field textarea {
	min-height: 150px;
	resize: vertical;
}

.nr92-pm-field input:focus,
.nr92-pm-field select:focus,
.nr92-pm-field textarea:focus {
	border-color: var(--nr92-red);
	box-shadow: 0 0 0 3px rgba(236, 35, 35, .13);
	outline: 0;
}

.nr92-pm-field small {
	color: var(--nr92-muted);
	font-size: .75rem;
}

.nr92-pm-check {
	grid-template-columns: auto 1fr;
	align-items: center;
	align-self: end;
	min-height: 46px;
}

.nr92-pm-check input {
	width: 18px;
	height: 18px;
	accent-color: var(--nr92-red);
}

.nr92-pm-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--nr92-line);
}

.nr92-pm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--nr92-dark);
	border-radius: 999px;
	background: var(--nr92-dark);
	color: #fefefe !important;
	font-size: .85rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease;
}

.nr92-pm-button:hover {
	transform: translateY(-1px);
}

.nr92-pm-button-primary {
	border-color: var(--nr92-red);
	background: var(--nr92-red);
}

.nr92-pm-button-secondary {
	background: transparent;
	color: var(--nr92-dark) !important;
}

.nr92-pm-button-small {
	min-height: 36px;
	padding: 8px 14px;
}

.nr92-pm-text-link {
	color: var(--nr92-red);
	font-size: .85rem;
	font-weight: 750;
}

.nr92-pm-episodes {
	display: grid;
}

.nr92-pm-episode-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 18px 30px;
	border-top: 1px solid var(--nr92-line);
}

.nr92-pm-episode-art {
	display: grid;
	place-items: center;
	width: 64px;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 10px;
	background: var(--nr92-dark);
	color: #fefefe;
}

.nr92-pm-episode-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nr92-pm-episode-info h3 {
	margin: 4px 0;
	font-size: 1.03rem;
}

.nr92-pm-episode-info small {
	color: var(--nr92-muted);
}

.nr92-pm-episode-meta {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--nr92-muted);
	font-size: .72rem;
	font-weight: 750;
	text-transform: uppercase;
}

.nr92-pm-status {
	padding: 4px 8px;
	border-radius: 999px;
	background: #e8e8e8;
	color: #4b4b4b;
}

.nr92-pm-status-pending {
	background: #fff0c7;
	color: #755000;
}

.nr92-pm-status-publish {
	background: #d9f4df;
	color: #176127;
}

.nr92-pm-notice,
.nr92-pm-empty {
	padding: 18px 22px;
	border-radius: 10px;
}

.nr92-pm-notice {
	border-left: 4px solid;
	background: #f2f2f2;
	font-weight: 700;
}

.nr92-pm-success {
	border-color: #26823b;
	background: #e7f6ea;
}

.nr92-pm-error {
	border-color: var(--nr92-red);
	background: #fff0f0;
}

.nr92-pm-empty {
	margin: 0 30px 28px;
	background: var(--nr92-soft);
}

.nr92-podcast-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 24px;
}

.nr92-podcast-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.nr92-episode-feed {
	--nr92-feed-bg: #030303;
	--nr92-feed-card: #111111;
	--nr92-feed-line: #292929;
	--nr92-feed-text: #f4f4f4;
	--nr92-feed-muted: #aaaaaa;
	--nr92-feed-red: #ec2323;
	padding: clamp(24px, 4vw, 48px);
	border: 1px solid #202020;
	border-radius: 24px;
	background:
		radial-gradient(circle at 100% 0, rgba(236, 35, 35, .13), transparent 30%),
		var(--nr92-feed-bg);
	color: var(--nr92-feed-text);
}

.nr92-episode-feed-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
}

.nr92-episode-feed-kicker {
	display: block;
	margin-bottom: 5px;
	color: var(--nr92-feed-red);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.nr92-episode-feed-header h2 {
	margin: 0;
	color: var(--nr92-feed-text);
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1;
}

.nr92-episode-count {
	flex: none;
	padding: 7px 12px;
	border: 1px solid #3a3a3a;
	border-radius: 999px;
	color: #c8c8c8;
	font-size: .72rem;
	font-weight: 750;
}

.nr92-episode-list {
	display: grid;
	gap: 14px;
}

.nr92-public-episode {
	display: grid;
	grid-template-columns: clamp(110px, 16vw, 165px) minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid var(--nr92-feed-line);
	border-left: 4px solid var(--nr92-feed-red);
	border-radius: 15px;
	background: var(--nr92-feed-card);
	box-shadow: 0 14px 34px rgba(3, 3, 3, .22);
	transition: border-color .18s ease, transform .18s ease;
}

.nr92-public-episode:hover {
	border-color: #484848;
	border-left-color: var(--nr92-feed-red);
	transform: translateY(-2px);
}

.nr92-public-episode-art {
	position: relative;
	min-height: 100%;
	background: linear-gradient(145deg, #272727, #0a0a0a);
}

.nr92-public-episode-art img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 165px;
	object-fit: cover;
}

.nr92-episode-art-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 165px;
	color: var(--nr92-feed-red);
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: .08em;
}

.nr92-public-episode-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: clamp(20px, 3vw, 30px);
}

.nr92-public-episode-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin-bottom: 8px;
	color: var(--nr92-feed-muted);
	font-size: .7rem;
	font-weight: 750;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.nr92-episode-number {
	color: var(--nr92-feed-red);
}

.nr92-explicit-badge {
	padding: 3px 6px;
	border: 1px solid #626262;
	border-radius: 4px;
	color: #d4d4d4;
	font-size: .6rem;
}

.nr92-public-episode h3 {
	margin: 0 0 8px;
	font-size: clamp(1.25rem, 2.5vw, 1.8rem);
	line-height: 1.15;
}

.nr92-public-episode h3 a {
	color: var(--nr92-feed-text);
	text-decoration: none;
}

.nr92-public-episode h3 a:hover {
	color: var(--nr92-feed-red);
}

.nr92-public-episode-description {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 18px;
	color: #bdbdbd;
	font-size: .9rem;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.nr92-public-episode-player {
	width: 100%;
	height: 42px;
	margin-top: 5px;
	border-radius: 999px;
	color-scheme: dark;
	accent-color: var(--nr92-feed-red);
}

.nr92-single-episode-player {
	display: block;
	width: 100%;
	height: 42px;
	margin: 0;
	border-radius: 999px;
	color-scheme: dark;
	accent-color: #ec2323;
}

.nr92-single-episode-player-shell {
	width: 100%;
	min-height: 40px;
}

.nr92-single-episode-player-shell .wp-audio-shortcode,
.nr92-single-episode-player-shell .mejs-container {
	width: 100% !important;
	max-width: none;
}

.nr92-episode-podcast-image-link {
	display: block;
	color: inherit;
}

.nr92-episode-podcast-artwork {
	display: block;
	width: 100%;
	height: auto;
}

.nr92-episode-podcast-title {
	margin: 0;
	color: inherit;
}

.nr92-episode-podcast-title a {
	color: inherit;
	text-decoration: none;
}

.nr92-episode-podcast-title a:hover,
.nr92-episode-podcast-title a:focus-visible {
	color: #ec2323;
}

.nr92-episode-podcast-description > :first-child {
	margin-top: 0;
}

.nr92-episode-podcast-description > :last-child {
	margin-bottom: 0;
}

.nr92-audio-unavailable {
	align-self: flex-start;
	padding: 7px 11px;
	border: 1px dashed #4a4a4a;
	border-radius: 7px;
	color: #929292;
	font-size: .75rem;
	font-weight: 700;
}

.nr92-podcast-hosts {
	--nr92-host-text: #f4f4f4;
	--nr92-host-muted: #b7b7b7;
	--nr92-host-red: #ec2323;
	width: 100%;
	color: var(--nr92-host-text);
}

.nr92-podcast-hosts > h2 {
	margin: 0 0 18px;
	color: var(--nr92-host-text);
	font-size: clamp(1.45rem, 3vw, 2.2rem);
	line-height: 1.1;
	text-align: center;
}

.nr92-podcast-hosts-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.nr92-podcast-hosts-count-1 {
	grid-template-columns: minmax(0, 170px);
	justify-content: center;
}

.nr92-podcast-host {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(244, 244, 244, .12);
	border-radius: 15px;
	background: #03030387;
	box-shadow: 0 12px 28px rgba(3, 3, 3, .2);
	text-align: center;
	transition: border-color .18s ease, transform .18s ease;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.nr92-podcast-host:hover {
	border-color: rgba(236, 35, 35, .65);
	transform: translateY(-2px);
}

.nr92-podcast-host:focus-within {
	outline: 3px solid rgba(236, 35, 35, .45);
	outline-offset: 3px;
}

.nr92-podcast-host-link {
	display: block;
	padding: 17px 10px 14px;
	color: inherit;
	text-decoration: none !important;
}

.nr92-podcast-host::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 44px;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: var(--nr92-host-red);
	content: '';
	transform: translateX(-50%);
}

.nr92-podcast-host-photo {
	width: min(86px, 72%);
	margin: 0 auto 11px;
	aspect-ratio: 1;
}

.nr92-podcast-host-avatar {
	display: block;
	width: 100% !important;
	height: 100% !important;
	border: 3px solid var(--nr92-host-red);
	border-radius: 50%;
	background: #202020;
	box-shadow: 0 0 0 5px rgba(236, 35, 35, .13);
	object-fit: cover;
}

.nr92-podcast-host h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .25em;
	margin: 0;
	color: var(--nr92-host-text);
	font-size: clamp(.82rem, 1.5vw, 1rem);
	line-height: 1.25;
}

.nr92-host-last-name {
	color: var(--nr92-host-muted);
}

.nr92-podcast-host-link:hover h3,
.nr92-podcast-host-link:focus h3 {
	color: var(--nr92-host-red);
}

@media (max-width: 700px) {
	.nr92-pm-grid {
		grid-template-columns: 1fr;
	}

	.nr92-pm-field-wide {
		grid-column: auto;
	}

	.nr92-pm-panel-heading,
	.nr92-pm-form,
	.nr92-pm-episode-card {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nr92-pm-episode-card {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.nr92-pm-episode-art {
		width: 52px;
	}

	.nr92-pm-episode-card .nr92-pm-button {
		grid-column: 1 / -1;
	}

	.nr92-pm-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.nr92-episode-feed {
		border-radius: 16px;
	}

	.nr92-episode-feed-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.nr92-public-episode {
		grid-template-columns: 95px minmax(0, 1fr);
	}

	.nr92-public-episode-art img,
	.nr92-episode-art-fallback {
		min-height: 100%;
	}
}

@media (max-width: 520px) {
	.nr92-public-episode {
		grid-template-columns: 1fr;
	}

	.nr92-public-episode-art {
		aspect-ratio: 16 / 9;
	}

	.nr92-public-episode-art img {
		min-height: 0;
	}

	.nr92-podcast-hosts-grid:not(.nr92-podcast-hosts-count-1) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 340px) {
	.nr92-podcast-hosts-grid:not(.nr92-podcast-hosts-count-1) {
		grid-template-columns: 1fr;
	}
}
