/* Global Card */
.featured-podcast {
    background: #fff;
    border-radius: 1rem;
}

/* Large Card */
.featured-podcast.card-large {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
	height: 100%;
}

/* Inline Card */
.featured-podcast.card-inline p {
    line-height: 1.4em!important;
}

@media (min-width: 481px) {
    .featured-podcast.card-inline {
        padding: 1rem 1.5rem;
        display: grid;
        grid-template-columns: auto 210px;
        grid-gap: 0.5rem 4rem;
        justify-content: center;
    }
    .featured-podcast.card-inline p {
        grid-column: 1;
        grid-row: span 1;
    }

    .featured-podcast.card-inline :not(p) {
        grid-row: span 2;
        margin-block: auto;
    }
}

@media (max-width: 480px) {
    .featured-podcast.card-inline {
        padding: 1rem 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    	height: 100%;
    }
}

/* Card Elements */
.featured-podcast .episode-name {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    color: var(--surface);
	flex-grow: 1;
}

.featured-podcast .episode-name mark.episode-highlight {
    background: none;
    color: var(--accent);
    font-weight: 800;
}

.featured-podcast .episode-number {
    color: var(--surface-600);
    font-style: italic;
    font-size: var(--fs-text-xs);
    text-transform: uppercase;
}

/*** Player ***/
.featured-podcast .plyr {
    min-width: 210px;
}

/* Player Controls */
.featured-podcast .plyr__controls.plyr__controls {
    background: var(--surface);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: var(--radius-pill);
    color: #fff;
	transition: background .3s ease-in-out;
	position: relative;
    overflow: hidden;
}

.featured-podcast .plyr__controls.plyr__controls:has(button:is(:hover, :focus) ) {
	background: var(--surface-700);
}

.featured-podcast .plyr__controls.plyr__controls:has(button:is(:focus-visible) ) {
	outline: 2px dashed var(--surface);
    outline-offset: 2px;
}

.featured-podcast .plyr__controls .plyr__control {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    margin: 0px;
    padding: 0px;
}

.featured-podcast .plyr__controls .plyr__control:is(:hover, :focus, :focus-visible) {
    background: unset;
}

.featured-podcast .plyr__controls .plyr__control:focus-visible {
    outline: none;
}

/* Player Progress Layer */
.plyr__controls:before {
    content: '';
    position: absolute;
    background: var(--accent-dark);
    width: var(--progress, 0%);
    height: 100%;
    left: 0;
    top: 0;
}

.plyr__controls > * {
    z-index: 1;
}

/* Player icon */
.featured-podcast .plyr__controls .plyr__control svg {
    width: 40px;
    height: 40px;
    padding: 13px;
    background: var(--surface-0);
    fill: var(--surface);
    border-radius: var(--radius-circle);
}

/* Player label */
.featured-podcast .plyr__controls .plyr__control .plyr__sr-only {
    clip: unset;
    border: 0 !important;
    height: unset !important;
    overflow: unset;
    padding: 0 !important;
    position: unset !important;
    width: unset !important;
    font-size: var(--fs-text-xs);
    text-transform: uppercase;
    font-weight: 600;
	line-height: 1;
}

/* Player time */
.featured-podcast .plyr--audio .plyr__time {
    font-weight: 600;
    font-style: italic;
    color: var(--surface-400);
	line-height: 1;
	pointer-events: none;
}

.featured-podcast .plyr--audio .plyr__time:before {
    content: '(';
}

.featured-podcast .plyr--audio .plyr__time:after {
    content: ')';
}

.featured-podcast .plyr--audio .high-progress .plyr__time {
    color: var(--surface-0);
}