.ce_jipodcastcard_item {
    margin: auto;
    padding: 2rem;
    width: 100%;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.ce_jipodcastcard_linkwrapper:hover .ce_jipodcastcard_item {
    transform: translateY(-0.3125rem);
    box-shadow: 0rem 0.9375rem 2.1875rem rgba(0,0,0,0.15);
}

.ce_jipodcastcard_container {
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
}

.ce_jipodcastcard_image {
    width: 8.4375rem;
    height: 8.4375rem;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.ce_jipodcastcard_linkwrapper:hover .ce_jipodcastcard_image {
    transform: scale(1.05);
}

.ce_jipodcastcard_link {
    font-size: 2rem;
}

.ce_jipodcastcard_linkwrapper,
.ce_jipodcastcard_linkwrapper:hover,
.ce_jipodcastcard_linkwrapper * {
    text-decoration: none !important;
}