/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .recent-podcasts .podcast-snippet {
    display: flex;
    flex-wrap: wrap;
 }

 .recent-podcasts .podcast-snippet .content {
    width: 60%;
    margin-bottom: 3rem;
    padding: 0 1rem;
 }


 .recent-podcasts .podcast-snippet .player {
    width: 40%;
    padding: 1rem;
    text-align: center;
 }

 @media (max-width: 800px) {

    .recent-podcasts .podcast-snippet .content {
        width: 100%;
        margin-bottom: 1rem;
        padding: 0 1rem;
     }
    
    
     .recent-podcasts .podcast-snippet .player {
        width: 100%;
        padding: 3rem;
        text-align: center;
     }

 }

 .pagination li {
    
    display: inline-block;
    font-weight: bold;
    margin: 0 25px;
}

