.podcasts-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.podcast-card {
    width: 100%;
    max-width: calc(50% - 20px/2);
}

.podcast iframe {
    width: 100%;
    max-height: 150px;
}

.podcast-title a {
    color: var(--color-black);
}

.podcast-title a:hover {
    opacity: 0.65;
}

@media screen and (max-width: 850px) {
    .podcasts-wrapper {
        gap: 30px;
    }

    .podcast-card {
        max-width: 100%;
    }

    .section-podcasts .see-all-link-wrapper {
        text-align: right;
    }
}