/* Podcast Page Styles */

.page-hero {
    padding: 8rem 0 4rem;
    background: #B4B4B4;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: #1A9980;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

/* YouTube Section */
.youtube-section {
    padding: 2rem 0 4rem;
    background: #B4B4B4;
    text-align: center;
}

.platform-toggle {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--teal);
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 153, 128, 0.2);
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 153, 128, 0.3);
}

.spotify-btn {
    background: #000000;
    color: #B4B4B4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spotify-btn:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Podcast Grid */
.podcast-grid-section {
    padding: 4rem 0 6rem;
    background: var(--dark-gray);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.podcast-card {
    background: #B4B4B4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.podcast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--black);
}

.card-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.guest-title {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.episode-description {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-content iframe {
    margin-top: 1rem;
}

/* CTA Section */
.podcast-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, #158f75 100%);
    text-align: center;
    color: white;
}

.podcast-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.podcast-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.podcast-cta .btn {
    background: #B4B4B4;
    color: var(--teal);
    font-weight: 700;
}

.podcast-cta .btn:hover {
    background: #B4B4B4;
    color: var(--teal);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .platform-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}
