/*
 * ============================================
 * TIM VÜLLERS - PERSÖNLICHE WEBSITE
 * Farbschema: Salbei & Erde
 * ============================================
 */

/* ----------------------------------------
   SCHRIFTARTEN
   ---------------------------------------- */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v39-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v39-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v39-latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v19-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v19-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v19-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v19-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------
   CSS CUSTOM PROPERTIES (FARBSCHEMA)
   ---------------------------------------- */
:root {
    /* Salbei-Töne */
    --sage-deep: #4A5648;
    --sage-primary: #5A6858;
    --sage-medium: #7D8C7A;
    --sage-light: #9AA898;
    --sage-pale: #C8D0C6;
    --sage-whisper: #E8EBE7;

    /* Erdige Akzente */
    --earth-dark: #6B5A48;
    --earth-primary: #8B7355;
    --earth-light: #A89880;

    /* Warme neutrale Töne */
    --linen: #F5F3EE;
    --cream-white: #FDFCF9;
    --warm-gray: #D8D4CC;
    --taupe: #9A958C;

    /* Text-Hierarchie */
    --text-primary: #3A3D39;
    --text-secondary: #5A5D58;
    --text-muted: #7A7D78;

    /* Semantische Zuweisungen */
    --background: var(--cream-white);
    --accent: var(--sage-primary);
    --accent-hover: var(--sage-medium);
    --accent-secondary: var(--earth-primary);
    --border-light: var(--warm-gray);
}

/* ----------------------------------------
   RESET & BASIS
   ---------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
}

/* ----------------------------------------
   TYPOGRAFIE
   ---------------------------------------- */
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ----------------------------------------
   LINKS
   ---------------------------------------- */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ----------------------------------------
   LISTEN
   ---------------------------------------- */
ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ----------------------------------------
   BLOCKQUOTES (ZITATE)
   ---------------------------------------- */
blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    margin: 2rem 0 2rem 2rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--sage-medium);
    position: relative;
}

blockquote p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    margin-bottom: 0.75rem;
}

blockquote p:last-child {
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    color: var(--sage-deep);
    margin-top: 1rem;
}

blockquote cite::before {
    content: '— ';
}

/* ----------------------------------------
   CONTAINER & LAYOUT
   ---------------------------------------- */
.container {
    max-width: 100%;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* ----------------------------------------
   ZURÜCK-NAVIGATION (Unterseiten)
   ---------------------------------------- */
.back-nav {
    position: fixed;
    top: 2rem;
    left: calc(50% - 400px + 2rem);
    z-index: 100;
}

.back-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(58, 61, 57, 0.08);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(58, 61, 57, 0.12);
}

.back-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ----------------------------------------
   FLOATING HEADER (About-Seite)
   ---------------------------------------- */
.page-header {
    position: fixed;
    top: 2rem;
    right: calc(50% - 400px + 2rem);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(58, 61, 57, 0.08);
    transition: all 0.3s ease;
}

.header-profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: url('media/tim.jpg') center/cover;
    background-color: var(--sage-pale);
    flex-shrink: 0;
}

.header-info {
    white-space: nowrap;
}

.header-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.header-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* ----------------------------------------
   CONTENT SECTIONS
   ---------------------------------------- */
.content-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.4s; }
.content-section:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------
   INFO-BOX (Kontaktseite)
   ---------------------------------------- */
.info-box {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--warm-gray);
    border-left: 2px solid var(--sage-medium);
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sage-medium) 0%, var(--earth-light) 100%);
}

.info-box p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ----------------------------------------
   SKILLS GRID (About-Seite)
   ---------------------------------------- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--warm-gray);
    transition: border-color 0.3s ease;
}

.skill-category:hover {
    border-color: var(--sage-pale);
}

.skill-category h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--sage-medium);
    margin-top: 0.75rem;
    transition: width 0.3s ease;
}

.skill-category:hover h4::after {
    width: 50px;
}

.skill-list {
    list-style: none;
    margin-top: 1rem;
    margin-left: 0;
}

.skill-list li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 0;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.125rem;
}

.skill-list li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ----------------------------------------
   TIMELINE (About-Seite)
   Variante: Horizontale Trennlinien mit 2-Spalten-Grid
   ---------------------------------------- */
