/* ============================================================
   NTM Podcasts — Show page (single episode)
   Light editorial layout: breadcrumb, episode head w/ cover tile,
   cream player band, drop-cap body, optional topics / pull quote,
   centered guest card, watch CTA, Notable Quotes, latest grid.

   Page-local tokens (--nps-*) carry the mockup's exact shades;
   teal routes through the shared --ntm-accent-teal so the accent
   stays in lockstep with the rest of the NTM theme.
   ============================================================ */

.ntm-podcast-show {
    --nps-paper: #ffffff;
    --nps-ink: #0a0e14;
    --nps-ink-soft: #1f242c;
    --nps-cream: #f5efe0;
    --nps-cream-soft: #fbf7ec;
    --nps-teal: var(--ntm-accent-teal);
    --nps-cyan: #5fbcc4;
    --nps-line: rgba(10, 14, 20, 0.12);
    --nps-line-light: rgba(10, 14, 20, 0.08);
    --nps-mute: #6b7280;

    --nps-container: 1180px;
    --nps-narrow: 740px;

    background-color: var(--nps-paper);
    color: var(--nps-ink);
    font-family: var(--ntm-font-sans);
    line-height: 1.6;
}

.ntm-podcast-show a {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}

/* Shared inner widths */
.ntm-podcast-show__bc-inner,
.ntm-podcast-show__head-inner,
.ntm-podcast-show__player-inner,
.ntm-podcast-show__latest-container {
    max-width: var(--nps-container);
    margin: 0 auto;
    padding-left: clamp(20px, 4vw, 32px);
    padding-right: clamp(20px, 4vw, 32px);
}

.ntm-podcast-show__narrow {
    max-width: var(--nps-narrow);
    margin: 0 auto;
    padding-left: clamp(20px, 4vw, 32px);
    padding-right: clamp(20px, 4vw, 32px);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.ntm-podcast-show__breadcrumb {
    padding-top: clamp(24px, 3vw, 32px);
}

.ntm-podcast-show__bc-inner {
    font-family: var(--ntm-font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-mute);
    font-weight: 500;
}

.ntm-podcast-show__bc-inner a {
    color: var(--nps-mute);
    text-decoration: none;
}

.ntm-podcast-show__bc-inner a:hover {
    color: var(--nps-teal);
}

.ntm-podcast-show__bc-sep {
    margin: 0 10px;
    color: var(--nps-line);
}

/* ============================================================
   Episode head
   ============================================================ */
.ntm-podcast-show__head {
    padding: clamp(24px, 3.4vw, 36px) 0 clamp(40px, 6vw, 64px);
}

.ntm-podcast-show__head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}

@media (min-width: 900px) {
    .ntm-podcast-show__head-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }
}

.ntm-podcast-show__eyebrow {
    margin: 0 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-teal);
}

.ntm-podcast-show__eyebrow-rule {
    display: inline-block;
    width: 34px;
    height: 1px;
    background-color: var(--nps-teal);
    opacity: 0.85;
}

.ntm-podcast-show__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: clamp(2.375rem, 5.4vw, 4.25rem);
    line-height: 1.03;
    letter-spacing: -0.025em;
    color: var(--nps-ink);
}

.ntm-podcast-show__title em {
    font-style: italic;
    color: var(--nps-teal);
}

.ntm-podcast-show__deck {
    margin: 28px 0 0;
    max-width: 560px;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.0625rem, 1.4vw, 1.125rem);
    line-height: 1.7;
    color: #3a3f48;
}

.ntm-podcast-show__host-line {
    margin: 26px 0 0;
    font-family: var(--ntm-font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--nps-mute);
}

.ntm-podcast-show__host-name {
    color: var(--nps-ink);
    font-weight: 600;
}

/* ---------- Cover tile ---------- */
.ntm-podcast-show__cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--nps-teal) 0%, var(--nps-ink) 100%);
    box-shadow: 0 30px 80px rgba(10, 14, 20, 0.3);
    isolation: isolate;
}

.ntm-podcast-show__cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 30% 30%, rgba(95, 188, 196, 0.3), transparent 60%);
}

