/* Landing podcast — esquema claro (referencia tipo app/podcast en modo claro) */
.ludev-podcast-root {
	--ludev-bg: #ffffff;
	--ludev-surface: #f3f3f5;
	--ludev-hero-surface: #f5f5f8;
	--ludev-hero-edge: #eaeaef;
	--ludev-border: #e2e2e8;
	--ludev-text: #12121a;
	--ludev-muted: #5c5c6a;
	--ludev-accent: #2a2a32;
	--ludev-accent-hover: #1a1a22;
	--ludev-radius: 12px;
	--ludev-shadow: 0 6px 28px rgba(18, 18, 24, 0.06);
	--ludev-row-play: #273050;
	--ludev-icon-btn-border: var(--ludev-row-play);
	--ludev-icon-btn-radius: 9999px;
	--ludev-icon-btn-pad-y: 0.4rem;
	--ludev-icon-btn-pad-x: 0.55rem;
	--ludev-icon-btn-min: 2.25rem;
	color: var(--ludev-text);
	color-scheme: light;
	background-color: transparent;
	background-clip: padding-box;
	max-width: none;
	margin: 0 auto;
	padding: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	position: relative;
	z-index: 0;
	isolation: isolate;
}

/* Franja blanca a todo el ancho del viewport detrás del bloque (tema oscuro / contenedores estrechos) */
.ludev-podcast-root::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 100vw;
	margin-left: -50vw;
	background: var(--ludev-bg);
	z-index: -1;
	pointer-events: none;
}

.ludev-podcast-msg {
	padding: 1rem;
	background: var(--ludev-surface);
	border-radius: var(--ludev-radius);
	border: 1px solid var(--ludev-border);
}

.ludev-podcast-msg--wide {
	max-width: 42rem;
	line-height: 1.55;
}

