/* ========================================
   Podcast Page Styles
   ======================================== */

/* Hero Section */
.podcast-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(12, 79, 88, 0.6), rgba(12, 79, 88, 0.6)), 
                url('../assets/images/slide2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 155px;
}

.podcast-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 79, 88, 0.3);
}

.podcast-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
}

.podcast-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.podcast-breadcrumb {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.podcast-breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.podcast-breadcrumb a:hover {
    color: var(--bright-cyan-glow);
}

.podcast-breadcrumb .separator {
    color: var(--pure-white);
}

.podcast-breadcrumb span:last-child {
    color: var(--bright-cyan-glow);
}

/* Podcast Content Section */
.podcast-content-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Podcast Card */
.podcast-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.podcast-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.podcast-info {
    padding: 2rem;
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.podcast-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-meta i {
    color: var(--deep-teal);
}

.podcast-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--deep-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.podcast-card:hover .podcast-title {
    color: var(--deep-teal);
}

.podcast-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.podcast-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--deep-teal);
    font-weight: 600;
}

.podcast-duration i {
    font-size: 0.8rem;
}

/* Podcast Categories/Filter */
.podcast-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--deep-teal);
    background: white;
    color: var(--deep-teal);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--deep-teal);
    color: white;
}

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 4rem;
}

.btn-load-more {
    padding: 15px 40px;
    background: var(--deep-teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 79, 88, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .podcast-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .podcast-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 120px;
    }

    .podcast-hero-title {
        font-size: 2.5rem;
    }

    .podcast-breadcrumb {
        font-size: 0.95rem;
    }

    .podcast-content-section {
        padding: 4rem 0;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .podcast-info {
        padding: 1.5rem;
    }

    .podcast-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .podcast-hero-title {
        font-size: 2rem;
    }

    .podcast-breadcrumb {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .podcast-breadcrumb .separator {
        display: none;
    }

    .podcast-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .podcast-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}


/* Subscribe Section */
.podcast-subscribe {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 18px 45px;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.subscribe-btn:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.subscribe-btn i {
    font-size: 1.5rem;
}

.subscribe-btn.youtube {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
}

.subscribe-btn.youtube:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}