.ntm-podcast-show__cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mix-blend-mode: luminosity;
}

.ntm-podcast-show__cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: clamp(22px, 2.6vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--nps-cream);
}

.ntm-podcast-show__cover-tag {
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(10, 14, 20, 0.4);
    backdrop-filter: blur(8px);
    font-family: var(--ntm-font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-cyan);
}

.ntm-podcast-show__cover-num {
    margin-bottom: 6px;
    font-family: var(--ntm-font-serif);
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nps-cyan);
}

.ntm-podcast-show__cover-name {
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #ffffff;
}

/* ============================================================
   Player band
   ============================================================ */
.ntm-podcast-show__player {
    background-color: var(--nps-cream-soft);
    border-top: 1px solid var(--nps-line);
    border-bottom: 1px solid var(--nps-line);
    padding: clamp(20px, 3vw, 28px) 0;
}

.ntm-podcast-show__player-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ntm-podcast-show__player-lead {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 200px;
}

.ntm-podcast-show__player-play {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--nps-ink);
    color: var(--nps-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.ntm-podcast-show__player-play:hover {
    background-color: var(--nps-teal);
    transform: scale(1.05);
}

.ntm-podcast-show__player-play svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.ntm-podcast-show__player-info {
    min-width: 0;
}

.ntm-podcast-show__player-label {
    margin: 0 0 4px;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-teal);
    font-weight: 600;
}

.ntm-podcast-show__player-now {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1rem, 1.3vw, 1.0625rem);
    color: var(--nps-ink);
}

.ntm-podcast-show__player-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ntm-podcast-show__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background-color: var(--nps-paper);
    border: 1px solid var(--nps-line);
    color: var(--nps-ink);
    text-decoration: none;
    font-family: var(--ntm-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
}

.ntm-podcast-show__chip:hover {
    border-color: var(--nps-teal);
    color: var(--nps-teal);
}

.ntm-podcast-show__chip i {
    font-size: 0.9375rem;
}

.ntm-podcast-show__player-frame {
    margin-top: clamp(18px, 2.4vw, 24px);
    background-color: var(--nps-paper);
    border: 1px solid var(--nps-line);
    border-radius: 8px;
    padding: clamp(10px, 1.4vw, 16px);
}

.ntm-podcast-show__player-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* ============================================================
   Body — episode notes
   ============================================================ */
.ntm-podcast-show__body {
    padding: clamp(48px, 7vw, 80px) 0 clamp(36px, 5vw, 60px);
}

.ntm-podcast-show__prose {
    font-family: var(--ntm-font-sans);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--nps-ink-soft);
    font-weight: 400;
}

.ntm-podcast-show__prose p {
    margin: 0 0 24px;
}

.ntm-podcast-show__prose > :last-child {
    margin-bottom: 0;
}

.ntm-podcast-show__prose a {
    color: var(--nps-teal);
    border-bottom: 1px solid rgba(42, 139, 148, 0.4);
}

.ntm-podcast-show__prose a:hover {
    border-color: var(--nps-teal);
}

/* Restore list markers inside the description — the ntm theme strips
   list-style globally, but Quill emits standard <ul>/<ol> markup that
   the editor previews with bullets/numbers. */
.ntm-podcast-show__prose ul,
.ntm-podcast-show__prose ol {
    margin: 0 0 24px;
    padding-left: 1.4em;
}

.ntm-podcast-show__prose ul {
    list-style: disc;
}

.ntm-podcast-show__prose ol {
    list-style: decimal;
}

.ntm-podcast-show__prose li {
    list-style: inherit;
    margin-bottom: 6px;
}

/* Drop cap — targets the first letter of the prose block whether the
   description is plain text or wrapped in <p> tags. */
.ntm-podcast-show__prose::first-letter {
    font-family: var(--ntm-font-serif);
    font-size: 4rem;
    line-height: 0.85;
    float: left;
    padding: 8px 12px 0 0;
    font-weight: 500;
    font-style: italic;
    color: var(--nps-teal);
}

