/* ============================================================
   Podcast Pages — Party Wall PRO
   ============================================================ */

/* ---- Common ---- */
.podcast-page-wrap {
    background: #f4f6f8;
    min-height: 72vh;
}

/* ---- Podcast hero (listing page) ---- */
.podcast-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
    color: #fff;
    margin-top: 82px;
    padding: 56px 0 56px;
    text-align: center;
}
.podcast-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.podcast-hero .hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}
.podcast-hero .green-palate { color: #1CBD9D; }

/* ---- Episodes listing ---- */
.episodes-section {
    padding: 52px 0 72px;
}
.episodes-section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

/* ---- Episode card (listing page) ---- */
.episode-card {
    background: #fff;
    border: 1px solid #e4e8ec;
    border-radius: 8px;
    padding: 26px 28px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    color: inherit;
}
.episode-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    border-color: #1CBD9D;
    text-decoration: none;
    color: inherit;
}
.ep-icon {
    color: #1CBD9D;
    font-size: 26px;
    min-width: 32px;
    padding-top: 2px;
}
.ep-body { flex: 1; min-width: 0; }
.ep-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px;
    line-height: 1.3;
}
.ep-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}
.ep-meta .guest-name {
    color: #555;
    font-weight: 600;
}
.ep-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.62;
    margin: 0 0 14px;
}
.ep-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #1CBD9D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.episode-card:hover .ep-cta { text-decoration: underline; }

/* ---- Episode detail ---- */

/* Breadcrumb bar */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    margin-top: 82px;
    padding: 11px 0;
    font-size: 13px;
    color: #aaa;
}
.breadcrumb-bar a {
    color: #1CBD9D;
    text-decoration: none;
}
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar .sep { margin: 0 7px; color: #ccc; }

/* Episode hero */
.episode-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
    color: #fff;
    margin-top: 82px; /* clears fixed header on pages without a breadcrumb bar (e.g. about, gdpr) */
    padding: 52px 0 46px;
}
/* On episode detail pages a .breadcrumb-bar already provides the 82px clearance */
.breadcrumb-bar + .episode-hero { margin-top: 0; }
.episode-hero .ep-number-badge {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1CBD9D;
    border: 1px solid rgba(28,189,157,0.6);
    border-radius: 3px;
    padding: 3px 10px;
    margin-bottom: 16px;
}
.episode-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.25;
}
.episode-hero .ep-byline {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    margin: 0;
}
.episode-hero .ep-byline strong {
    color: rgba(255,255,255,0.95);
}

/* Episode body */
.episode-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 44px 20px 0;
}
/* style-v1.css sets p { float: left; width: 100% } globally — reset it here */
.episode-body p {
    float: none;
    width: auto;
}

/* Audio player */
.audio-section {
    background: #fff;
    border: 1px solid #e4e8ec;
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 28px;
}
.block-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}
.audio-section audio {
    width: 100%;
    display: block;
}

/* YouTube video embed */
.video-section {
    margin-bottom: 28px;
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Episode notes */
.episode-notes {
    background: #fff;
    border: 1px solid #e4e8ec;
    border-radius: 8px;
    padding: 26px 30px;
    margin-bottom: 28px;
}
.episode-notes h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.episode-notes p,
.episode-notes li {
    font-size: 15px;
    color: #444;
    line-height: 1.72;
}
.episode-notes ul {
    padding-left: 20px;
    margin: 0 0 14px;
}
.episode-notes ul li { margin-bottom: 8px; }
.topic-group { margin-bottom: 22px; }
.topic-group:last-child { margin-bottom: 0; }
.topic-group h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

/* Share buttons */
.share-section {
    background: #fff;
    border: 1px solid #e4e8ec;
    border-radius: 8px;
    padding: 22px 28px;
    margin-bottom: 32px;
}
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
    color: #fff !important;
    border: none;
    cursor: pointer;
    line-height: 1;
    font-family: inherit;
}
.share-btn:hover { opacity: 0.85; text-decoration: none; color: #fff !important; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.email    { background: #667380; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.twitter  { background: #1DA1F2; }
.share-btn.facebook { background: #1877F2; }
.share-btn.copy     { background: #1CBD9D; }
.share-btn.copy.copied { background: #27ae60; }

/* Back link */
.back-to-podcast {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1CBD9D;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.back-to-podcast:hover { text-decoration: underline; color: #1CBD9D; }

/* ---- Fixed header override for podcast pages ---- */
#header {
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    padding: 14px 0;
}
#header .logo img {
    height: 54px;
    width: auto;
}

/* Active nav item */
.nav_main ul li a.podcast-active {
    color: #1CBD9D !important;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .podcast-hero { margin-top: 82px; padding: 40px 0 36px; }
    .podcast-hero h1 { font-size: 28px; }
    .breadcrumb-bar { margin-top: 82px; }
    .episode-hero { margin-top: 82px; padding: 40px 0 36px; }
    .breadcrumb-bar + .episode-hero { margin-top: 0; }
    .episode-hero h1 { font-size: 24px; }
    .episode-card { flex-direction: column; gap: 6px; padding: 20px; }
    .episode-notes { padding: 20px 18px; }
    .share-section { padding: 18px 18px; }
    .episode-body { padding: 28px 0 0; }
    .share-buttons { gap: 8px; }
    .share-btn { padding: 8px 14px; font-size: 12px; }
}
