.podcast-episodes-list {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.podcast-episode-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.podcast-episode-art {
    flex: 0 0 150px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.podcast-episode-art img {
    display: block;
    width: 100%;
    height: auto;
}

.podcast-artwork-placeholder {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    background: #f4f4f4;
    color: #666;
    font-size: 14px;
    border-radius: 12px;
}

.podcast-episode-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.podcast-episode-title {
    margin: 0;
    font-size: 1.1rem;
}

.podcast-episode-title a {
    text-decoration: none;
    color: #111;
}

.podcast-episode-title a:hover {
    text-decoration: underline;
}

.podcast-episode-summary {
    margin: 0;
    color: #444;
}

.podcast-episode-player audio {
    width: 100%;
}

.podcast-episode-links {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
}

.podcast-episode-links a {
    color: #0b74ff;
    text-decoration: none;
}

.podcast-episode-links a:hover {
    text-decoration: underline;
}

.podcast-episode-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.podcast-episode-single-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.podcast-episode-single-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.podcast-episode-single-art img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.podcast-episode-single-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.6rem;
}

.podcast-episode-content {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.podcast-transcript {
    padding: 1rem;
    border-radius: 10px;
    background: #f7f8fb;
}

.podcast-transcript h2 {
    margin-top: 0;
}

@media (max-width: 720px) {
    .podcast-episode-card {
        flex-direction: column;
    }

    .podcast-episode-art {
        flex: 0 0 auto;
        width: 180px;
    }

    .podcast-episode-single-header {
        grid-template-columns: 1fr;
    }

    .podcast-episode-single-art {
        max-width: 240px;
    }
}
