/* Seekt guides — shared styles (extracted from podcast.html) */
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #1d1d1f;
            background: #f5f5f7;
            line-height: 1.6;
            padding: 0;
        }
        .mini-hero {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .mini-hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 1.5rem 2rem;
            gap: 1rem;
        }
        .mini-hero-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            flex-shrink: 0;
        }
        .mini-hero-text {
            flex: 1;
        }
        .mini-hero-text .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: #007AFF;
            letter-spacing: -0.5px;
            font-family: ui-rounded, "SF Pro Rounded", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1;
        }
        .mini-hero-text .tagline {
            font-size: 0.8rem;
            color: #6e6e73;
            margin-top: 0.15rem;
        }
        .mini-hero-page {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            flex-shrink: 0;
        }
        .mini-hero a {
            color: #007AFF;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .mini-hero a:hover { text-decoration: underline; }
        @media (max-width: 600px) {
            .mini-hero-inner {
                flex-wrap: wrap;
                padding: 2.75rem 1.5rem 1.25rem;
            }
            .mini-hero-page {
                width: 100%; text-align: right;
                margin-top: 0.25rem;
            }
        }
        .content {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 1.5rem 2rem;
        }
        .episode-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.75rem 1.5rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            margin-top: 1.5rem;
        }
        .episode-card h1 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .episode-meta {
            font-size: 0.8rem;
            color: #6e6e73;
            margin-bottom: 1.25rem;
        }
        .episode-description {
            font-size: 0.9rem;
            color: #333;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }
        .episode-card.quick-guide {
            background: #dbe6f6;
        }
        .quick-guide-grid {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .quick-guide-grid .episode-card {
            margin-top: 0;
        }
        .section-indicator {
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
            background: #007AFF;
            min-height: 1.2em;
            padding: 0.3rem 0.75rem 1.5rem 0.75rem;
            border-radius: 8px 8px 0 0;
            display: inline-block;
            transition: opacity 0.3s ease;
            margin-bottom: -1.2rem;
            position: relative;
            z-index: 0;
        }
        .section-indicator:empty {
            display: none;
        }
        .audio-wrap {
            position: relative;
            z-index: 1;
            margin-bottom: 1rem;
            background: #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
        }
        audio {
            width: 100%;
            display: block;
        }
        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.85rem;
            color: #007AFF;
            text-decoration: none;
            font-weight: 600;
        }
        .download-link:hover { text-decoration: underline; }
        .download-link img { height: 0.95rem; width: auto; }
        .transcript-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.85rem;
            color: #007AFF;
            font-weight: 600;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }
        .transcript-toggle:hover { text-decoration: underline; }
        .transcript-toggle img { height: 0.9rem; width: auto; }
        .transcript-text {
            font-size: 0.85rem;
            color: #333;
            line-height: 1.7;
            margin-top: 1rem;
            max-height: 0;
            overflow: hidden;
            background: #f0f0f0;
            border-radius: 10px;
            padding: 0 1.25rem;
            transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease;
            opacity: 0;
        }
        .transcript-text.open {
            max-height: 500px;
            overflow-y: auto;
            padding: 1rem 1.25rem;
            opacity: 1;
        }
        .transcript-text p {
            margin-bottom: 0.75rem;
        }
        .transcript-text .section-heading {
            font-weight: 700;
            color: #1d1d1f;
            margin-top: 1.25rem;
            margin-bottom: 0.25rem;
        }
        a { color: #0066cc; text-decoration: none; }
        a:hover { text-decoration: underline; }
        .footer {
            margin-top: 2rem;
            padding: 1.5rem;
            font-size: 0.85rem;
            color: #6e6e73;
            text-align: center;
        }
        .footer a {
            margin: 0 0.5rem;
        }
        .subscribe-card {
            background: #fff;
            border-radius: 14px;
            padding: 2.75rem 1.5rem 1.25rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            margin-top: 1rem;
            text-align: center;
        }
        .subscribe-card span {
            font-size: 0.8rem;
            color: #6e6e73;
        }
        .rss-link {
            display: inline-block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #007AFF;
            text-decoration: none;
        }
        .rss-link:hover { text-decoration: underline; }
    

/* --- guide-page specifics (article layout; body is visible, not collapsed) --- */
.guide-breadcrumb { font-size: 0.8rem; color: #999; margin-top: 1rem; }
.guide-breadcrumb a { color: #007AFF; }
.guide-intro { font-size: 1.05rem; color: #444; line-height: 1.7; margin: 0.75rem 0 1.25rem; }
.guide-audio { background: #f0f0f0; border-radius: 10px; padding: 0.9rem 1.1rem; margin: 1.25rem 0; }
.guide-audio audio { width: 100%; }
.guide-body { font-size: 0.95rem; color: #333; line-height: 1.75; }
.guide-body p { margin-bottom: 0.9rem; }
.guide-body .section-heading { font-weight: 700; color: #1d1d1f; margin-top: 1.5rem; margin-bottom: 0.35rem; font-size: 1.05rem; }
.guide-cta { background: #007AFF; border-radius: 12px; padding: 1.4rem; text-align: center; margin: 2rem 0 1rem; }
.guide-cta p { color: #fff; margin: 0 0 0.6rem; font-weight: 600; }
.guide-cta a.btn { display: inline-block; background: #fff; color: #007AFF; font-weight: 700; padding: 0.55rem 1.4rem; border-radius: 999px; }
.guide-related { margin: 1.5rem 0; font-size: 0.9rem; }
.guide-related a { color: #007AFF; }

/* --- pricing band / sales pitch (lifted from index.html) --- */
.band { background: #fff; padding: 0; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-top: 2rem; }
.band-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 360px; }
.band-text { padding: 2.5rem 1.5rem 2.5rem 2rem; text-align: left; }
.band-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.band-text p { font-size: 0.9rem; color: #333; line-height: 1.6; max-width: 480px; }
.band-pricing { background: #007AFF; color: #fff; }
.band-pricing .band-text h2 { color: #fff; }
.band-pricing .band-text p { color: rgba(255,255,255,0.85); }
.band-pricing .band-text .price-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.band-pricing .price-list { padding: 2.5rem 2rem 2.5rem 1.5rem; }
.band-pricing .price-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem; }
.band-pricing .price-row:last-child { border-bottom: none; }
.band-pricing .price-row .tier-price { font-weight: 700; }
@media (max-width: 700px) {
    .band-inner { grid-template-columns: 1fr; min-height: auto; }
    .band-text { padding: 2rem 1.5rem 1rem; text-align: center; }
    .band-text p { margin-left: auto; margin-right: auto; }
    .band-pricing .price-list { padding: 0 1.5rem 2rem; }
}
