/* ============================================================
   PODCAST PAGE 3 — Single episode notes / detail.
   Scoped under .podcast-notes root class.
   ============================================================ */

.podcast-notes {
    background: #fff;
}

.pod-notes-main {
    padding: 140px 24px 80px;
    max-width: 920px;
    margin: 0 auto;
}

/* ============== EPISODE HERO (cover + meta + summary) ============== */
.pod-notes-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 48px;
}
.pod-notes-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #1a1f36;
    border-radius: 18px;
    overflow: hidden;
}
.pod-notes-cover img { width: 100%; height: 100%; object-fit: cover; }

.pod-notes-meta {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--clr-navy);
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    opacity: 0.7;
}
.pod-notes-meta span + span::before {
    content: "•";
    margin-right: 14px;
    opacity: 0.5;
}

.pod-notes-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.2;
    color: var(--clr-navy);
    margin: 0 0 18px;
    letter-spacing: -0.005em;
}
.pod-notes-summary {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--clr-navy);
    margin: 0 0 20px;
    letter-spacing: -0.005em;
}
.pod-notes-tags {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--clr-navy);
    opacity: 0.6;
    display: flex;
    gap: 12px;
}

/* ============== BODY (long-form + secondary thumb) ============== */
.pod-notes-body h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--clr-navy);
    margin: 36px 0 14px;
    letter-spacing: -0.005em;
}
.pod-notes-body p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.75;
    letter-spacing: 1.2px;
    color: var(--clr-navy);
    font-weight: 300;
    margin: 0 0 14px;
}
.pod-notes-body-grid {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 36px;
    align-items: start;
    margin-top: 24px;
}
.pod-notes-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #1a1f36;
    border-radius: 18px;
    overflow: hidden;
}

/* ============== STICKY-STYLE PURPLE PLAYER ============== */
.pod-notes-player {
    margin-top: 56px;
    background: #8090ff;
    color: #fff;
    border-radius: 24px;
    padding: 14px 24px 14px 14px;
    display: grid;
    grid-template-columns: 56px auto 1fr auto;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(128, 144, 255, 0.28);
}
.pod-notes-player-cover {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pod-notes-player-cover img { width: 100%; height: 100%; object-fit: cover; }

.pod-notes-player-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-red);
    color: #fff;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease;
}
.pod-notes-player-play:hover { transform: scale(1.06); }
.pod-notes-player-play::before {
    content: "";
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}

.pod-notes-player-track {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.pod-notes-player-title {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pod-notes-player-bar {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    overflow: hidden;
}
.pod-notes-player-bar-fill {
    position: absolute;
    inset: 0 70% 0 0;
    background: #fff;
}

.pod-notes-player-time {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: #fff;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .pod-notes-main { padding: 120px 20px 60px; }
    .pod-notes-hero { grid-template-columns: 1fr; gap: 22px; }
    .pod-notes-cover { max-width: 200px; }
    .pod-notes-body-grid { grid-template-columns: 1fr; gap: 22px; }
    .pod-notes-thumb { max-width: 200px; }
    .pod-notes-player {
        grid-template-columns: 48px auto 1fr;
        gap: 12px;
        padding: 12px 16px;
    }
    .pod-notes-player-time { display: none; }
    .pod-notes-player-cover { width: 48px; height: 48px; }
}
