
.podcast-episodes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.podcast-episode {
    display: flex;
    background-color: #e8f0e8;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}

.podcast-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.podcast-info {
    flex-grow: 1;
}

.podcast-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.podcast-episode-number {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.podcast-duration {
    font-size: 0.8em;
    color: #666;
}

.podcast-play-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6b6b6b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.podcast-play-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.podcast-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.podcast-popup-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.podcast-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.podcast-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.podcast-pagination span {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #e8f0e8;
}

.podcast-pagination span.active {
    background-color: #6b6b6b;
    color: #fff;
}

.podcast-nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.podcast-prev-btn {
    left: -50px;
}

.podcast-next-btn {
    right: -50px;
}

@media (max-width: 768px) {
    .podcast-episodes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .podcast-episodes-container {
        grid-template-columns: 1fr;
    }
}
