/* Podcast Episode Styles - Aggressive Full Width */

.featured-content {
    position: relative !important;
    overflow: hidden;
    color: white;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
}

.featured-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* z-index: 1; */
}

.featured-content .container {
    position: relative;
    /* z-index: 2; */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.padding-top-bottom {
    padding: 80px 0;
}

/* Latest Episode Header Styles */
.latest-episode-header {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.latest-episode p.big {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.latest-episode .entry-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #FFFFFF;
}

.latest-episode .entry-title a {
    color: #FFFFFF;
    text-decoration: none;
}

.latest-episode .entry-title a:hover {
    color: inherit;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.opacity-50 {
    opacity: 0.7;
}

/* Single Episode Header Styles */
.single-episode-header {
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.single-episode-header h1.entry-title {
    color: #FFFFFF;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.taxonomy-category {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* Podcast Archive Styles */
.podcast-pagination {
    margin: 40px 0;
    text-align: center;

}

.podcast-pagination .page-numbers {
    display: flex;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    list-style: none;
}

.podcast-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}
.podcast-pagination .page-numbers li {

}

.podcast-pagination .page-numbers:hover {
    background: #f0f0f0;
}
/* Custom Player Styles */
#custom-player {
    margin: 30px 0;
    border-radius: 15px;

}

#custom-player iframe {
    width: 100%;
    border-radius: 10px;
}

/* Subscribe Buttons */
.su-subscribe-buttons-header {
    margin-top: 30px;
}

.podcast-subscribe-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.podcast-subscribe-buttons .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-itunes {
    background: linear-gradient(135deg, #007aff, #0051d5);
    color: white;
}

.btn-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.btn-spotify {
    background: linear-gradient(135deg, #1ed760, #1db954);
    color: white;
}

.btn-custom1,
.btn-custom2 {
    background: linear-gradient(135deg, #6c5ce7, #5a4fcf);
    color: white;
}

.podcast-subscribe-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .padding-top-bottom {
        padding: 60px 0;
    }
    
    .latest-episode .entry-title {
        font-size: 2rem;
    }
    
    .single-episode-header h1.entry-title {
        font-size: 2.5rem;
    }
    
    .entry-meta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .podcast-subscribe-buttons {
        justify-content: center;
    }
    
    .podcast-subscribe-buttons .btn {
        font-size: 12px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .latest-episode .entry-title {
        font-size: 1.75rem;
    }
    
    .single-episode-header h1.entry-title {
        font-size: 2rem;
    }
    
    #custom-player {
        padding: 15px;
    }
}