.page-template-page-podcasts .podcastsIntro.intro.innerIntro {
    background-color: #a7d4e2;
    font-size: 18px;
}

.podcasts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.podcasts__hero {
    background-color: #bfdae2;
    margin-bottom: 50px;
}

.podcasts__hero__inner {
    display: grid;
    grid-template-columns: 9fr 8fr;
    gap: 3rem;
    align-items: center;
}

.podcast__card {
    display: flex;
    gap: 2rem;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background: #e5e5e5;
    overflow: hidden;
}

.podcast__card__content {
    padding: 2rem;
}

.podcast__card__series {
    font-size: 14px;
}

.podcast__card__resources {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.podcast__card__resources h4 {
   margin: 0;
}

.podcast__card__resources__buttons {
    display: flex;
    gap: 1rem;
}


.podcast__card__content .button {
    margin-bottom: 0;
}

.podcast__card__image {
   height: 100%;
}

.podcast__card__image--wrapper {
    flex-shrink: 0;
    width: 30%;
    display: flex;
    align-items: stretch;
}

.podcast__card__image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.button-podcast {
    background-color: #00b9f2;
    color: #003a3a;
    border-color: #003a3a;
}

.button-podcast:hover {
    background-color: #003a3a;
    color: #00b9f2;
    border-color: #00b9f2;
}