.timeline {
    margin-top: 2rem;
}

/* Einzelner Eintrag: 2-Spalten-Grid */
.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-light);
    transition: background-color 0.2s ease;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.timeline-item:last-child {
    border-bottom: 1px solid var(--border-light);
}

.timeline-item:hover {
    background-color: var(--linen);
}

/* Linke Spalte: Datum */
.timeline-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.4;
    padding-top: 0.2rem;
}

.timeline-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-company {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.timeline-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-description ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.timeline-description li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* ----------------------------------------
   STARTSEITE - HERO
   ---------------------------------------- */
.hero-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: none;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: url('media/tim.jpg') center/cover;
    background-color: var(--sage-pale);
    box-shadow:
        0 12px 40px rgba(90, 104, 88, 0.12),
        0 0 0 1px var(--sage-pale);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-image:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(90, 104, 88, 0.18),
        0 0 0 1px var(--sage-medium);
}

.decorative-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-medium) 0%, var(--earth-light) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.hero-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ----------------------------------------
   HAUPTNAVIGATION (Startseite)
   ---------------------------------------- */
.navigation {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.nav-item {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-primary) 0%, var(--earth-primary) 100%);
    transition: all 0.3s ease;
}

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

.nav-item:hover::after {
    width: 100%;
}

.nav-item:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ----------------------------------------
   UNTERSEITEN BODY (mit Padding für Header)
   ---------------------------------------- */
.page-with-header {
    padding-top: 100px;
}

/* ----------------------------------------
   RESPONSIVE DESIGN
   ---------------------------------------- */
