.podcast-episode {
    margin-top: 0;
}

.podcast-episode__header {
    background: #15191d;
    color: #fff;
    overflow: hidden;
    padding: clamp(60px, 8vw, 105px) 0 clamp(50px, 7vw, 85px);
    position: relative;
}

.podcast-episode__header::after {
    background: var(--podcast-accent);
    bottom: 0;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
}

.podcast-episode__hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(45px, 7vw, 100px);
    grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
    position: relative;
    z-index: 1;
}

.podcast-episode__heading {
    min-width: 0;
}

.podcast-episode__identity .podcast__identity-ring {
    height: min(24vw, 290px);
    min-height: 230px;
    min-width: 230px;
    width: min(24vw, 290px);
}

.podcast-episode__identity .podcast__identity-ring::after {
    box-shadow: 0 0 55px rgba(0, 0, 0, .28);
}

.podcast-episode__header h1 {
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 5.3vw, 66px);
    letter-spacing: -.045em;
    line-height: 1.03;
    margin: 18px 0 24px;
    max-width: 1040px;
}

.podcast-episode__header .podcast__meta {
    margin-top: 0;
}

.podcast-episode__main {
    background: #f4f6f7;
    padding: clamp(42px, 6vw, 75px) 0 clamp(70px, 9vw, 120px);
}

.podcast-episode__video {
    aspect-ratio: 16 / 9;
    background: #090b0d;
    border-radius: 5px;
    box-shadow: 0 24px 65px rgba(17, 21, 25, .18);
    overflow: hidden;
    position: relative;
}

.podcast-episode__video iframe,
.podcast-episode__video img {
    border: 0;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.podcast-episode__listen {
    align-items: center;
    background: #fff;
    border: 1px solid #e1e5e7;
    border-top: 4px solid var(--podcast-accent);
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(175px, .55fr) minmax(0, 1.45fr);
    padding: 27px 30px 30px;
}

.podcast-episode__listen > div:first-child > span {
    color: var(--podcast-accent);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.podcast-episode__listen > div:first-child > strong {
    color: #15191d;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
}

.podcast-episode__actions {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.podcast-episode__action {
    align-items: center;
    border-radius: 3px;
    color: #fff;
    display: flex;
    gap: 12px;
    min-height: 58px;
    padding: 11px 15px;
    transition: filter .2s ease, transform .2s ease;
}

.podcast-episode__action:hover,
.podcast-episode__action:focus {
    color: #fff;
    filter: brightness(.92);
    transform: translateY(-2px);
}

.podcast-episode__action > i {
    font-size: 24px;
}

.podcast-episode__action span {
    font-size: 10px;
    line-height: 1.2;
}

.podcast-episode__action strong {
    display: block;
    font-size: 12px;
}

.podcast-episode__action--spotify { background: #168c46; }
.podcast-episode__action--apple { background: #2b2b30; }
.podcast-episode__action--youtube { background: #d92525; }

.podcast-episode__content-layout {
    margin-top: clamp(45px, 6vw, 70px);
}

.podcast-episode__description {
    margin: 0 auto;
    max-width: 800px;
    min-width: 0;
}

.podcast-episode__copy {
    color: #505960;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.78;
    margin-top: 18px;
}

.podcast-episode__copy p:last-child {
    margin-bottom: 0;
}

.podcast-episode__related {
    border-top: 1px solid #dce1e4;
    margin-top: clamp(55px, 8vw, 90px);
    padding-top: clamp(38px, 5vw, 55px);
}

.podcast-episode__related-heading {
    align-items: flex-end;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 26px;
}

.podcast-episode__related-heading > div > span {
    color: var(--podcast-accent);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.podcast-episode__related-heading h2 {
    color: #111519;
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1;
    margin: 8px 0 0;
}

.podcast-episode__related-list {
    display: grid;
    gap: clamp(18px, 2.5vw, 28px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.podcast-episode__related-all {
    border-bottom: 2px solid var(--podcast-accent);
    color: #111519;
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    padding-bottom: 5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.podcast-episode__related-all i {
    color: var(--podcast-accent);
    margin-left: 6px;
}

@media screen and (max-width: 900px) {
    .podcast-episode__hero-grid {
        gap: 35px;
        grid-template-columns: minmax(0, 1fr) 230px;
    }

    .podcast-episode__identity .podcast__identity-ring {
        height: 220px;
        min-height: 220px;
        min-width: 220px;
        width: 220px;
    }

    .podcast-episode__listen {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 760px) {
    .podcast-episode__hero-grid {
        display: block;
    }

    .podcast-episode__related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 680px) {
    .podcast-episode__header {
        padding-top: 48px;
    }

    .podcast-episode__actions {
        grid-template-columns: 1fr;
    }

    .podcast-episode__listen {
        padding: 23px 20px 24px;
    }

    .podcast-episode__related-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .podcast-episode__related-list {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: reduce) {
    .podcast-episode__action {
        transition: none;
    }
}
