/**
 * CC Podcast — front end
 *
 * Scoped entirely under .cc-pod-* so nothing leaks into Beaver Builder rows.
 * Colours derive from the existing ConcealedCarry.com palette: the brand red
 * carries every interactive affordance, and the hero uses a dark slab so the
 * player reads as an object on the page rather than another white section.
 */

.cc-pod-hero,
.cc-pod-archive,
.cc-pod-sponsors,
.cc-pod-search,
.cc-pod-subscribe,
.cc-pod-mini {
	--cc-pod-accent: #c8102e;
	--cc-pod-accent-dark: #a30d24;
	--cc-pod-ink: #14181d;
	--cc-pod-ink-soft: #232932;
	--cc-pod-on-ink: #ffffff;
	--cc-pod-on-ink-muted: rgba( 255, 255, 255, 0.68 );
	--cc-pod-text: #1c1f24;
	--cc-pod-muted: #626b76;
	--cc-pod-line: #e2e5e9;
	--cc-pod-surface: #ffffff;
	--cc-pod-radius: 6px;

	box-sizing: border-box;
}

.cc-pod-hero *,
.cc-pod-archive *,
.cc-pod-sponsors *,
.cc-pod-search *,
.cc-pod-subscribe *,
.cc-pod-mini * {
	box-sizing: border-box;
}

.cc-pod-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect( 0, 0, 0, 0 );
	white-space: nowrap;
	border: 0;
}

.cc-pod-sep {
	margin: 0 0.45em;
	opacity: 0.5;
}

.cc-pod-notice {
	margin: 0;
	padding: 14px 16px;
	border: 1px dashed var( --cc-pod-line );
	border-radius: var( --cc-pod-radius );
	color: var( --cc-pod-muted );
	font-size: 14px;
}

.cc-pod-notice__who {
	opacity: 0.7;
	font-style: italic;
}

/* ------------------------------------------------------------------ Hero */

.cc-pod-hero {
	background: var( --cc-pod-ink );
	border-radius: var( --cc-pod-radius );
	color: var( --cc-pod-on-ink );
	padding: 28px;
	margin: 0 0 32px;
}

.cc-pod-hero__heading {
	margin: 0 0 18px;
	color: var( --cc-pod-on-ink );
	font-size: 20px;
	line-height: 1.2;
}

.cc-pod-hero__inner {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

.cc-pod-hero__art {
	flex: 0 0 220px;
	max-width: 220px;
}

.cc-pod-hero__art img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
	background: var( --cc-pod-ink-soft );
}

.cc-pod-hero__body {
	flex: 1 1 auto;
	min-width: 0;
}

.cc-pod-hero__meta {
	margin: 0 0 8px;
	color: var( --cc-pod-on-ink-muted );
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.cc-pod-hero__now {
	color: var( --cc-pod-accent );
	font-weight: 700;
}

.cc-pod-hero__title {
	margin: 0 0 10px;
	font-size: 26px;
	line-height: 1.25;
}

.cc-pod-hero__title a {
	color: var( --cc-pod-on-ink );
	text-decoration: none;
}

.cc-pod-hero__title a:hover,
.cc-pod-hero__title a:focus-visible {
	color: var( --cc-pod-on-ink );
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cc-pod-hero__excerpt {
	margin: 0 0 18px;
	color: var( --cc-pod-on-ink-muted );
	font-size: 15px;
	line-height: 1.55;
}

/* --------------------------------------------------------------- Player */

.cc-pod-player {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
}

.cc-pod-player button,
.cc-pod-player a {
	font-family: inherit;
}

.cc-pod-play {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var( --cc-pod-accent );
	color: #fff;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.cc-pod-play:hover {
	background: var( --cc-pod-accent-dark );
}

.cc-pod-play:active {
	transform: scale( 0.94 );
}

.cc-pod-play__i {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.cc-pod-play__i--pause,
.cc-pod-play.is-playing .cc-pod-play__i--play {
	display: none;
}

.cc-pod-play.is-playing .cc-pod-play__i--pause {
	display: block;
}

.cc-pod-skip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: none;
	color: var( --cc-pod-on-ink-muted );
	cursor: pointer;
	transition: color 0.15s ease;
}

.cc-pod-skip:hover {
	color: var( --cc-pod-on-ink );
}

.cc-pod-skip svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-pod-seek {
	flex: 1 1 auto;
	min-width: 60px;
	display: flex;
	align-items: center;
}

.cc-pod-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	margin: 0;
	padding: 0;
	border-radius: 2px;
	background: rgba( 255, 255, 255, 0.22 );
	cursor: pointer;
}

.cc-pod-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: var( --cc-pod-accent );
}

