.podcast-wrapper-8348df30 {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}
.podcast-cards-container-8348df30 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.podcast-card-8348df30 {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s;
}
.podcast-card-8348df30:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.podcast-card-8348df30 .card-left {
    flex-shrink: 0;
    margin-right: 20px;
}
.podcast-card-8348df30 .play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    padding: 0;
}
.podcast-card-8348df30 .play-btn:hover {
    transform: scale(1.05);
}
.podcast-card-8348df30 .play-btn.playing {
    background-color: #e74c3c;
}
.podcast-card-8348df30 .play-btn .icon-play,
.podcast-card-8348df30 .play-btn .icon-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.podcast-card-8348df30 .play-btn i {
    line-height: 1;
}
.podcast-card-8348df30 .play-btn svg {
    fill: currentColor;
    display: block;
}
.podcast-card-8348df30 .card-middle {
    flex-grow: 1;
}
.podcast-card-8348df30 .episode-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 5px;
}
.podcast-card-8348df30 .episode-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}
.podcast-card-8348df30 .episode-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.podcast-card-8348df30 .episode-title a:hover {
    color: #000;
}
.podcast-card-8348df30 .episode-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}
.podcast-card-8348df30 .episode-meta {
    font-size: 12px;
    color: #888;
}
.podcast-card-8348df30 .card-right {
/*     flex-shrink: 0;
    text-align: right;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center; */
	width: 100%;
}
.podcast-card-8348df30 .episode-duration {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.podcast-card-8348df30 .more-details {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
.podcast-card-8348df30 .more-details:hover {
    text-decoration: underline;
}

.podcast-load-more-wrapper-8348df30 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.podcast-load-more-8348df30 {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.podcast-load-more-8348df30:hover {
    opacity: 0.9;
}
.podcast-load-more-8348df30.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .podcast-card-8348df30 {
        flex-direction: column;
        align-items: flex-start;
    }
    .podcast-card-8348df30 .card-left {
        margin-bottom: 15px;
    }
    .podcast-card-8348df30 .card-right {
        margin-left: 0;
        margin-top: 15px;
        align-items: flex-start;
        text-align: left;
    }
}