.podcast-category-card-wrapper {
    width: 100%;
    max-width: 300px;
}
@media only screen and (min-width: 576px) {
    .podcast-category-card-wrapper {
        width: 45%;
    }
}
@media only screen and (min-width: 768px) {
    .podcast-category-card-wrapper {
        width: 33%;
    }
}
@media only screen and (min-width: 992px) {
    .podcast-category-card-wrapper {
        width: 20%;
    }
}
.podcast-category-card {
    width: 100%;
    color: var(--miracel-primary-white-color);
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    transition: all .7s ease-in-out;
}
.podcast-category-card__thumbnail {
	transition: all 250ms linear;
}
.podcast-category-card__descriptions {
	top: 0;
	left: 0;
    background-color: rgba(255,255,255,0.7);
    transition: all 0.7s ease-in-out;
    clip-path: circle(0% at 100% 100%);
}
.podcast-category-card:hover .podcast-category-card__descriptions {
    left:0px;
    transition: all .7s ease-in-out;
    clip-path: circle(75%);
}
.podcast-category-card:hover{
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    box-shadow: 0px 2px 3px rgba(0,0,0,.3);
    transform: scale(.97);
}
.podcast-category-card:hover .podcast-category-card__thumbnail{
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    transform: scale(1.6) rotate(20deg);
    filter: blur(3px);
}
