.podcast-channel-card-wrapper {
    width: 100%;
    max-width: 300px;
}
@media only screen and (min-width: 576px) {
    .podcast-channel-card-wrapper {
        width: 45%;
    }
}
@media only screen and (min-width: 768px) {
    .podcast-channel-card-wrapper {
        width: 33%;
    }
}
@media only screen and (min-width: 992px) {
    .podcast-channel-card-wrapper {
        width: 20%;
    }
}
.podcast-channel-card {
    color: var(--miracel-primary-white-color);
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    transition: all 250ms linear;
}
.podcast-channel-card-content {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5));
    transition: all 250ms linear;
}
.podcast-channel-card-content:hover {
    transform: rotate(0);
}
.podcast-channel-card-content:before, .podcast-channel-card-content:after {
    content: '';
    transform: scale(0);
    transform-origin: top left;
    border-radius: 50%;
    position: absolute;
    left: -50%;
    top: -50%;
    z-index: -5;
    transition: all 250ms linear;
}
.podcast-channel-card-content:before {
    background-color: var(--miracel-primary-white-color);
    width: 250%;
    height: 250%;
}
.podcast-channel-card-content:after {
    background-color: var(--miracel-primary-white-color);
    width: 200%;
    height: 200%;
}
.podcast-channel-card-content:hover {
    color: var(--miracel-primary-color);
}
.podcast-channel-card-content:hover:before, .podcast-channel-card-content:hover:after {
    transform: scale(1);
}
