/* ============================================
   AVM THEME — Anne V Mühlethaler
   ============================================ */

/* --- Fonts --- */
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../fonts/ABCArizonaFlare-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../fonts/ABCArizonaFlare-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ABCArizonaSans';
    src: url('../fonts/ABCArizonaSans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ABCArizonaSans';
    src: url('../fonts/ABCArizonaSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --- Variables --- */
:root {
    --color-bg: #ffffff;
    --color-text: #1a1918;
    --color-text-light: #6b6560;
    --color-accent-crimson: #9B2335;
    --color-accent-gold: #C9A84C;
    --color-border: #e8e4df;
    --font-serif: 'ABCArizonaFlare', Georgia, serif;
    --font-sans: 'ABCArizonaSans', system-ui, sans-serif;
    --sidebar-width: 220px;
    --content-max: 860px;
    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 2rem;
    --spacing-l: 3rem;
    --spacing-xl: 5rem;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; -webkit-font-smoothing: antialiased; }
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ============================================
   SITE WRAPPER
   ============================================ */
.site-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ============================================
   SIDEBAR
   ============================================ */
.site-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    padding: 2.5rem 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid var(--color-border);
}

.site-logo a {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

/* Nav sections */
.nav-section {
    margin-bottom: 1.8rem;
}

.nav-section-label {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.6rem;
    display: block;
}

.nav-section ul {
    list-style: none;
}

.nav-section ul li {
    margin-bottom: 0.2rem;
}

.nav-section ul li a {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    transition: color 0.15s ease;
}

.nav-section ul li a:hover {
    color: var(--color-accent-crimson);
    text-decoration: none;
}

.nav-section ul li a.active {
    color: var(--color-accent-crimson);
}

/* Subscribe link */
.nav-subscribe {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.nav-subscribe a {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav-subscribe a:hover {
    color: var(--color-accent-gold);
    text-decoration: none;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-main {
    flex: 1;
    padding: 2.5rem 3rem 4rem 3rem;
    max-width: 900px;
}

/* ============================================
   HOMEPAGE
   ============================================ */
.home-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.home-intro {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    max-width: 560px;
}

/* Homepage two-column layout */
.home-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Explore column */
.home-explore h2,
.home-connect h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.home-explore h2 {
    color: var(--color-accent-crimson);
}

.home-connect h2 {
    color: var(--color-accent-gold);
}

.home-explore ul,
.home-connect ul {
    list-style: none;
}

.home-explore ul li,
.home-connect ul li {
    margin-bottom: 0;
}

.home-explore ul li a,
.home-connect ul li a {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--color-text);
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.15s ease;
}

.home-explore ul li a .label {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-crimson);
    margin-right: 0.5rem;
}

.home-explore ul li a:hover,
.home-connect ul li a:hover {
    color: var(--color-accent-crimson);
    text-decoration: none;
}

.home-connect ul li a:hover {
    color: var(--color-accent-gold);
}

/* Spotlight / right column */
.home-spotlight {
    border-left: 1px solid var(--color-border);
    padding-left: 3rem;
}

.spotlight-label {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.spotlight-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.spotlight-item:last-child {
    border-bottom: none;
}

.spotlight-item .item-tag {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-crimson);
    margin-bottom: 0.4rem;
    display: block;
}

.spotlight-item h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.spotlight-item h3 a {
    text-decoration: none;
    transition: color 0.15s ease;
}

.spotlight-item h3 a:hover {
    color: var(--color-accent-crimson);
}

.spotlight-item p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.spotlight-item .read-more {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color-text);
    text-decoration: underline;
    transition: color 0.15s ease;
}

.spotlight-item .read-more:hover {
    color: var(--color-accent-crimson);
}

.spotlight-item .item-date {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    display: block;
}

/* ============================================
   PAGE HEADER (non-home pages)
   ============================================ */
.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.2rem;
    color: var(--color-accent-crimson);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.page-header .page-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ============================================
   POST / PAGE CONTENT
   ============================================ */
.post-content {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.post-content h2 { font-size: 1.5rem; }
.post-content h3 { font-size: 1.2rem; }

.post-content p { margin-bottom: 1.4rem; }

.post-content a {
    color: var(--color-accent-crimson);
    text-decoration: underline;
}

.post-content figure {
    margin: 2rem 0;
}

.post-content figure img {
    width: 100%;
}

.post-content figcaption {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    text-align: center;
}

.post-content blockquote {
    border-left: 2px solid var(--color-accent-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-text-light);
}

/* ============================================
   POST LIST (blog, read, listen etc)
   ============================================ */
.post-list {
    list-style: none;
}

.post-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
}

.post-list-item:first-child {
    border-top: 1px solid var(--color-border);
}

.post-list-item a {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: none;
    flex: 1;
    transition: color 0.15s ease;
}

.post-list-item a:hover {
    color: var(--color-accent-crimson);
}

.post-list-item .post-date {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

/* ============================================
   FEATURED POST (top of post list)
   ============================================ */
.featured-post {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.featured-post .featured-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-crimson);
    margin-bottom: 0.5rem;
    display: block;
}

.featured-post h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.featured-post h2 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.15s ease;
}

.featured-post h2 a:hover {
    color: var(--color-accent-crimson);
}

.featured-post .excerpt {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   SINGLE POST HEADER
   ============================================ */
.post-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.post-header .post-tag {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-crimson);
    margin-bottom: 0.5rem;
    display: block;
}

.post-header h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.post-header .post-meta {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.post-feature-image {
    margin-bottom: 2.5rem;
}

.post-feature-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
}

.pagination a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.15s ease;
}

