.rhwp-podcasts .rhwp-wrapper:not(.loader) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
}

.rhwp-podcasts .rhwp-wrapper .rh-podcasts-card {
    display: flex;
    flex-flow: column;
    min-height: 400px;
}

.rhwp-podcasts .rhwp-wrapper .rh-podcasts-card .rh-podcasts-card__cover {
    position: relative;
    min-height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rhwp-podcasts .rhwp-wrapper .rh-podcasts-card .rh-podcasts-card__cover a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.rhwp-podcasts .rhwp-wrapper .rh-podcasts-card .rh-podcasts-card__body {
    display: flex;
    flex-flow: column;
    flex: 1;
    padding: .5em 1.5em;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .075);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.rhwp-podcasts .rhwp-wrapper .rh-podcasts-card .rh-podcasts-card__body h2 {
    margin: 0;
    font-size: 16px;
    color: #243850;
}

.rhwp-podcasts .rhwp-wrapper .rh-podcasts-card .rh-podcasts-card__body p {
    margin: 0;
    font-size: 16px;
    line-height: 1;
}

.rhwp-podcasts a {
    text-decoration: none;
}

.rhwp-podcasts .rhwp-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: #243850;
}

.rhwp-podcasts .rhwp-loading i, .rhwp-spinner {
    font-size: 3em;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.rhwp-podcasts .rhwp-loading .rhwp-notice span {
    font-size: 16px;
    color: #243850;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 991px) {
    .rhwp-podcasts .rhwp-wrapper:not(.loader) {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 600px) {
    .rhwp-podcasts .rhwp-wrapper:not(.loader) {
        grid-template-columns: 1fr;
    }
}
