/* Podcasts Section */
.podcasts {
    background: var(--bg-tertiary);
    position: relative;
}

.podcasts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal-texture);
    opacity: 0.1;
}

.podcast-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.podcast-episode {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    background: var(--bg-primary);
    padding: 2rem;
    align-items: center;
    clip-path: polygon(1% 0, 99% 0, 100% 99%, 0 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.episode-artwork {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url('podcast-1.png');
}

.episode-artwork.artwork-2 {
    background-image: url('podcast-2.png');
}

.episode-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.episode-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.podcast-player {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-medium);
    position: relative;
    cursor: pointer;
    clip-path: polygon(0 0, 98% 0, 100% 100%, 2% 100%);
}

.progress-fill {
    height: 100%;
    background: var(--black);
    width: 30%;
    transition: width 0.3s ease;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-icon {
    font-size: 1rem;
}

.volume-bar {
    width: 60px;
    height: 4px;
    background: var(--gray-medium);
    position: relative;
    cursor: pointer;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.volume-fill {
    height: 100%;
    background: var(--black);
    width: 70%;
    transition: width 0.3s ease;
}

