img{
    max-width: 100%;
}
.podcasts-grid-columns * {margin: 0px;}
.podcasts-grid-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
}
.podcast-post-card {
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 10px 0 rgb(0 ,0, 0 , 0.15);
    transition: all 0.3s ease-in-out;
    width: 100%;
    position: relative;
}
.podcast-post-card:hover {
    box-shadow: 0 0 30px 0 rgb(0 ,0, 0 , 0.15);
}
.podcast-post-card:hover h2 {
    text-decoration: none;
    color: #aa0000;
}
.podcast-post-card:hover .podcast-post-card-img {
    opacity: 0.9;
}
.podcast-post-card-img {
    display: block;
    transition: all 0.3s ease-in-out;
}
.podcast-post-card-img img {vertical-align: middle;width: 100%;}
.podcast-post-card-body {
    padding: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.podcast-post-title {
    font-size: 21px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.podcast-read-more {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #61ce70;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}
.podcast-read-more:hover, .podcast-read-more:focus {
    text-decoration: underline;
}

.podcast-read-more::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.podcast-post-card-footer {
    border-top: 1px solid #eaeaea;
    padding: 15px 30px;
    font-size: 12px;
    color: #adadad;
}

.podcast-entry-excerpt {margin-bottom: 20px;}
.podcast-entry-excerpt iframe {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

@media (max-width:991px) {
    .podcasts-grid-columns {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:767px) {
    .podcast-post-card-body {
        padding: 20px;
    }
    .podcast-post-card-footer{
        padding-left: 20px;
        padding-right: 20px;
    }
    .podcast-post-title {
        font-size: 18px;
    }
}
@media (max-width:575px) {
    .podcasts-grid-columns {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1,1fr);
    }
}