/* ---------- Topics block ---------- */
.ntm-podcast-show__topics {
    background-color: var(--nps-cream-soft);
    border-left: 3px solid var(--nps-teal);
    padding: clamp(28px, 3.4vw, 36px) clamp(28px, 3.8vw, 40px);
    margin: clamp(36px, 5vw, 48px) 0;
    border-radius: 0 4px 4px 0;
}

.ntm-podcast-show__topics-eyebrow {
    margin-bottom: 8px;
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-teal);
    font-weight: 600;
}

.ntm-podcast-show__topics-title {
    margin: 0 0 22px;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.375rem;
    color: var(--nps-ink);
}

.ntm-podcast-show__topics-list {
    list-style: none;
    counter-reset: topic;
    padding: 0;
    margin: 0;
}

.ntm-podcast-show__topics-list li {
    position: relative;
    padding-left: 46px;
    font-size: 0.96875rem;
    line-height: 1.6;
    color: #2a2f37;
    margin-bottom: 14px;
    counter-increment: topic;
}

.ntm-podcast-show__topics-list li:last-child {
    margin-bottom: 0;
}

.ntm-podcast-show__topics-list li::before {
    content: counter(topic, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--ntm-font-serif);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 500;
    color: var(--nps-teal);
    letter-spacing: 0.05em;
}

/* ---------- Pull quote ---------- */
.ntm-podcast-show__pullquote {
    margin: clamp(44px, 6vw, 60px) 0;
    padding: clamp(28px, 4vw, 40px) 0;
    border-top: 1px solid var(--nps-cyan);
    border-bottom: 1px solid var(--nps-cyan);
    text-align: center;
}

.ntm-podcast-show__pullquote p {
    margin: 0 auto;
    max-width: 640px;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.3125rem, 2.2vw, 1.625rem);
    line-height: 1.4;
    color: var(--nps-ink);
}

.ntm-podcast-show__pullquote p em {
    color: var(--nps-teal);
    font-weight: 600;
}

/* ============================================================
   Guest card / Watch CTA / Notable Quotes wrapper
   ============================================================ */
.ntm-podcast-show__aside {
    padding-bottom: clamp(20px, 3vw, 24px);
}

/* ---------- Guest card ---------- */
.ntm-podcast-show__guest {
    padding: clamp(44px, 6vw, 60px) 0;
    text-align: center;
    border-top: 1px solid var(--nps-line);
    margin-top: clamp(28px, 4vw, 40px);
}

.ntm-podcast-show__guest-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.6875rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--nps-teal);
    font-weight: 600;
}

.ntm-podcast-show__guest-eyebrow::before,
.ntm-podcast-show__guest-eyebrow::after {
    content: "";
    width: 48px;
    height: 1px;
    background-color: var(--nps-teal);
}

.ntm-podcast-show__guest-portrait {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    border: 3px solid var(--nps-paper);
    box-shadow: 0 8px 30px rgba(10, 14, 20, 0.18);
}

.ntm-podcast-show__guest-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ntm-podcast-show__guest-name {
    margin: 0 0 6px;
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.01em;
    color: var(--nps-ink);
}

.ntm-podcast-show__guest-role {
    margin: 0 0 18px;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--nps-ink);
    font-weight: 600;
}

.ntm-podcast-show__guest-bio {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #3a3f48;
    font-weight: 400;
}

.ntm-podcast-show__guest-bio p {
    margin: 0 0 0.8em;
}

.ntm-podcast-show__guest-bio > :last-child {
    margin-bottom: 0;
}

.ntm-podcast-show__guest-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.ntm-podcast-show__guest-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px;
    border-radius: 999px;
    border: 1.5px solid var(--nps-ink);
    color: var(--nps-ink);
    background-color: transparent;
    text-decoration: none;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ntm-podcast-show__guest-profile:hover {
    background-color: var(--nps-teal);
    border-color: var(--nps-teal);
    color: #ffffff;
}

.ntm-podcast-show__guest-profile svg {
    width: 13px;
    height: 13px;
}

.ntm-podcast-show__guest-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ntm-podcast-show__guest-social {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--nps-line);
    color: var(--nps-ink);
    text-decoration: none;
}

.ntm-podcast-show__guest-social:hover {
    border-color: var(--nps-teal);
    background-color: var(--nps-teal);
    color: #ffffff;
}

