.sectionPodcast {
    background: linear-gradient(181.07deg, #d9eff6 -5.43%, rgba(255, 255, 255, 0.15) 60.79%);
    padding: 60px 0;
}

.sectionPodcast h1 {
    max-width: 900px;
    list-style: none;
    line-height: 130%;
}

.sectionPodcast h1 span {
    font-weight: 800;
}

.sectionPodcast .container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.sectionPodcast .podcastLinks {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    font-size: 18px;
}

.sectionPodcast .episodesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sectionPodcast .podcastEpisode h2 {
    margin-bottom: 0px;
    font-size: 32px;
}

.sectionPodcast .podcastEpisode {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #e5f6fb, #b6e1ee);
    border-radius: 20px;
    text-decoration: none;
    padding: 30px;
    gap: 30px;
    align-items: center;
    justify-items: center;
    width: 100%;
    justify-content: space-between;

}
.sectionPodcast .pe_t2 {
    background: linear-gradient(135deg, #f1f4fb, #c3d3f9);
}
.sectionPodcast .pe_t3 {
    background: linear-gradient(135deg, #fdf4f8, #ffebf5);
}

.sectionPodcast .podcastEpisode h3 {
    font-size: 24px;
}


@media (min-width: 991px) and (max-width: 1400px) {}

@media (max-width: 990px) {
    .sectionPodcast .podcastLinks {
        flex-direction: column;
    }

    .sectionPodcast .episodesGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .sectionPodcast .podcastLinks {
        margin-bottom: 30px;
    }
}