.podcast-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.podcast-layout-autofit {
    flex-direction: row;
    flex-wrap: wrap;
}

.podcast-item .title {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.podcast-item .title h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
}

.podcast-item .title h3 small {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #fca311;
    display: block;
    margin: 0 0 0.4rem;
}

.captivate-player-wrap iframe {
    width: 100%;
    min-height: 180px;
    border: 0;
    border-radius: 2px;
}

.podcast-layout-autofit .podcast-item {
    flex:1 1 100%;
    min-width: 280px;
    display:flex;
    flex-flow: column;
    justify-content: space-between;
}

@media(min-width:768px){
    .podcast-layout-autofit .podcast-item {
        flex: 0 1 calc( 50% - 15px );
    }
}

@media(min-width:980px){
    .podcast-layout-autofit .podcast-item {
        flex: 1 1 calc( 33.33% - 30px );
    }
}

@media (max-width: 640px) {
    .podcast-items {
        flex-direction: column;
    }
}
