/* Podcast Section */
.podcast-section {
    padding: 2rem 2rem;
    background: var(--bg-secondary);
    transition: background 0.3s ease;
}

.podcast-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Podcast Grid - 3 videos per row */
.podcast-section .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.podcast-section .video-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    transform: scale(0.95);
}

.podcast-section .video-card:hover {
    transform: scale(1) translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-hover);
}

.podcast-section .video-thumbnail {
    position: relative;
    padding-top: 50%;
    background: var(--gradient);
    overflow: hidden;
}

.podcast-section .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.podcast-section .video-card:hover .video-thumbnail img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.podcast-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.podcast-section .video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1) rotate(90deg);
    background: white;
    box-shadow: 0 10px 30px rgba(139, 95, 191, 0.5);
}

.podcast-section .video-info {
    padding: 1.2rem;
}

.podcast-section .video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.podcast-section .video-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .podcast-section .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .podcast-section {
        padding: 2rem 1rem;
    }
    
    .podcast-section .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .podcast-section .video-card {
        transform: scale(1);
    }
    
    .podcast-section .video-info {
        padding: 1rem;
    }
    
    .podcast-section .video-info h3 {
        font-size: 1rem;
    }
    
    .podcast-section .video-info p {
        font-size: 0.8rem;
    }
    
    .podcast-section .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Reduce animations on mobile */
    .podcast-section .video-card:hover {
        transform: translateY(-5px);
    }
    
    .podcast-section .video-card:hover .video-thumbnail img {
        transform: scale(1.05);
    }
    
    .podcast-section .video-card:hover .play-button {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 480px) {
    .podcast-section {
        padding: 1.5rem 0.8rem;
    }
    
    .podcast-section .video-grid {
        gap: 0.8rem;
    }
    
    .podcast-section .video-info {
        padding: 0.8rem;
    }
    
    .podcast-section .video-info h3 {
        font-size: 0.9rem;
    }
    
    .podcast-section .video-info p {
        font-size: 0.75rem;
    }
    
    .podcast-section .play-button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}