/* Podcast Button with SVG Icon */
.style-podcast-horizontal .play-btn.podcast-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #e74c3c !important;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.style-podcast-horizontal .podcast-card:hover .play-btn.podcast-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.style-podcast-horizontal .play-btn.podcast-btn svg {
    display: block !important;
    width: 26px;
    height: 26px;
    fill: #fff;
}

.style-podcast-horizontal .play-btn.podcast-btn::before {
    display: none !important;
}
