.podcast-episode-card-wrapper {
    width: 100%;
}
@media only screen and (min-width: 576px) {
    .podcast-episode-card-wrapper {
        width: 45%;
    }
}
@media only screen and (min-width: 768px) {
    .podcast-episode-card-wrapper {
        width: 33%;
    }
}
@media only screen and (min-width: 992px) {
    .podcast-episode-card-wrapper {
        width: 20%;
    }
}

.podcast-episode-card {
    height: 450px;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
}
.podcast-episode-card .color-overlay {
    background: rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: all 250ms linear;
}
.podcast-episode-card:hover .color-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.podcast-episode-card__title-wrapper {
    z-index: 20;
}
.podcast-episode-card__hr {
    width: 50px;
    height: 3px;
    margin: 20px auto;
    border: 0;
    background-color: var(--miracel-secondary-color);
}
.podcast-episode-card__card-info {
    bottom: 100px;
    left: 0;
    z-index: 20;
    opacity: 0;
    transition: all 250ms linear;
}
.podcast-episode-card:hover .podcast-episode-card__card-info {
    opacity: 1;
    bottom: 120px;
}

.podcast-episode-card__data-info {
    z-index: 20;
}

.podcast-episode-card__data-list .fa-podcast{
    color: var(--miracel-secondary-color);
}