.cc-pod-range::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: var( --cc-pod-accent );
}

.cc-pod-time {
	flex: 0 0 auto;
	margin: 0;
	color: var( --cc-pod-on-ink-muted );
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.cc-pod-time__sep {
	margin: 0 4px;
	opacity: 0.5;
}

.cc-pod-rate {
	flex: 0 0 auto;
	min-width: 42px;
	padding: 5px 8px;
	border: 1px solid rgba( 255, 255, 255, 0.28 );
	border-radius: 3px;
	background: none;
	color: var( --cc-pod-on-ink-muted );
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.cc-pod-rate:hover {
	border-color: rgba( 255, 255, 255, 0.6 );
	color: var( --cc-pod-on-ink );
}

.cc-pod-download {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var( --cc-pod-on-ink-muted );
	text-decoration: none;
	transition: color 0.15s ease;
}

.cc-pod-download:hover {
	color: var( --cc-pod-on-ink );
}

.cc-pod-download svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-pod-resume {
	margin: 12px 0 0;
}

.cc-pod-resume__btn {
	padding: 7px 13px;
	border: 1px solid rgba( 255, 255, 255, 0.3 );
	border-radius: 3px;
	background: none;
	color: var( --cc-pod-on-ink );
	font-size: 13px;
	cursor: pointer;
}

.cc-pod-resume__btn:hover {
	border-color: var( --cc-pod-accent );
	color: var( --cc-pod-accent );
}

/* ------------------------------------------------------------ Subscribe */

.cc-pod-subscribe {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 20px;
}

/*
 * Inside a hero the subscribe row spans the full width beneath the artwork
 * and the body, rather than sitting in the right-hand column. The artwork is
 * taller than the text beside it, so a column-confined row left dead space
 * under the image, and one wide row wraps better on mobile.
 */
.cc-pod-hero > .cc-pod-subscribe {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba( 255, 255, 255, 0.14 );
}

.cc-pod-subscribe--center {
	justify-content: center;
}

.cc-pod-subscribe__label {
	color: var( --cc-pod-on-ink-muted );
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cc-pod-subscribe__list {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-pod-subscribe__list li {
	list-style: none;
	margin: 0;
}

.cc-pod-subscribe__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var( --cc-pod-on-ink-muted );
	text-decoration: none;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.cc-pod-subscribe__link:hover,
.cc-pod-subscribe__link:focus-visible {
	color: var( --cc-pod-accent );
}

.cc-pod-subscribe--icons .cc-pod-subscribe__link {
	width: 38px;
	height: 38px;
	border: 1px solid rgba( 255, 255, 255, 0.22 );
	border-radius: 50%;
	font-size: 17px;
}

.cc-pod-subscribe--icons .cc-pod-subscribe__link:hover {
	border-color: var( --cc-pod-accent );
}

.cc-pod-subscribe--buttons .cc-pod-subscribe__link {
	padding: 8px 14px;
	border: 1px solid rgba( 255, 255, 255, 0.22 );
	border-radius: 3px;
	font-size: 14px;
}

/*
 * The row renders on the dark hero slab and standalone on the page's white
 * background. The context is set explicitly by the renderer rather than
 * inferred from ancestry, which kept breaking when the markup moved.
 */
.cc-pod-subscribe--on-light .cc-pod-subscribe__label,
.cc-pod-subscribe--on-light .cc-pod-subscribe__link {
	color: var( --cc-pod-muted );
}

.cc-pod-subscribe--on-light .cc-pod-subscribe__link {
	border-color: var( --cc-pod-line );
}

.cc-pod-subscribe--on-light .cc-pod-subscribe__link:hover,
.cc-pod-subscribe--on-light .cc-pod-subscribe__link:focus-visible {
	border-color: var( --cc-pod-accent );
	color: var( --cc-pod-accent );
}

/* ------------------------------------------------------- Sticky mini bar */

.cc-pod-mini {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9998;
	background: var( --cc-pod-ink );
	border-top: 3px solid var( --cc-pod-accent );
	box-shadow: 0 -6px 24px rgba( 0, 0, 0, 0.22 );
	color: var( --cc-pod-on-ink );
	animation: cc-pod-slide-up 0.22s ease;
}

@keyframes cc-pod-slide-up {
	from {
		transform: translateY( 100% );
	}

	to {
		transform: translateY( 0 );
	}
}

.cc-pod-mini[hidden] {
	display: none;
}

.cc-pod-mini__inner {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 16px;
}

.cc-pod-mini__art {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 3px;
	object-fit: cover;
}

.cc-pod-mini__text {
	flex: 0 1 240px;
	min-width: 0;
}

.cc-pod-mini__title {
	display: block;
	overflow: hidden;
	color: var( --cc-pod-on-ink );
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cc-pod-mini__title:hover {
	color: var( --cc-pod-accent );
}

.cc-pod-mini .cc-pod-player {
	flex: 1 1 auto;
	min-width: 0;
}

.cc-pod-mini .cc-pod-play {
	width: 40px;
	height: 40px;
}

.cc-pod-mini .cc-pod-play__i {
	width: 17px;
	height: 17px;
}

.cc-pod-mini__close {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: none;
	color: var( --cc-pod-on-ink-muted );
	cursor: pointer;
}

.cc-pod-mini__close:hover {
	color: var( --cc-pod-on-ink );
}

.cc-pod-mini__close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

body.cc-pod-has-mini {
	padding-bottom: 72px;
}

/* --------------------------------------------------------------- Archive */

.cc-pod-archive {
	margin: 0 0 32px;
}

.cc-pod-archive__heading {
	margin: 0 0 18px;
	font-size: 22px;
	line-height: 1.2;
}

.cc-pod-grid {
	display: grid;
	grid-template-columns: repeat( var( --cc-pod-cols, 4 ), minmax( 0, 1fr ) );
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-pod-grid > li {
	list-style: none;
	margin: 0;
}

.cc-pod-card__art {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	background: #f2f3f5;
	aspect-ratio: 1 / 1;
	cursor: pointer;
}

.cc-pod-card__art img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.cc-pod-card:hover .cc-pod-card__art img {
	transform: scale( 1.04 );
}

.cc-pod-card__art img {
	pointer-events: none;
}

.cc-pod-card__badge {
	pointer-events: none;
}

.cc-pod-card__play {
	position: absolute;
	z-index: 2;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var( --cc-pod-accent );
	color: #fff;
	cursor: pointer;
	opacity: 0;
	transform: translateY( 6px );
	transition: opacity 0.18s ease, transform 0.18s ease, background 0.15s ease;
}

.cc-pod-card:hover .cc-pod-card__play,
.cc-pod-card__play:focus-visible,
.cc-pod-card.is-active .cc-pod-card__play {
	opacity: 1;
	transform: translateY( 0 );
}

.cc-pod-card__play:hover {
	background: var( --cc-pod-accent-dark );
}

.cc-pod-card__play svg {
	width: 18px;
	height: 18px;
	margin-left: 2px;
	fill: currentColor;
}

.cc-pod-card__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 3px 7px;
	border-radius: 3px;
	background: rgba( 20, 24, 29, 0.82 );
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.cc-pod-card.is-active .cc-pod-card__badge {
	background: var( --cc-pod-accent );
}

.cc-pod-card__body {
	padding-top: 10px;
}

.cc-pod-card__title {
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.cc-pod-card__title a {
	color: var( --cc-pod-text );
	text-decoration: none;
}

.cc-pod-card__title a:hover {
	color: var( --cc-pod-accent );
}

.cc-pod-card__meta {
	margin: 0;
	color: var( --cc-pod-muted );
	font-size: 13px;
}

/* --------------------------------------------------- Load more + paging */

.cc-pod-more {
	margin: 28px 0 0;
	text-align: center;
}

.cc-pod-more__btn {
	display: inline-block;
	padding: 12px 28px;
	border: 1px solid var( --cc-pod-accent );
	border-radius: 3px;
	background: none;
	color: var( --cc-pod-accent );
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.cc-pod-more__btn:hover,
.cc-pod-more__btn:focus-visible {
	background: var( --cc-pod-accent );
	color: #fff;
}

.cc-pod-more__btn.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.cc-pod-more__btn.is-error {
	border-color: var( --cc-pod-muted );
	color: var( --cc-pod-muted );
}

.cc-pod-pagination {
	margin: 22px 0 0;
}

.cc-pod-pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-pod-pagination__list li {
	list-style: none;
	margin: 0;
}

.cc-pod-pagination__link {
	display: inline-block;
	min-width: 36px;
	padding: 7px 10px;
	border: 1px solid var( --cc-pod-line );
	border-radius: 3px;
	color: var( --cc-pod-text );
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.cc-pod-pagination__link:hover {
	border-color: var( --cc-pod-accent );
	color: var( --cc-pod-accent );
}

.cc-pod-pagination__link--current {
	border-color: var( --cc-pod-accent );
	background: var( --cc-pod-accent );
	color: #fff;
}

.cc-pod-pagination__item--gap {
	padding: 0 4px;
	color: var( --cc-pod-muted );
}

/* -------------------------------------------------------------- Sponsors */

.cc-pod-sponsors {
	margin: 0 0 32px;
	padding: 26px 0;
	border-top: 1px solid var( --cc-pod-line );
	border-bottom: 1px solid var( --cc-pod-line );
	text-align: center;
}

.cc-pod-sponsors__heading {
	margin: 0 0 18px;
	font-size: 20px;
}

.cc-pod-sponsors__tier + .cc-pod-sponsors__tier {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var( --cc-pod-line );
}

.cc-pod-sponsors__label {
	display: block;
	margin-bottom: 14px;
	color: var( --cc-pod-muted );
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cc-pod-sponsors__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-pod-sponsors--grid .cc-pod-sponsors__list {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 150px, 1fr ) );
	gap: 26px;
}

.cc-pod-sponsors__list li {
	list-style: none;
	margin: 0;
}

.cc-pod-sponsors__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cc-pod-sponsors__img {
	display: block;
	width: auto;
	max-width: 100%;
	height: var( --cc-pod-logo-h, 72px );
	object-fit: contain;
}

.cc-pod-sponsors--grey .cc-pod-sponsors__img {
	filter: grayscale( 100% );
	opacity: 0.78;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.cc-pod-sponsors--grey .cc-pod-sponsors__link:hover .cc-pod-sponsors__img {
	filter: grayscale( 0 );
	opacity: 1;
}

/* ---------------------------------------------------------------- Search */

.cc-pod-search {
	margin: 0 0 28px;
}

.cc-pod-search__heading {
	margin: 0 0 12px;
	font-size: 18px;
}

/* ------------------------------------------------------------ Focus ring */

.cc-pod-hero :focus-visible,
.cc-pod-archive :focus-visible,
.cc-pod-sponsors :focus-visible,
.cc-pod-mini :focus-visible {
	outline: 2px solid var( --cc-pod-accent );
	outline-offset: 2px;
}

.cc-pod-hero .cc-pod-play:focus-visible,
.cc-pod-mini .cc-pod-play:focus-visible {
	outline-color: #fff;
}

/* ----------------------------------------------------------- Responsive */

@media ( max-width: 1024px ) {
	.cc-pod-grid {
		grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	}
}

@media ( max-width: 782px ) {
	.cc-pod-hero {
		padding: 22px;
	}

	.cc-pod-hero__inner {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		text-align: center;
	}

	.cc-pod-hero__art {
		flex-basis: auto;
		max-width: 200px;
	}

	.cc-pod-hero__title {
		font-size: 21px;
	}

	.cc-pod-subscribe {
		justify-content: center;
	}

	.cc-pod-player {
		flex-wrap: wrap;
		justify-content: center;
	}

	.cc-pod-seek {
		order: 10;
		flex: 1 0 100%;
	}

	.cc-pod-grid {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
		gap: 18px;
	}

	.cc-pod-card__play {
		opacity: 1;
		transform: none;
		width: 38px;
		height: 38px;
	}

	.cc-pod-mini__text {
		display: none;
	}

	.cc-pod-mini .cc-pod-rate,
	.cc-pod-mini .cc-pod-download,
	.cc-pod-mini .cc-pod-time {
		display: none;
	}

	.cc-pod-sponsors__list {
		gap: 22px;
	}
}

@media ( max-width: 480px ) {
	.cc-pod-grid {
		grid-template-columns: minmax( 0, 1fr );
	}

	.cc-pod-hero .cc-pod-rate,
	.cc-pod-hero .cc-pod-download {
		display: none;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.cc-pod-mini {
		animation: none;
	}

	.cc-pod-card__art img,
	.cc-pod-card__play,
	.cc-pod-play,
	.cc-pod-sponsors__img {
		transition: none;
	}

	.cc-pod-card:hover .cc-pod-card__art img {
		transform: none;
	}
}

/* ------------------------------------------------------ Single episode */

.cc-pod-episode,
.cc-pod-epnav,
.cc-pod-more-eps,
.cc-pod-transcript {
	--cc-pod-accent: #c8102e;
	--cc-pod-accent-dark: #a30d24;
	--cc-pod-text: #1c1f24;
	--cc-pod-muted: #626b76;
	--cc-pod-line: #e2e5e9;
	--cc-pod-surface: #ffffff;
	--cc-pod-radius: 6px;

	box-sizing: border-box;
}

.cc-pod-episode *,
.cc-pod-epnav *,
.cc-pod-more-eps *,
.cc-pod-transcript * {
	box-sizing: border-box;
}

.cc-pod-hero__crumb {
	margin: 0 0 14px;
	color: var( --cc-pod-on-ink-muted );
	font-size: 13px;
}

.cc-pod-hero__crumb a {
	color: var( --cc-pod-on-ink-muted );
	text-decoration: none;
}

.cc-pod-hero__crumb a:hover {
	color: var( --cc-pod-accent );
}

.cc-pod-hero__title--single {
	margin: 0 0 16px;
	color: var( --cc-pod-on-ink );
	font-size: 28px;
	line-height: 1.22;
}

/* Episode sponsors — inline with the notes, deliberately distinct from the
   show-level sponsor tiers, which are a different relationship. */
.cc-pod-epsponsors {
	margin: 0 0 24px;
	padding: 16px 18px;
	border: 1px solid var( --cc-pod-line );
	border-left: 4px solid var( --cc-pod-accent );
	border-radius: 0;
	background: #fafbfc;
}

.cc-pod-epsponsors__heading {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var( --cc-pod-text );
}

.cc-pod-epsponsors__body ul {
	margin: 0;
	padding-left: 20px;
}

.cc-pod-epsponsors__body li {
	margin-bottom: 4px;
}

.cc-pod-notes {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.65;
}

.cc-pod-video {
	margin: 0 0 28px;
}

.cc-pod-video__heading {
	margin: 0 0 12px;
	font-size: 18px;
}

.cc-pod-video__embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #14181d;
	border-radius: 4px;
	overflow: hidden;
}

.cc-pod-video__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Transcript — collapsed by default even when present. A full transcript is
   longer than the rest of the page combined. */
.cc-pod-transcript {
	margin: 0 0 28px;
	border: 1px solid var( --cc-pod-line );
	border-radius: var( --cc-pod-radius );
	background: var( --cc-pod-surface );
}

.cc-pod-transcript__toggle {
	padding: 13px 16px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	color: var( --cc-pod-text );
}

.cc-pod-transcript__toggle::-webkit-details-marker {
	display: none;
}

.cc-pod-transcript__toggle::before {
	content: "▸";
	display: inline-block;
	margin-right: 9px;
	color: var( --cc-pod-accent );
	transition: transform 0.15s ease;
}

.cc-pod-transcript[open] .cc-pod-transcript__toggle::before {
	transform: rotate( 90deg );
}

.cc-pod-transcript__body {
	max-height: 460px;
	overflow-y: auto;
	padding: 0 16px 16px;
	border-top: 1px solid var( --cc-pod-line );
	font-size: 15px;
	line-height: 1.65;
	color: var( --cc-pod-muted );
}

.cc-pod-transcript__body p {
	margin: 14px 0 0;
}

/* Episode navigation */
.cc-pod-epnav {
	display: flex;
	gap: 14px;
	margin: 28px 0;
}

.cc-pod-epnav__link,
.cc-pod-epnav__spacer {
	flex: 1 1 0;
	min-width: 0;
	padding: 13px 16px;
	border: 1px solid var( --cc-pod-line );
	border-radius: var( --cc-pod-radius );
	text-decoration: none;
	transition: border-color 0.15s ease;
}

.cc-pod-epnav__link:hover {
	border-color: var( --cc-pod-accent );
}

.cc-pod-epnav__link--next {
	text-align: right;
}

.cc-pod-epnav__label {
	display: block;
	margin-bottom: 4px;
	color: var( --cc-pod-muted );
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cc-pod-epnav__title {
	display: block;
	color: var( --cc-pod-text );
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.cc-pod-epnav__spacer {
	border-color: transparent;
}

/* Related episodes, list form for a sidebar */
.cc-pod-more-eps__heading {
	margin: 0 0 14px;
	font-size: 18px;
}

.cc-pod-grid--list {
	display: block;
}

.cc-pod-grid--list .cc-pod-card {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.cc-pod-grid--list .cc-pod-card__art {
	flex: 0 0 68px;
	width: 68px;
}

.cc-pod-grid--list .cc-pod-card__play {
	right: 4px;
	bottom: 4px;
	width: 26px;
	height: 26px;
}

.cc-pod-grid--list .cc-pod-card__play svg {
	width: 12px;
	height: 12px;
}

.cc-pod-grid--list .cc-pod-card__badge {
	display: none;
}

.cc-pod-grid--list .cc-pod-card__body {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 0;
}

.cc-pod-grid--list .cc-pod-card__title {
	font-size: 14px;
}

@media ( max-width: 782px ) {
	.cc-pod-hero__title--single {
		font-size: 22px;
	}

	.cc-pod-epnav {
		flex-direction: column;
	}

	.cc-pod-epnav__link--next {
		text-align: left;
	}

	.cc-pod-epnav__spacer {
		display: none;
	}
}

/* Filter-rendered episode page wrapper */
.cc-pod-single {
	margin: 0;
}

.cc-pod-single .cc-pod-hero {
	margin-bottom: 28px;
}

.cc-pod-single .cc-pod-more-eps {
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var( --cc-pod-line, #e2e5e9 );
}

/* Related episodes header row */
.cc-pod-more-eps__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.cc-pod-more-eps__head .cc-pod-more-eps__heading {
	margin: 0;
}

.cc-pod-more-eps__all {
	color: var( --cc-pod-accent, #c8102e );
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.cc-pod-more-eps__all:hover,
.cc-pod-more-eps__all:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media ( max-width: 480px ) {
	.cc-pod-more-eps__head {
		flex-direction: column;
		gap: 6px;
	}
}