/* ---------- Watch CTA ---------- */
.ntm-podcast-show__watch {
    margin: clamp(36px, 5vw, 50px) auto 0;
    max-width: var(--nps-narrow);
    background-color: var(--nps-ink);
    color: var(--nps-cream);
    padding: clamp(22px, 3vw, 28px) clamp(24px, 3.4vw, 36px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-decoration: none;
}

.ntm-podcast-show__watch:hover {
    background-color: var(--nps-teal);
    color: var(--nps-cream);
}

.ntm-podcast-show__watch-lab {
    margin-bottom: 5px;
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-cyan);
    font-weight: 600;
}

.ntm-podcast-show__watch-ttl {
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
}

.ntm-podcast-show__watch-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--nps-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntm-podcast-show__watch:hover .ntm-podcast-show__watch-arrow {
    background-color: var(--nps-cream);
    color: var(--nps-ink);
}

.ntm-podcast-show__watch-arrow svg {
    width: 18px;
    height: 18px;
}

/* ---------- Notable Quotes ---------- */
.ntm-podcast-show__quotes {
    margin: clamp(44px, 6vw, 60px) 0 20px;
    padding-top: clamp(40px, 5vw, 50px);
    border-top: 1px solid var(--nps-line);
}

.ntm-podcast-show__quotes-head {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 44px);
}

.ntm-podcast-show__quotes-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 0.6875rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--nps-teal);
    font-weight: 600;
}

.ntm-podcast-show__quotes-eyebrow::before,
.ntm-podcast-show__quotes-eyebrow::after {
    content: "";
    width: 48px;
    height: 1px;
    background-color: var(--nps-teal);
}

.ntm-podcast-show__quotes-title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.01em;
    color: var(--nps-ink);
}

.ntm-podcast-show__quotes-title em {
    color: var(--nps-teal);
}

.ntm-podcast-show__quote-card {
    position: relative;
    margin: 0 0 24px;
    padding: clamp(34px, 4vw, 42px) clamp(34px, 4vw, 44px);
    border-radius: 6px;
    background-color: var(--nps-cream-soft);
    border: 1px solid var(--nps-line-light);
}

.ntm-podcast-show__quote-card::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: var(--ntm-font-serif);
    font-size: 5.625rem;
    line-height: 1;
    font-weight: 700;
    color: var(--nps-cyan);
    opacity: 0.7;
}

.ntm-podcast-show__quote-text {
    margin: 0 0 18px;
    padding-left: 48px;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.45;
    color: var(--nps-ink);
}

.ntm-podcast-show__quote-text em {
    color: var(--nps-teal);
    font-weight: 600;
}

.ntm-podcast-show__quote-attr {
    padding-left: 48px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nps-mute);
    font-weight: 600;
}

.ntm-podcast-show__quote-attr span {
    color: var(--nps-teal);
}

/* ============================================================
   Latest conversations
   ============================================================ */
.ntm-podcast-show__latest {
    background-color: var(--nps-cream);
    border-top: 1px solid var(--nps-line);
    padding: clamp(64px, 9vw, 100px) 0 clamp(72px, 10vw, 110px);
}

.ntm-podcast-show__latest-head {
    margin-bottom: clamp(36px, 5vw, 50px);
}

.ntm-podcast-show__latest-eyebrow {
    margin: 0 0 12px;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nps-teal);
    font-weight: 600;
}

.ntm-podcast-show__latest-title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: clamp(2.125rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--nps-ink);
}

.ntm-podcast-show__latest-title em {
    font-style: italic;
    color: var(--nps-teal);
}

.ntm-podcast-show__latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.ntm-podcast-show__latest-foot {
    margin-top: clamp(32px, 4vw, 44px);
}

.ntm-podcast-show__latest-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--nps-ink);
    text-decoration: none;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ntm-podcast-show__latest-link:hover {
    color: var(--nps-teal);
}

.ntm-podcast-show__latest-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .ntm-podcast-show__latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ntm-podcast-show__latest-grid {
        grid-template-columns: 1fr;
    }

    .ntm-podcast-show__player-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .ntm-podcast-show__watch {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}