.pagination a:hover {
    color: var(--color-accent-crimson);
}

.pagination .page-number {
    color: var(--color-text-light);
    font-size: 0.75rem;
}

/* ============================================
   CONTACT / EMBED PAGES
   ============================================ */
.contact-page .savvycal-embed {
    margin-top: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 4rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--color-text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer a:hover {
    color: var(--color-text);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .site-sidebar {
        display: none;
    }

    .site-main {
        padding: 1.5rem;
    }

    .home-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-spotlight {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 2rem;
    }
}

@media (max-width: 600px) {
    .site-main {
        padding: 1.2rem;
    }

    .home-header {
        margin-bottom: 2rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-logo {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
}

.mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text);
}

@media (max-width: 900px) {
    .mobile-nav {
        display: flex;
    }

    .site-wrapper {
        padding-top: 3.5rem;
    }
}

/* ============================================
   GHOST CARD REQUIRED CLASSES
   ============================================ */
.kg-width-wide {
    margin-left: -3rem;
    margin-right: -3rem;
}

.kg-width-full {
    margin-left: calc(-3rem - var(--sidebar-width));
    margin-right: -3rem;
    width: 100vw;
    max-width: 100vw;
}

.kg-image { max-width: 100%; }

.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

.kg-bookmark-card { border: 1px solid var(--color-border); padding: 1rem; }
.kg-bookmark-title { font-family: var(--font-sans); font-weight: 400; }
.kg-bookmark-description { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-text-light); }

.kg-toggle-card { border: 1px solid var(--color-border); padding: 1rem; margin-bottom: 1rem; }
.kg-toggle-heading { cursor: pointer; font-family: var(--font-sans); }
.kg-toggle-content { margin-top: 0.75rem; }

.kg-callout-card { background: #f9f7f4; padding: 1.2rem 1.5rem; margin: 1.5rem 0; display: flex; gap: 1rem; }
.kg-callout-text { font-family: var(--font-sans); font-size: 0.95rem; }

.kg-video-card { margin: 1.5rem 0; }
.kg-audio-card { margin: 1.5rem 0; }

.kg-embed-card { margin: 1.5rem 0; }
.kg-embed-card iframe { width: 100%; }

@media (max-width: 900px) {
    .kg-width-wide { margin-left: -1.5rem; margin-right: -1.5rem; }
    .kg-width-full { margin-left: -1.5rem; margin-right: -1.5rem; width: calc(100% + 3rem); }
}

/* ============================================
   POST ARTICLE
   ============================================ */

/* Breadcrumb */
.post-breadcrumb {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.post-breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.15s ease;
}

.post-breadcrumb a:hover {
    color: var(--color-accent-crimson);
}

.post-breadcrumb span:last-child {
    color: var(--color-text);
}

.breadcrumb-sep {
    color: var(--color-border);
}

/* Post title + deck */
.post-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1rem;
    max-width: 680px;
}

.post-deck {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    max-width: 620px;
    font-style: italic;
}

