/* Stack podcast embeds */
.podcast-container {
  display: flex; 
  flex-direction: column; 
  align-items: center;
}

/* Add space between podcast embeds and summary text */
.podcast-container iframe {
    margin-bottom: 1rem;
}

/* Add responsiveness for smaller screens */
@media screen and (max-width: 576px) {
    .card-body-podcast {
        padding: 0.25rem;
    }
    .podcast-container iframe:first-child{
    width: 90%;
    }
    .podcast-container iframe {
    width: 98%;
    }
}