/* =========================================================
   Executive Hunter Blog — base styles (EH brand)
   Palette + typography aligned to executivehunter.eu
   ========================================================= */

:root {
    /* EH brand tokens */
    --eh-gold: #c9a84c;
    --eh-gold-hover: #e0c067;
    --eh-gold-soft: rgba(201, 168, 76, 0.08);
    --eh-gold-line: rgba(201, 168, 76, 0.25);

    --eh-navy: #0b1320;
    --eh-navy-2: #111b2c;
    --eh-ink: #121630;          /* primary text */
    --eh-cream: #F0EEE9;        /* light section bg */

    /* blog-semantic aliases */
    --blog-bg: #ffffff;
    --blog-text: var(--eh-ink);
    --blog-muted: rgba(18, 22, 48, 0.6);
    --blog-border: #e7e3d8;
    --blog-soft: #faf9f6;

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", system-ui, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--blog-bg);
    color: var(--blog-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    color: inherit;
}

/* ============================================================
   HEADER — light / editorial, gold accents
   ============================================================ */

.site-header {
    border-bottom: 1px solid var(--blog-border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
}

/* thin gold hairline under the header */
.site-header::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(to right, var(--eh-gold), rgba(201, 168, 76, 0.15) 60%, transparent);
}

.site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-brand {
    color: var(--eh-ink);
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-brand small {
    margin-top: 3px;
    color: var(--eh-gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--blog-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.site-nav a:hover {
    color: var(--eh-gold);
}

/* ============================================================
   GENERIC PAGE WRAPPERS
   ============================================================ */

.blog-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 24px;
}

.article-layout {
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================================
   ARTICLE HERO
   ============================================================ */

.article-hero {
    margin-bottom: 34px;
}

.article-category {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 7px 16px;
    border-radius: 0;
    border: 1px solid var(--eh-gold-line);
    background: var(--eh-gold-soft);
    color: var(--eh-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.article-category:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.6);
}

.article-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--eh-ink);
    font-size: clamp(40px, 5.2vw, 60px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.article-excerpt {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--blog-muted);
    font-size: 20px;
    line-height: 1.65;
}

.article-date,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    color: var(--blog-muted);
    font-size: 14px;
}

.article-meta span,
.article-date span {
    display: inline-flex;
    align-items: center;
}

/* ============================================================
   FEATURED IMAGE
   ============================================================ */

.article-featured-image {
    margin: 36px auto;
    max-width: 960px;
    overflow: hidden;
    border: 1px solid var(--blog-border);
    border-top: 2px solid var(--eh-gold-line);
    background: var(--blog-soft);
}

.article-featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */

.article-content-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-content {
    color: var(--eh-ink);
    font-size: 18px;
    line-height: 1.85;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    font-family: var(--font-display);
    margin-top: 44px;
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--eh-ink);
}

.article-content h1 { font-size: 40px; }
.article-content h2 { font-size: 32px; }
.article-content h3 { font-size: 25px; }

.article-content p {
    margin: 0 0 22px;
}

.article-content a {
    color: var(--eh-gold);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--eh-gold-line);
}

.article-content a:hover {
    border-bottom-color: var(--eh-gold);
}

.article-content ul,
.article-content ol {
    padding-left: 26px;
    margin: 0 0 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    margin: 32px 0;
    padding: 22px 28px;
    border-left: 3px solid var(--eh-gold);
    background: var(--eh-cream);
    color: #3a3f54;
}

.article-content code {
    background: #f1efe8;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-content pre {
    background: var(--eh-navy);
    color: #e5e7eb;
    padding: 22px;
    border-radius: 0;
    border-top: 2px solid var(--eh-gold-line);
    overflow: auto;
    margin: 28px 0;
}

.article-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* ============================================================
   TAGS
   ============================================================ */

.article-tags {
    max-width: 760px;
    margin: 46px auto 0;
    padding: 28px 24px 0;
    border-top: 1px solid var(--blog-border);
}

.article-tags-title {
    color: var(--eh-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.article-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid var(--blog-border);
    background: #fff;
    color: var(--eh-ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.article-tag:hover {
    border-color: var(--eh-gold);
    background: var(--eh-gold-soft);
    color: var(--eh-gold);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--blog-border);
    background: var(--eh-cream);
}

.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--blog-muted);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--eh-ink);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 700px) {
    .site-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        gap: 14px;
    }

    .blog-page {
        padding: 32px 18px;
    }

    .article-hero h1 {
        font-size: 38px;
    }

    .article-excerpt {
        font-size: 18px;
    }

    .article-content {
        font-size: 17px;
    }
}