.post-meta {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.post-tag-link {
    color: var(--color-accent-crimson);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* Feature image */
.post-feature-image {
    margin-bottom: 2.5rem;
}

.post-feature-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.post-feature-image figcaption {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.6rem;
    text-align: center;
}

/* Body content */
.gh-content {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
    max-width: 660px;
}

.gh-content p { margin-bottom: 1.4rem; }

.gh-content h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.gh-content h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.gh-content a {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: var(--color-border);
    transition: text-decoration-color 0.15s ease;
}

.gh-content a:hover {
    text-decoration-color: var(--color-accent-crimson);
}

/* Pull quote - Ghost blockquote */
.gh-content blockquote {
    position: relative;
    margin: 2.5rem 0;
    padding: 0 0 0 2rem;
    border-left: none;
}

.gh-content blockquote::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-accent-gold);
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    line-height: 1;
}

.gh-content blockquote p {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.gh-content blockquote cite,
.gh-content blockquote footer {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-style: normal;
}

/* Lists */
.gh-content ul,
.gh-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.4rem;
}

.gh-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

/* HR */
.gh-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2.5rem 0;
}

/* Post footer */
.post-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.post-tag-pill {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-decoration: none;
    border: 1px solid var(--color-border);
    padding: 0.3rem 0.75rem;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.post-tag-pill:hover {
    border-color: var(--color-accent-crimson);
    color: var(--color-accent-crimson);
}

/* Related posts */
.related-posts {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.related-label {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-item:hover h4 {
    color: var(--color-accent-crimson);
}

.related-image {
    width: 100%;
    padding-top: 60%;
    background-size: cover;
    background-position: center;
    margin-bottom: 0.75rem;
    background-color: var(--color-border);
}

.related-tag {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-crimson);
    display: block;
    margin-bottom: 0.3rem;
}

.related-item h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.3rem;
    transition: color 0.15s ease;
}

.related-date {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.7rem;
    color: var(--color-text-light);
}

@media (max-width: 600px) {
    .post-title { font-size: 1.7rem; }
    .related-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .gh-content { font-size: 1rem; }
    .post-breadcrumb { display: none; }
}

/* ============================================
   MOBILE OVERLAY MENU
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 500;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.is-open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.25rem;
    line-height: 1;
}

.mobile-menu-body {
    padding: 2rem 1.5rem;
    flex: 1;
}

.mobile-nav-section {
    margin-bottom: 2rem;
}

.mobile-nav-label {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0.75rem;
}

.mobile-nav-section ul {
    list-style: none;
}

.mobile-nav-section ul li a {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    line-height: 2;
    transition: color 0.15s ease;
}

.mobile-nav-section ul li a:hover {
    color: var(--color-accent-crimson);
}

.mobile-subscribe {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 0.1rem;
    margin-top: 1rem;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.mobile-subscribe:hover {
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

/* ============================================
   POST TAG LABEL (above title)
   ============================================ */
.post-tag-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-crimson);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.post-tag-label:hover {
    text-decoration: underline;
}

/* Fix subheadings to full black */
.gh-content h2,
.gh-content h3,
.gh-content h4 {
    color: var(--color-text) !important;
}

/* ============================================
   AUDIO CARD
   ============================================ */
.kg-audio-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--color-border);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0;
    background: #faf8f6;
}

.kg-audio-card audio {
    width: 100%;
}

.kg-audio-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.kg-audio-player-container {
    flex: 1;
    min-width: 0;
}

.kg-audio-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kg-audio-player {
    width: 100%;
}

/* ============================================
   VIDEO CARD
   ============================================ */
.kg-video-card {
    margin: 2rem 0;
    position: relative;
}

.kg-video-card video {
    width: 100%;
    display: block;
}

/* YouTube / Vimeo embeds */
.kg-embed-card {
    margin: 2rem 0;
}

.kg-embed-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* ============================================
   WATCH PAGE — video grid
   ============================================ */
.watch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.watch-item .kg-embed-card {
    margin: 0 0 0.75rem 0;
}

.watch-item h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.watch-item p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

@media (max-width: 600px) {
    .kg-audio-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .kg-audio-thumbnail {
        width: 60px;
        height: 60px;
    }
    .watch-grid {
        grid-template-columns: 1fr;
    }
}
