/* ─── Base ────────────────────────────────────────────────────────────────── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #e6e6e6;
}

a {
    color: #fff;
}

/* ─── Navbar logo ─────────────────────────────────────────────────────────── */
.logo {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    vertical-align: middle;
}

.logo img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
    filter: invert(1) brightness(2);
    transform: translateY(2px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.brand-text {
    display: inline-block;
    line-height: 1;
    margin: 0;
    vertical-align: middle;
    color: inherit;
    font-weight: 400;
    text-transform: none;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
footer {
    background-color: #0a0a0a;
    color: white;
    padding: 48px 0 28px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,.08);
}

footer .container,
footer .container-fluid {
    text-align: left;
}

.site-footer {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
}

.site-footer__tagline {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 6px;
}

.site-footer__brand {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
}

.site-footer__cols {
    display: flex;
    gap: 4rem;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.site-footer__col-label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 10px;
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__col ul li {
    margin-bottom: 6px;
}

.site-footer__col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
}

.site-footer__col ul li a:hover {
    color: #fff;
}

.site-footer__copy {
    font-size: 12px;
    color: rgba(255,255,255,.25);
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 20px;
    margin: 0;
}

/* ─── Editorial continue-reading / related-concepts links ─────────────────── */
.editorial-links {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.editorial-links__label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.30);
    margin-bottom: 12px;
}

.editorial-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.editorial-links__list li a {
    font-size: 14px;
    color: rgba(255,255,255,.50);
    text-decoration: none;
    transition: color .15s;
}

.editorial-links__list li a:hover {
    color: #c8922a;
}

/* ─── Home page section links ─────────────────────────────────────────────── */
.hero-section-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 28px;
}

.hero-section-links a {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    border-bottom: 1px solid rgba(200,146,42,.3);
    padding-bottom: 2px;
    transition: color .15s, border-color .15s;
}

.hero-section-links a:hover {
    color: #c8922a;
    border-color: #c8922a;
}
