.episode {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.2); 
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    
}

.episode:hover {
    box-shadow: 0 0 8px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px); 
}

.episode-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
}

