/* ============================================================
   Division 9 — Podcast Page (podcast.html)
   Page-specific styles
   ============================================================ */

/* ── Content Section ── */
.content-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 24px 80px;
    text-align: center;
}

.content-section h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.content-section h1 span {
    color: var(--gold-primary);
    font-style: italic;
}

p.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
}

.subtitle-version {
    color: var(--gold-light);
    font-size: 0.8rem;
}

/* ── Audio Player ── */
.audio-player-container {
    background: var(--black-soft);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 4px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.audio-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

audio {
    width: 100%;
    outline: none;
    filter: invert(0.9) hue-rotate(180deg);
}

audio::-webkit-media-controls-panel {
    background-color: #222;
}

/* ── Download Section ── */
.download-section {
    margin-top: 24px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
}

.download-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--gold-primary);
    padding: 12px 24px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.download-btn:hover {
    background: rgba(13, 148, 136, 0.1);
}

.download-btn svg {
    width: 16px;
    height: 16px;
}

/* ── Back Link ── */
.back-link {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-muted);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--gold-primary);
    gap: 14px;
}

/* ── Header Right ── */
.header-right {
    justify-self: end;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 24px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
}