/* Site-wide layout: navigation, cookie banner, prose */
.site-header-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 3rem;
}
.site-header-logo {
    justify-self: start;
    text-decoration: none;
    color: #fff;
}
.site-header-logo img {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.site-header-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.site-header-brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}
.site-header-brand-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .site-header-brand-tag {
        display: none;
    }
    .site-header-brand-name {
        font-size: 1.2rem;
    }
}
.site-header-links {
    justify-self: center;
    gap: 2.25rem;
}
.site-header-links a {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.site-header-end {
    justify-self: end;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 2.5rem;
}
.site-nav-mobile-panel {
    display: none;
}
.site-nav-mobile-panel.open {
    display: block;
}
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem 1.25rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
#cookie-consent.visible {
    transform: translateY(0);
}
#cookie-consent a {
    color: #93c5fd;
    text-decoration: underline;
}
.prose-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.prose-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.prose-content p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.prose-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #4b5563;
    margin-bottom: 1rem;
}
.ad-slot-placeholder {
    min-height: 0;
    text-align: center;
}
