:root {
    --post-blue: #002868;
    --post-red: #bf0a30;
    --post-gold: #d4af37;
    --post-dark: #1f2933;
    --post-light: #f7f8fa;
    --post-white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--post-dark);
    background: var(--post-light);
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    background: var(--post-blue);
    color: var(--post-white);
    font-size: 0.9rem;
}

.topbar-inner,
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar a {
    color: var(--post-white);
    text-decoration: none;
    margin-left: 1rem;
}

.site-header {
    background: var(--post-white);
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.site-brand {
    text-decoration: none;
    color: var(--post-blue);
}

.brand-title {
    display: block;
    font-weight: 800;
    font-size: 1.35rem;
}

.brand-subtitle {
    display: block;
    color: var(--post-red);
    font-weight: 700;
}

.hero {
    min-height: 440px;
    background: linear-gradient(135deg, var(--post-blue), var(--post-red));
    color: var(--post-white);
}

.hero-overlay {
    min-height: 440px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 820px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    margin: 0 0 1rem;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    margin: 0.4rem;
}

.btn-primary {
    background: var(--post-gold);
    color: var(--post-blue);
}

.btn-secondary {
    background: var(--post-white);
    color: var(--post-blue);
}

.content-section,
.quicklinks-section,
.component-section {
    padding: 3rem 0;
}

.site-footer {
    background: var(--post-blue);
    color: var(--post-white);
    padding: 2rem 0;
    text-align: center;
}
/* ==========================================================
   Header & Navigation
   ========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--post-white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
    min-height: 86px;
}

.site-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.main-navigation ul {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--post-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.main-navigation a:hover,
.main-navigation .active > a {
    color: var(--post-red);
}

.topbar {
    padding: 0.45rem 0;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-links a {
    margin-left: 0;
}