.ludev-podcast-msg__link {
	font-weight: 600;
	color: var(--ludev-accent, #4a4a52);
}

/* Cabecera: sin caja (fondo y bordes transparentes / ninguno) */
.ludev-podcast-hero {
	display: grid;
	grid-template-columns: minmax(160px, 240px) 1fr;
	gap: 1.75rem 2.25rem;
	align-items: start;
	padding: 0;
	margin-bottom: 2rem;
	color: var(--ludev-text);
	background: transparent;
	border-radius: 0;
	border: none;
	box-shadow: none;
}

.ludev-podcast-hero--with-latest {
	padding-bottom: 0;
}

@media (max-width: 640px) {
	.ludev-podcast-hero {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 1.2rem;
	}

	.ludev-podcast-hero__cover {
		margin-inline: auto;
		max-width: min(240px, 72vw);
	}
}

/* Portada: mismo rol que el cuadrado grande en apps de podcast */
.ludev-podcast-hero__cover {
	width: 100%;
	max-width: 260px;
	aspect-ratio: 1;
	border-radius: 10px;
	background: #ececf0;
	border: 1px solid rgba(18, 18, 28, 0.06);
	box-shadow: 0 12px 40px rgba(18, 18, 28, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	align-self: start;
}

.ludev-podcast-hero--with-latest .ludev-podcast-hero__cover {
	max-width: 272px;
}

.ludev-podcast-hero__cover img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.ludev-podcast-hero__cover-placeholder {
	width: 100%;
	height: 100%;
	min-height: 0;
	flex: 1;
	align-self: stretch;
	border-radius: inherit;
	background: linear-gradient(135deg, #e8e8ec 0%, #f0f0f3 100%);
}

.ludev-podcast-hero__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.35rem;
}

.ludev-podcast-hero--with-latest .ludev-podcast-hero__top {
	margin-bottom: 0.3rem;
}

.ludev-podcast-hero__text {
	min-width: 0;
	flex: 1;
}

.ludev-podcast-hero__title {
	font-size: clamp(1.5rem, 4vw, 2.15rem);
	font-weight: 800;
	margin: 0 0 0.25rem;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: var(--ludev-text);
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.ludev-podcast-hero__cats {
	margin: 0 0 0.75rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--ludev-muted);
	text-transform: uppercase;
}

.ludev-podcast-hero__main > .ludev-podcast-hero__desc {
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(18, 18, 28, 0.08);
}

.ludev-podcast-hero__desc {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #3a3a44;
}

.ludev-podcast-hero__desc p {
	margin: 0 0 0.5rem;
	color: inherit;
}

.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;
}

/* Último episodio: integrado en el hero (sin segunda miniatura) */
.ludev-podcast-spotlight--hero {
	margin: 0;
	padding: 0;
	border: none;
}

.ludev-podcast-spotlight__inner {
	display: grid;
	grid-template-columns: 144px 1fr minmax(160px, 220px);
	gap: 1.35rem 1.75rem;
	align-items: center;
	padding: 0.25rem 0 1.75rem;
	margin-bottom: 0.25rem;
	color: var(--ludev-text);
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	transition: opacity 0.15s;
}

/* Dentro del hero: solo texto episodio + controles (portada ya en la columna izquierda) */
.ludev-podcast-spotlight__inner--hero {
	grid-template-columns: 1fr minmax(112px, 132px);
	gap: 0.65rem 1.1rem;
	align-items: start;
	padding: 0;
	margin-bottom: 0;
	margin-top: 0;
}

@media (min-width: 721px) {
	.ludev-podcast-spotlight__inner--hero {
		align-items: center;
	}
}

.ludev-podcast-spotlight--playing .ludev-podcast-spotlight__inner {
	box-shadow: none;
}

@media (max-width: 720px) {
	.ludev-podcast-spotlight__inner:not(.ludev-podcast-spotlight__inner--hero) {
		grid-template-columns: 104px 1fr;
	}

	.ludev-podcast-spotlight__inner--hero {
		grid-template-columns: 1fr auto !important;
		align-items: end !important;
	}

	.ludev-podcast-spotlight__inner:not(.ludev-podcast-spotlight__inner--hero) .ludev-podcast-spotlight__cover {
		width: 104px;
		height: 104px;
	}

	.ludev-podcast-spotlight__side {
		grid-column: 1 / -1;
	}

	.ludev-podcast-spotlight__inner--hero .ludev-podcast-spotlight__side {
		justify-self: end !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		justify-content: flex-end !important;
		width: auto !important;
	}

	.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__transport {
		flex-direction: row;
		width: auto;
	}

	.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__remaining {
		display: none !important;
	}

	.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__bar {
		display: none !important;
	}
}

.ludev-podcast-spotlight__cover {
	width: 144px;
	height: 144px;
	flex-shrink: 0;
	border-radius: 14px;
	background: #e8e8ed;
	border: 1px solid var(--ludev-border);
	box-shadow: 0 2px 10px rgba(18, 18, 24, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ludev-podcast-spotlight__cover img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	border-radius: 10px;
}

.ludev-podcast-spotlight__placeholder {
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(135deg, #e4e4ea 0%, #f0f0f3 100%);
}

.ludev-podcast-spotlight__meta {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ludev-muted);
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.ludev-podcast-spotlight__meta--when-idle {
	display: none;
}

.ludev-podcast-spotlight--idle .ludev-podcast-spotlight__meta--when-idle {
	display: block;
}

.ludev-podcast-spotlight--idle .ludev-podcast-spotlight__meta--when-active {
	display: none;
}

/* Etiqueta tipo pastilla bajo la descripción del último episodio (hero); siempre visible al reproducir */
.ludev-podcast-spotlight__meta.ludev-podcast-spotlight__meta--badge {
	display: inline-flex;
	align-items: center;
	margin-top: 0.65rem;
	margin-bottom: 0;
	padding: 0.28rem 0.65rem;
	width: fit-content;
	max-width: 100%;
	border-radius: 999px;
	background: var(--ludev-surface, #f3f3f5);
	border: 1px solid var(--ludev-border, #e6e6eb);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ludev-muted, #6e6e78);
	text-transform: uppercase;
	line-height: 1.2;
}

.ludev-podcast-spotlight__title {
	font-size: clamp(1.35rem, 3.2vw, 2rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--ludev-text);
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__title {
	font-size: clamp(1.25rem, 2.8vw, 1.75rem);
	margin-top: 0;
	margin-bottom: 0.35rem;
}

.ludev-podcast-spotlight__excerpt {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #4a4a52;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__excerpt {
	-webkit-line-clamp: 5;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--ludev-muted);
}

.ludev-podcast-spotlight__meta-row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
	margin-top: 0.65rem;
}

.ludev-podcast-spotlight__meta-row .ludev-podcast-spotlight__meta--badge {
	margin-top: 0;
}

.ludev-podcast-spotlight__meta--details-link {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ludev-podcast-spotlight__meta--details-link:hover,
.ludev-podcast-spotlight__meta--details-link:focus-visible {
	color: var(--ludev-text, #12121a);
	border-color: var(--ludev-border, #e6e6eb);
}

.ludev-podcast-spotlight__remaining {
	margin: 0 0 0.4rem;
	font-size: 0.85rem;
	color: var(--ludev-muted);
	text-align: right;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__remaining {
	text-align: center;
	font-size: 0.78rem;
	margin: 0 0 0.05rem;
}

.ludev-podcast-spotlight__remaining strong {
	color: var(--ludev-text);
	font-weight: 700;
}

.ludev-podcast-spotlight--idle .ludev-podcast-spotlight__remaining,
.ludev-podcast-spotlight--idle .ludev-podcast-spotlight__bar {
	display: none;
}

.ludev-podcast-spotlight__bar {
	height: 6px;
	border-radius: 99px;
	background: #dcdce2;
	cursor: pointer;
	margin-bottom: 0.75rem;
}

.ludev-podcast-spotlight__bar-fill {
	height: 100%;
	width: 0%;
	border-radius: 99px;
	background: var(--ludev-row-play);
	transition: width 0.08s linear;
}

.ludev-podcast-spotlight__transport {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.45rem;
}

/* Botones de transporte a la derecha (mismo estilo plano morado que ▶ junto al título) */
.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__side {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.28rem;
	min-width: 0;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__bar {
	margin-bottom: 0.15rem;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__transport {
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.35rem;
	width: auto;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn {
	width: auto;
	min-width: var(--ludev-icon-btn-min);
	height: auto;
	min-height: var(--ludev-icon-btn-min);
	padding: var(--ludev-icon-btn-pad-y) var(--ludev-icon-btn-pad-x);
	border-radius: var(--ludev-icon-btn-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	line-height: 1;
	background: transparent;
	border: 1px solid var(--ludev-icon-btn-border);
	box-shadow: none;
	color: #000;
	box-sizing: border-box;
}

.ludev-podcast-spotlight__btn[data-ludev-spot-play],
.ludev-podcast-spotlight__btn[data-ludev-spot-pause],
.ludev-podcast-spotlight__btn[data-ludev-spot-stop] {
	width: 2.05rem;
	height: 2.05rem;
	min-width: 2.05rem;
	min-height: 2.05rem;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #000 !important;
	color: #000 !important;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-sizing: border-box;
}

.ludev-podcast-spotlight__btn[data-ludev-spot-pause] {
	font-size: 0.78rem;
	line-height: 1;
	letter-spacing: 0;
	padding-left: 0;
	padding-right: 0;
}

.ludev-podcast-spotlight__play-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.28rem solid transparent;
	border-bottom: 0.28rem solid transparent;
	border-left: 0.44rem solid currentColor;
	margin-left: 1px;
}

.ludev-podcast-spotlight__btn[data-ludev-spot-stop] {
	font-size: 0.86rem;
	line-height: 1;
	letter-spacing: 0;
	padding-left: 0;
	padding-right: 0;
}

.ludev-podcast-spotlight__btn[data-ludev-spot-play]:hover,
.ludev-podcast-spotlight__btn[data-ludev-spot-pause]:hover,
.ludev-podcast-spotlight__btn[data-ludev-spot-stop]:hover,
.ludev-podcast-spotlight__btn[data-ludev-spot-play]:focus-visible,
.ludev-podcast-spotlight__btn[data-ludev-spot-pause]:focus-visible,
.ludev-podcast-spotlight__btn[data-ludev-spot-stop]:focus-visible {
	border-color: #000;
	color: #000;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn[data-ludev-spot-pause],
.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn[data-ludev-spot-stop] {
	font-size: 0.95rem;
	letter-spacing: 0.03em;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn:hover,
.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn:focus-visible {
	background: rgba(0, 0, 0, 0.08);
	border-color: #000;
	color: #000;
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn--ghost {
	background: transparent;
	color: var(--ludev-muted);
	border-color: var(--ludev-border);
}

.ludev-podcast-spotlight--hero .ludev-podcast-spotlight__btn--ghost:hover {
	background: rgba(18, 18, 28, 0.06);
	border-color: var(--ludev-border);
	color: var(--ludev-text);
}

.ludev-podcast-spotlight__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 48px;
	height: auto;
	padding: 0.45rem 0.85rem;
	border-radius: 9999px;
	border: 1px solid var(--ludev-border);
	background: #ffffff;
	color: var(--ludev-text);
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	box-sizing: border-box;
}

.ludev-podcast-spotlight__btn:hover {
	background: var(--ludev-surface);
	border-color: #d0d0d8;
}

.ludev-podcast-spotlight__btn[data-ludev-spot-pause],
.ludev-podcast-spotlight__btn[data-ludev-spot-stop] {
	font-size: 1rem;
	letter-spacing: 0.03em;
}

.ludev-podcast-spotlight__btn--ghost {
	background: #fafafa;
}

.ludev-podcast-spotlight__btn--ghost:hover {
	background: #ffffff;
	border-color: var(--ludev-accent);
	color: var(--ludev-accent);
}

.ludev-podcast-spotlight__btn[hidden],
.ludev-player-modal__play[hidden],
.ludev-player-modal__pause[hidden],
.ludev-player-modal__stop[hidden] {
	display: none !important;
}

.ludev-podcast-spotlight audio {
	display: none;
}

.ludev-podcast-episodes__solo {
	margin: 0;
	padding: 0.75rem 0;
	color: var(--ludev-muted);
	font-size: 0.95rem;
}

.ludev-podcast-episodes__more-wrap {
	margin: 0.75rem 0 0;
	padding: 0;
	text-align: center;
}

.ludev-podcast-episodes__more-wrap .ludev-podcast-load-more {
	min-width: auto;
	padding: 0;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #000 !important;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	cursor: pointer;
}

.ludev-podcast-episodes__more-wrap .ludev-podcast-load-more::after {
	content: "";
	width: 0.38rem;
	height: 0.38rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-1px) rotate(45deg);
	animation: ludev-more-chevron 1.1s ease-in-out infinite;
}

.ludev-podcast-episodes__more-wrap .ludev-podcast-load-more:hover,
.ludev-podcast-episodes__more-wrap .ludev-podcast-load-more:focus-visible {
	color: #000 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

@keyframes ludev-more-chevron {
	0%,
	100% {
		transform: translateY(-1px) rotate(45deg);
		opacity: 0.75;
	}
	50% {
		transform: translateY(2px) rotate(45deg);
		opacity: 1;
	}
}

.ludev-podcast-hero__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.ludev-podcast-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ludev-podcast-btn--primary {
	background: var(--ludev-accent);
	color: #fff;
	border-color: var(--ludev-accent);
}

.ludev-podcast-btn--primary:hover {
	background: var(--ludev-accent-hover);
	border-color: var(--ludev-accent-hover);
	color: #fff;
}

.ludev-podcast-btn--ghost {
	background: var(--ludev-bg);
	color: var(--ludev-text);
	border-color: var(--ludev-border);
}

.ludev-podcast-btn--ghost:hover {
	background: var(--ludev-surface);
}

.ludev-podcast-btn__play-icon {
	font-size: 0.75rem;
	opacity: 0.95;
}

.ludev-podcast-episodes {
	margin-top: 0.25rem;
}

.ludev-podcast-episodes__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ludev-podcast-episodes__sort {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.76rem;
	font-weight: 600;
}

.ludev-podcast-episodes__sort-label {
	font-size: inherit;
	font-weight: inherit;
	color: var(--ludev-muted);
}

.ludev-podcast-episodes__sort-select {
	border: 1px solid var(--ludev-border);
	background: var(--ludev-bg);
	color: var(--ludev-text);
	border-radius: 999px;
	padding: 0.35rem 0.8rem;
	font-size: 13px !important;
	font-weight: inherit;
	line-height: 1.2;
}

.ludev-podcast-episodes__title {
	display: inline-flex;
	align-items: baseline;
	gap: 0.3rem;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0;
	color: var(--ludev-text);
}

.ludev-podcast-episodes__title::after {
	content: "›";
	font-weight: 500;
	opacity: 0.35;
	font-size: 1.15em;
	line-height: 0;
	transform: translateY(0.05em);
}

/* Lista de episodios — sin fondo de tarjeta */
.ludev-podcast-episodes__list {
	list-style: none;
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	border: none;
}

.ludev-podcast-episodes__list li {
	list-style: none !important;
}

.ludev-podcast-episodes__list > li {
	margin: 0;
	border-bottom: 1px solid var(--ludev-border);
}

.ludev-podcast-episodes__list > li:last-child {
	border-bottom: none;
}

.ludev-episode-row {
	--ludev-episode-thumb: 92px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 1.05rem 0;
	background: transparent;
	border: none;
	border-radius: 0;
	text-align: left;
	color: var(--ludev-text);
	font: inherit;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 720px) {
	.ludev-episode-row {
		--ludev-episode-thumb: 72px;
	}

	/* En móvil ocultamos miniaturas para evitar recortes en listas de episodios. */
	.ludev-episode-row__thumb {
		display: none !important;
	}

	.ludev-episode-row__meta-row {
		gap: 0.5rem;
	}
}

.ludev-episode-row__open {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font: inherit;
	color: inherit;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none !important;
}

.ludev-episode-row__open * {
	text-decoration: none !important;
}

.ludev-episode-row__meta-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0.75rem;
	width: 100%;
	min-width: 0;
}

.ludev-episode-row__meta-side {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-shrink: 0;
	min-width: min-content;
	text-align: center;
	align-self: stretch;
}

.ludev-episode-row__meta-side .ludev-episode-row__dur {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 0.7rem;
	line-height: 1.25;
}

.ludev-episode-row__meta-side .ludev-episode-row__menu {
	white-space: nowrap;
	text-align: center;
}

.ludev-episode-row__thumb {
	flex-shrink: 0;
	align-self: stretch;
	width: var(--ludev-episode-thumb);
	min-width: var(--ludev-episode-thumb);
	min-height: var(--ludev-episode-thumb);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--ludev-border);
	background: var(--ludev-surface, #f3f3f5);
	box-shadow: 0 1px 4px rgba(18, 18, 28, 0.06);
	display: flex;
	flex-direction: column;
}

.ludev-episode-row__thumb img {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ludev-episode-row__thumb-fallback {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	background: linear-gradient(135deg, #e8e8ec 0%, #f0f0f3 100%);
}

.ludev-episode-row__open-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	text-align: left;
}

.ludev-episode-row__open:focus {
	outline: none;
}

.ludev-episode-row__open:focus-visible {
	outline: 2px solid rgba(39, 48, 80, 0.45);
	outline-offset: 3px;
	border-radius: 6px;
}

/* Episodio en reproducción (p. ej. uno que no es el último): bloque destacado claro, tipo referencia */
.ludev-episode-row.is-active {
	background: linear-gradient(145deg, #eceeff 0%, #f3f0ff 55%, #faf8ff 100%);
	border: 1px solid rgba(39, 48, 80, 0.2);
	border-radius: 12px;
	padding: 0.95rem 1rem 0.85rem;
	margin: 0.4rem 0;
	box-shadow: 0 6px 24px rgba(39, 48, 80, 0.1);
}

.ludev-episode-row.is-active:hover,
.ludev-episode-row.is-active:focus-within {
	box-shadow: 0 8px 28px rgba(39, 48, 80, 0.12);
}

.ludev-episode-row.is-active .ludev-episode-row__excerpt,
.ludev-episode-row.is-active .ludev-episode-row__menu {
	color: var(--ludev-muted);
}

.ludev-episode-row.is-active .ludev-episode-row__title {
	color: var(--ludev-text);
}

.ludev-episode-row__title-line {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
	min-width: 0;
	text-align: left;
}

.ludev-episode-row__play-hint {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	min-width: 1.8rem;
	max-width: 1.8rem;
	margin-right: 0.3rem;
	padding: 0;
	border: 1px solid #000;
	overflow: hidden;
	font-size: 0.68rem;
	line-height: 1;
	color: #000;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: 1;
	transform: none;
	transition:
		opacity 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease;
	pointer-events: none;
}

.ludev-episode-row__play-hint::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.26rem solid transparent;
	border-bottom: 0.26rem solid transparent;
	border-left: 0.4rem solid currentColor;
	margin-left: 1px;
}

.ludev-episode-hidden {
	display: none !important;
}

.ludev-episode-row.is-active .ludev-episode-row__play-hint {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.ludev-episode-row__play-hint {
		transition: none;
	}
}

.ludev-episode-row__title {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	font-weight: 800;
	font-size: 0.95rem;
	line-height: 1.35;
	margin: 0;
	padding: 0;
	color: var(--ludev-text);
	text-align: left;
}

.ludev-episode-row__excerpt {
	display: -webkit-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	font-size: 0.82rem;
	font-weight: 400;
	color: var(--ludev-muted);
	line-height: 1.5;
	text-align: left;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ludev-episode-row__dur {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #8a8a96;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1.2;
}

/* Reproductor: solo modal flotante; esta barra inline no se usa (DOM conservado por compatibilidad) */
.ludev-episode-row__active-row {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	flex-wrap: wrap;
	margin-top: 0.65rem;
	padding-top: 0.75rem;
	padding-left: 0;
	border-top: 1px solid rgba(39, 48, 80, 0.18);
}

.ludev-episode-row__active-left {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.ludev-episode-row__eq {
	display: inline-flex;
	align-items: flex-end;
	gap: 3px;
	height: 14px;
	padding-bottom: 1px;
}

.ludev-episode-row__eq i {
	display: block;
	width: 3px;
	height: 5px;
	border-radius: 1px;
	background: var(--ludev-row-play);
	opacity: 0.45;
}

.ludev-episode-row.is-playing .ludev-episode-row__eq i {
	opacity: 1;
	animation: ludev-eq-bar 0.75s ease-in-out infinite alternate;
}

.ludev-episode-row.is-playing .ludev-episode-row__eq i:nth-child(2) {
	animation-delay: 0.12s;
}

.ludev-episode-row.is-playing .ludev-episode-row__eq i:nth-child(3) {
	animation-delay: 0.24s;
}

@keyframes ludev-eq-bar {
	from {
		height: 4px;
	}
	to {
		height: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ludev-episode-row.is-playing .ludev-episode-row__eq i {
		animation: none;
		height: 6px;
	}
}

.ludev-episode-row__row-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: var(--ludev-icon-btn-min);
	height: auto;
	min-height: var(--ludev-icon-btn-min);
	padding: var(--ludev-icon-btn-pad-y) var(--ludev-icon-btn-pad-x);
	border-radius: var(--ludev-icon-btn-radius);
	border: 1px solid #000;
	background: transparent;
	color: #000;
	font-size: 0.75rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
	box-shadow: none;
	box-sizing: border-box;
}

.ludev-episode-row__row-btn[data-ludev-row-pause] {
	font-size: 1.05rem;
	letter-spacing: 0.04em;
}

.ludev-episode-row__row-btn:hover,
.ludev-episode-row__row-btn:focus-visible {
	background: rgba(0, 0, 0, 0.08);
	border-color: #000;
	color: #000;
}

.ludev-episode-row__active-right {
	flex: 1;
	min-width: min(100%, 200px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.35rem;
}

.ludev-episode-row__remain {
	margin: 0;
	font-size: 0.78rem;
	color: var(--ludev-muted);
	text-align: right;
}

.ludev-episode-row__remain strong {
	color: var(--ludev-text);
	font-weight: 700;
}

.ludev-episode-row__row-bar {
	width: 100%;
	max-width: 220px;
	height: 5px;
	border-radius: 99px;
	background: rgba(18, 18, 28, 0.1);
	cursor: pointer;
}

.ludev-episode-row__row-bar-fill {
	height: 100%;
	width: 0%;
	border-radius: 99px;
	background: var(--ludev-row-play);
	transition: width 0.1s linear;
}

@media (max-width: 560px) {
	.ludev-episode-row__active-row {
		flex-direction: column;
		align-items: stretch;
	}

	.ludev-episode-row__active-left {
		justify-content: flex-start;
	}

	.ludev-episode-row__active-right {
		align-items: stretch;
		max-width: none;
	}

	.ludev-episode-row__remain {
		text-align: left;
	}

	.ludev-episode-row__row-bar {
		max-width: none;
	}
}

.ludev-episode-row__menu {
	color: var(--ludev-muted);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
}

.ludev-episode-row__details {
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

/* Modal flotante inferior derecha (se mueve a body por JS; z-index alto para menús del tema) */
.ludev-player-modal {
	--ludev-bg: #fafafa;
	--ludev-surface: #f3f3f5;
	--ludev-border: #e6e6eb;
	--ludev-text: #141418;
	--ludev-muted: #6e6e78;
	--ludev-accent: #4a4a52;
	--ludev-accent-hover: #35353c;
	--ludev-play: #273050;
	--ludev-icon-btn-border: var(--ludev-play);
	--ludev-icon-btn-radius: 9999px;
	--ludev-icon-btn-pad-y: 0.4rem;
	--ludev-icon-btn-pad-x: 0.55rem;
	--ludev-icon-btn-min: 2.25rem;
	--ludev-radius: 12px;
	--ludev-shadow: 0 8px 32px rgba(18, 18, 24, 0.08);
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	left: auto;
	top: auto;
	z-index: 2147483000;
	isolation: isolate;
	max-width: min(380px, calc(100vw - 2rem));
}

.ludev-player-modal[hidden] {
	display: none !important;
}

.ludev-player-modal__inner {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 0.85rem;
	padding: 1rem 2.25rem 1rem 1rem;
	background: var(--ludev-bg);
	border: 1px solid var(--ludev-border);
	border-radius: var(--ludev-radius);
	box-shadow: var(--ludev-shadow);
	align-items: flex-start;
	transform: translateZ(0);
}

.ludev-player-modal__close {
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--ludev-muted);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--ludev-icon-btn-radius);
}

.ludev-player-modal__close:hover {
	background: var(--ludev-surface);
	color: var(--ludev-text);
}

.ludev-player-modal__media {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.ludev-player-modal__media.is-no-cover::before {
	content: "";
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 8px;
	border: 1px solid var(--ludev-border);
	background: linear-gradient(135deg, #e8e8f0 0%, #f0f0f5 100%);
}

.ludev-player-modal__media img {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	object-fit: contain;
	border: 1px solid var(--ludev-border);
	background: var(--ludev-surface);
}

.ludev-player-modal__media img[hidden] {
	display: none;
}

.ludev-player-modal__info {
	flex: 1;
	min-width: 0;
}

.ludev-player-modal__title {
	margin: 0 0 0.4rem;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ludev-player-modal__info audio {
	display: none;
}

.ludev-player-modal__transport {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
}

.ludev-player-modal__bar-wrap {
	flex: 1 1 auto;
	min-width: 0;
	margin-bottom: 0;
	align-self: center;
}

.ludev-player-modal__bar {
	height: 6px;
	border-radius: 99px;
	background: var(--ludev-border);
	cursor: pointer;
	position: relative;
}

.ludev-player-modal__bar:focus-visible {
	outline: 2px solid var(--ludev-play);
	outline-offset: 2px;
}

.ludev-player-modal__bar-fill {
	height: 100%;
	width: 0%;
	border-radius: 99px;
	background: #000;
	pointer-events: none;
	transition: width 0.08s linear;
}

.ludev-player-modal__times {
	font-size: 0.7rem;
	color: var(--ludev-muted);
	font-variant-numeric: tabular-nums;
	margin-bottom: 0;
	flex: 0 0 auto;
	white-space: nowrap;
	line-height: 1.2;
	align-self: center;
}

.ludev-player-modal__controls {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex: 0 0 auto;
	align-self: center;
}

.ludev-player-modal__play,
.ludev-player-modal__pause,
.ludev-player-modal__stop {
	width: auto;
	min-width: var(--ludev-icon-btn-min);
	height: auto;
	min-height: var(--ludev-icon-btn-min);
	padding: var(--ludev-icon-btn-pad-y) var(--ludev-icon-btn-pad-x);
	border-radius: var(--ludev-icon-btn-radius);
	border: 1px solid var(--ludev-icon-btn-border);
	background: transparent;
	color: var(--ludev-play);
	font-size: 0.75rem;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	box-shadow: none;
	box-sizing: border-box;
}

.ludev-player-modal__play,
.ludev-player-modal__pause,
.ludev-player-modal__stop {
	width: 2rem;
	height: 2rem;
	min-width: 2rem;
	min-height: 2rem;
	padding: 0;
	border-radius: 50%;
	border-color: #000;
	color: #000;
	background: transparent;
}

.ludev-player-modal__play:hover,
.ludev-player-modal__pause:hover,
.ludev-player-modal__stop:hover,
.ludev-player-modal__play:focus-visible,
.ludev-player-modal__pause:focus-visible,
.ludev-player-modal__stop:focus-visible {
	border-color: #000;
	color: #000;
}

.ludev-player-modal__pause,
.ludev-player-modal__stop {
	font-size: 1.05rem;
	letter-spacing: 0.03em;
}

.ludev-player-modal__play-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.34rem solid transparent;
	border-bottom: 0.34rem solid transparent;
	border-left: 0.52rem solid currentColor;
	margin-left: 1px;
}

.ludev-player-modal__play:hover,
.ludev-player-modal__pause:hover,
.ludev-player-modal__stop:hover {
	background: rgba(0, 0, 0, 0.08);
	border-color: #000;
	color: #000;
}

.ludev-player-modal__play:focus-visible,
.ludev-player-modal__pause:focus-visible,
.ludev-player-modal__stop:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
	border-color: #000;
	color: #000;
}

/* Índice: todos los podcasts */
.ludev-podcast-back {
	max-width: none;
	margin: 0 auto 1rem;
	padding: 0 1rem;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.ludev-podcast-back__link {
	color: var(--ludev-accent, #4a4a52);
	font-weight: 600;
	text-decoration: none;
}

.ludev-podcast-back__link:hover {
	text-decoration: underline;
}

.ludev-podcast-index {
	--ludev-bg: #fafafa;
	--ludev-surface: #f3f3f5;
	--ludev-border: #e6e6eb;
	--ludev-text: #141418;
	--ludev-muted: #6e6e78;
	--ludev-accent: #4a4a52;
	--ludev-accent-hover: #35353c;
	--ludev-radius: 12px;
	--ludev-shadow: 0 6px 28px rgba(18, 18, 24, 0.06);
	color: var(--ludev-text);
	color-scheme: light;
	background-color: #fafafa;
	max-width: none;
	margin: 0 auto;
	padding: 2rem 1.25rem 3rem;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	position: relative;
	z-index: 0;
	isolation: isolate;
}

.ludev-podcast-index::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 100vw;
	margin-left: -50vw;
	background: #fafafa;
	z-index: -1;
	pointer-events: none;
}

.ludev-podcast-index__title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.ludev-podcast-index__intro {
	margin: 0 0 1.5rem;
	color: var(--ludev-muted);
	font-size: 1rem;
}

.ludev-podcast-index__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

.ludev-podcast-index__item {
	margin: 0;
}

.ludev-podcast-series-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--ludev-border);
}

.ludev-podcast-series-list__item {
	border-bottom: 1px solid var(--ludev-border);
}

.ludev-podcast-series-row {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 0.9rem 1rem;
	align-items: center;
	padding: 0.85rem 0.15rem;
	text-decoration: none;
	color: inherit;
	background: transparent;
	transition: background 0.12s;
}

.ludev-podcast-series-row:hover {
	background: var(--ludev-surface);
}

.ludev-podcast-series-row__cover img,
.ludev-podcast-series-row__placeholder {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	object-fit: cover;
	border: 1px solid var(--ludev-border);
	display: block;
}

.ludev-podcast-series-row__placeholder {
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.ludev-podcast-series-row__main {
	min-width: 0;
}

.ludev-podcast-series-row__meta {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--ludev-muted);
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.ludev-podcast-series-row__title {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.2rem;
}

.ludev-podcast-series-row__latest {
	display: block;
	font-size: 0.86rem;
	color: #2d2d36;
	line-height: 1.35;
}

.ludev-podcast-series-row__excerpt {
	display: block;
	font-size: 0.82rem;
	color: var(--ludev-muted);
	line-height: 1.4;
	margin-top: 0.15rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ludev-podcast-series-row__right {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.25rem;
}

.ludev-podcast-series-row__count {
	font-size: 0.8rem;
	color: var(--ludev-muted);
	white-space: nowrap;
}

.ludev-podcast-series-row__menu {
	font-size: 0.83rem;
	font-weight: 600;
	color: var(--ludev-muted);
	text-decoration: underline;
}

.ludev-podcast-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ludev-bg);
	border: 1px solid var(--ludev-border);
	border-radius: var(--ludev-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 2px 8px rgba(18, 18, 24, 0.06);
	transition: box-shadow 0.15s, border-color 0.15s, transform 0.12s;
}

.ludev-podcast-card:hover {
	border-color: #d0d0d8;
	box-shadow: var(--ludev-shadow);
	transform: translateY(-2px);
}

.ludev-podcast-card__cover {
	aspect-ratio: 1;
	background: var(--ludev-surface);
}

.ludev-podcast-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ludev-podcast-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 160px;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.ludev-podcast-card__body {
	padding: 1rem 1.1rem 1.15rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.ludev-podcast-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.25;
}

.ludev-podcast-card__excerpt {
	margin: 0;
	font-size: 0.88rem;
	color: var(--ludev-muted);
	line-height: 1.45;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ludev-podcast-card__meta {
	margin: 0.25rem 0 0;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ludev-accent);
}

/* Top episodios (más reproducidos) — rejilla al pie de la landing */
.ludev-podcast-top {
	margin-top: 2.75rem;
	padding-top: 2rem;
	border-top: none;
}

.ludev-podcast-top__title {
	display: inline-flex;
	align-items: baseline;
	gap: 0.3rem;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 0.35rem;
	color: var(--ludev-text);
}

.ludev-podcast-top__title::after {
	content: "›";
	font-weight: 500;
	opacity: 0.35;
	font-size: 1.15em;
	line-height: 0;
	transform: translateY(0.05em);
}

.ludev-podcast-top__subtitle {
	margin: 0 0 1.25rem;
	font-size: 0.9rem;
	color: var(--ludev-muted);
	line-height: 1.45;
}

.ludev-podcast-top__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.25rem;
	justify-items: stretch;
	align-items: start;
}

@media (max-width: 640px) {
	.ludev-podcast-top__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.ludev-podcast-top__grid .ludev-episode-row {
		--ludev-episode-thumb: 96px;
	}
}

.ludev-podcast-top__grid > li {
	margin: 0;
	width: 100%;
	max-width: 100%;
	justify-self: start;
	list-style: none !important;
}

.ludev-podcast-top__grid > li::marker {
	content: "" !important;
}

.ludev-podcast-top__grid > li::before {
	content: none !important;
}

.ludev-podcast-top__grid .ludev-episode-row {
	--ludev-episode-thumb: 112px;
	width: 100%;
	max-width: 100%;
	padding: 0.85rem 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.ludev-podcast-top__grid .ludev-episode-row__meta-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.85rem;
	width: 100%;
}

.ludev-podcast-top__grid .ludev-episode-row__thumb {
	border-radius: 10px;
	border: none;
	box-shadow: 0 1px 4px rgba(18, 18, 28, 0.08);
}

.ludev-podcast-top__grid .ludev-episode-row__thumb img {
	object-fit: cover;
	object-position: center;
	image-rendering: auto;
}

.ludev-episode-row--top-chart .ludev-episode-row__open-body.ludev-episode-row__open-body--top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.12rem;
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
}

.ludev-episode-row--top-chart .ludev-episode-row__title-line {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	align-self: stretch;
	line-height: 1.2;
}

.ludev-episode-row--top-chart .ludev-episode-row__title {
	font-size: 1.12rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

/* En top-chart, el icono play debe verse igual que en la lista de episodios. */
.ludev-episode-row--top-chart .ludev-episode-row__play-hint {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	min-width: 1.8rem;
	max-width: 1.8rem;
	margin-right: 0.3rem;
	padding: 0;
	border: 1px solid #000;
	overflow: hidden;
	font-size: 0.68rem;
	line-height: 1;
	color: #000;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: 1;
	transform: none;
	pointer-events: none;
}

.ludev-episode-row--top-chart .ludev-episode-row__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	padding: 0;
	line-height: 1.35;
}

@media (max-width: 720px) {
	/* Forzamos icono play visible en Top episodios en móvil. */
	.ludev-podcast-top__grid .ludev-episode-row__play-hint {
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

/* Shortcode: publicaciones recientes (6 últimos) */
.ludev-podcast-recent__section {
	max-width: 760px;
}

.ludev-podcast-root.ludev-podcast-recent::before {
	display: none;
}

.ludev-podcast-recent__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ludev-podcast-recent__li {
	list-style: none !important;
	border-bottom: 1px solid var(--ludev-border);
}

.ludev-podcast-recent__li:last-child {
	border-bottom: none;
}

.ludev-podcast-recent__item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.ludev-podcast-recent__thumb {
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--ludev-surface);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ludev-podcast-recent__thumb-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.ludev-podcast-recent__thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8e8ec 0%, #f0f0f3 100%);
}

.ludev-podcast-recent__body {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
}

.ludev-podcast-recent__title-row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
}

.ludev-podcast-recent__play {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid #000;
	border-radius: 50%;
	color: #000;
}

.ludev-podcast-recent__play-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.24rem solid transparent;
	border-bottom: 0.24rem solid transparent;
	border-left: 0.36rem solid currentColor;
	margin-left: 1px;
}

.ludev-podcast-recent__title {
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--ludev-text);
}

@media (max-width: 640px) {
	.ludev-podcast-recent__item {
		gap: 0.5rem;
	}
}