@media (max-width: 768px) {
    .page-with-header {
        padding-top: 60px;
    }

    .page-header,
    .back-nav {
        position: static;
        margin: 2rem auto;
        max-width: fit-content;
    }

    .page-header {
        margin-bottom: 1rem;
    }

    main {
        padding: 0 1rem 4rem;
    }

    .hero-main {
        padding: 1rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .navigation {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    /* Timeline: Bei schmalem Screen einspaltiges Layout */
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .timeline-date {
        padding-top: 0;
        margin-bottom: 0.25rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navigation {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-description {
        margin-bottom: 2rem;
    }

    .skill-category {
        padding: 1.5rem;
    }

    h1 {
        margin-bottom: 1.5rem;
    }

    h2 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

/* ----------------------------------------
   FALLBACKS
   ---------------------------------------- */
@supports not (backdrop-filter: blur(10px)) {
    .page-header,
    .back-link {
        background: rgba(253, 252, 249, 0.98);
        box-shadow: 0 4px 20px rgba(58, 61, 57, 0.15);
    }
}

/* ----------------------------------------
   ACCESSIBILITY
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ----------------------------------------
   FOOTER / KLEINE HINWEISE
   ---------------------------------------- */
.text-small {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-small strong {
    font-weight: 500;
}

.mt-3 {
    margin-top: 3rem;
}

/* ----------------------------------------
   UTILITY: VERSTECKTE ELEMENTE
   ---------------------------------------- */
.hidden {
    display: none;
}

/* ----------------------------------------
   BLOG-SPEZIFISCHE STYLES
   ---------------------------------------- */
/* Post Meta */
.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-category {
    font-weight: 500;
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    background: var(--sage-whisper);
    border-radius: 4px;
}

.post-date {
    font-weight: 300;
}

.post-ai-badge {
    font-weight: 500;
    color: var(--earth-primary);
    padding: 0.25rem 0.75rem;
    background: var(--linen);
    border-radius: 4px;
    border: 1px solid var(--warm-gray);
}

.ai-info-link {
    font-size: 0.75rem;
    text-decoration: underline;
}

/* Post Tags */
.post-tags {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0.5rem 0 1.5rem;
}

.post-tag {
    font-weight: 400;
}

/* Post Subtitle */
.post-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* Post Content */
.post-content {
    margin: 2rem 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Post Footer */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-dates,
.post-author {
    margin: 0.5rem 0;
}

/* Post Separator */
.post-separator {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid var(--border-light);
}

/* Blog Post in Overview */
.blog-post {
    margin-bottom: 3rem;
}

.blog-post h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.blog-post h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.pagination-link {
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: var(--sage-whisper);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: var(--sage-pale);
    transform: translateY(-2px);
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ----------------------------------------
   CODE HIGHLIGHTING
   ---------------------------------------- */

/* Inline Code */
code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    background: var(--sage-whisper);
    color: var(--sage-deep);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    border: 1px solid var(--sage-pale);
}

/* Code Blocks */
.highlight {
    background: var(--linen);
    border-left: 4px solid var(--sage-primary);
    border-radius: 4px;
    padding: 1rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.highlight pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    line-height: 1.5;
}

.highlight code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-primary);
}

/* Rouge Syntax Highlighting - Salbei & Erde Theme */
.highlight .c { color: var(--sage-medium); font-style: italic; } /* Comment */
.highlight .cm { color: var(--sage-medium); font-style: italic; } /* Comment.Multiline */
.highlight .cp { color: var(--sage-medium); font-weight: bold; } /* Comment.Preproc */
.highlight .c1 { color: var(--sage-medium); font-style: italic; } /* Comment.Single */
.highlight .cs { color: var(--sage-medium); font-style: italic; } /* Comment.Special */

.highlight .k { color: var(--sage-deep); font-weight: bold; } /* Keyword */
.highlight .kc { color: var(--sage-deep); font-weight: bold; } /* Keyword.Constant */
.highlight .kd { color: var(--sage-deep); font-weight: bold; } /* Keyword.Declaration */
.highlight .kn { color: var(--sage-deep); font-weight: bold; } /* Keyword.Namespace */
.highlight .kp { color: var(--sage-deep); font-weight: bold; } /* Keyword.Pseudo */
.highlight .kr { color: var(--sage-deep); font-weight: bold; } /* Keyword.Reserved */
.highlight .kt { color: var(--earth-primary); font-weight: bold; } /* Keyword.Type */

.highlight .s { color: var(--earth-dark); } /* String */
.highlight .sb { color: var(--earth-dark); } /* String.Backtick */
.highlight .sc { color: var(--earth-dark); } /* String.Char */
.highlight .sd { color: var(--earth-dark); font-style: italic; } /* String.Doc */
.highlight .s2 { color: var(--earth-dark); } /* String.Double */
.highlight .se { color: var(--earth-primary); font-weight: bold; } /* String.Escape */
.highlight .sh { color: var(--earth-dark); } /* String.Heredoc */
.highlight .si { color: var(--earth-primary); } /* String.Interpol */
.highlight .sx { color: var(--earth-dark); } /* String.Other */
.highlight .sr { color: var(--earth-primary); } /* String.Regex */
.highlight .s1 { color: var(--earth-dark); } /* String.Single */
.highlight .ss { color: var(--earth-primary); } /* String.Symbol */

.highlight .m { color: var(--accent-secondary); } /* Number */
.highlight .mf { color: var(--accent-secondary); } /* Number.Float */
.highlight .mh { color: var(--accent-secondary); } /* Number.Hex */
.highlight .mi { color: var(--accent-secondary); } /* Number.Integer */
.highlight .mo { color: var(--accent-secondary); } /* Number.Oct */

.highlight .n { color: var(--text-primary); } /* Name */
.highlight .na { color: var(--sage-deep); } /* Name.Attribute */
.highlight .nb { color: var(--sage-primary); } /* Name.Builtin */
.highlight .nc { color: var(--earth-primary); font-weight: bold; } /* Name.Class */
.highlight .nd { color: var(--sage-primary); } /* Name.Decorator */
.highlight .ne { color: var(--earth-dark); font-weight: bold; } /* Name.Exception */
.highlight .nf { color: var(--sage-deep); } /* Name.Function */
.highlight .nn { color: var(--earth-primary); } /* Name.Namespace */
.highlight .nv { color: var(--text-primary); } /* Name.Variable */

.highlight .o { color: var(--text-secondary); } /* Operator */
.highlight .ow { color: var(--sage-deep); font-weight: bold; } /* Operator.Word */

.highlight .err { color: #d32f2f; background: #ffebee; } /* Error */
