/* Podcast New Page Styles */

.podcast-new-page {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: linear-gradient(185deg, #F7F1FF 43%, #ffffff 80%);
    padding: 80px 0;
}

.podcast-new-container {
    width: 100%;
    padding: 0 15px;
}

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

.podcast-new-container .row {
    align-items: center;
    margin: 0;
}

/* Left Side - Content */
.podcast-content {
    padding: 40px 20px;
}

.podcast-text-wrapper {
    max-width: 100%;
}

.podcast-title {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.podcast-description {
    margin-bottom: 40px;
}

.podcast-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.podcast-subscribe-section {
    margin-top: 40px;
}

.subscribe-heading {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

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

.subscribe-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 25px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #fff;
}

.spotify-btn {
    background-color: #6B46C1; /* Purple shade */
}

.spotify-btn:hover {
    background-color: #5B3FA8;
}

.apple-btn {
    background-color: #7C3AED; /* Slightly lighter purple */
}

.apple-btn:hover {
    background-color: #6D2ED6;
}

.youtube-btn {
    background-color: #8B5CF6; /* Light purple */
}

.youtube-btn:hover {
    background-color: #7C4EDF;
}

/* Right Side - Cover Art */
.podcast-image-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-cover-art {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.cover-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
}

.cover-placeholder {
    width: 100%;
    padding: 60% 0;
    background: linear-gradient(135deg, #6B46C1 0%, #4C1D95 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .podcast-new-page {
        padding: 60px 0;
    }
    
    .podcast-content {
        padding: 20px 15px;
        text-align: center;
    }
    
    .podcast-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .podcast-paragraph {
        font-size: 15px;
    }
    
    .podcast-image-wrapper {
        padding: 30px 15px;
        order: -1; /* Show image first on mobile */
    }
    
    .podcast-cover-art {
        max-width: 300px;
    }
    
    .subscribe-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .podcast-title {
        font-size: 28px;
    }
    
    .podcast-paragraph {
        font-size: 14px;
    }
    
    .subscribe-btn {
        padding: 10px 24px;
        font-size: 14px;
        flex: 1;
        min-width: 120px;
    }
    
    .podcast-cover-art {
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .podcast-new-page {
        padding: 40px 0;
    }
    
    .podcast-title {
        font-size: 24px;
    }
    
    .subscribe-heading {
        font-size: 16px;
    }
    
    .subscribe-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

/* Podcast Section Override for Podcast New Page */
.podcast-new-page .custom-podcast-section {
    background-color: transparent !important;
    background-image: none !important;
}

.podcast-new-page .sinjun-podcast-player-container {
    background-color: #6B46C1 !important; /* Vibrant purple background */
}

.podcast-new-page .sinjun-podcast-content,
.podcast-new-page .sinjun-podcast-layout,
.podcast-new-page .sinjun-podcast-info,
.podcast-new-page .sinjun-podcast-title,
.podcast-new-page .sinjun-podcast-description,
.podcast-new-page .sinjun-episode-item,
.podcast-new-page .sinjun-episode-title-compact,
.podcast-new-page .sinjun-episode-date,
.podcast-new-page .sinjun-episode-duration,
.podcast-new-page .sinjun-episode-meta-left {
    color: #ffffff !important;
}

.podcast-new-page .sinjun-episode-item {
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.podcast-new-page .sinjun-episode-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.podcast-new-page .sinjun-episode-item.sinjun-episode-expanded {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.podcast-new-page .sinjun-episode-audio {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

.podcast-new-page .solutions {
    color: #000 !important;
}

/* Print Styles */
@media print {
    .podcast-new-page {
        background-color: #fff;
        padding: 20px 0;
    }
    
    .subscribe-buttons {
        display: none;
    }
}

