body {
    font-family: "Inter", sans-serif;
    background-color: #121416;
    color: #e2e2e5;
}

h1,
h2,
h3,
h4 {
    font-family: "Space Grotesk", sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 24;
}

.signal-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: #e9c176;
    box-shadow: 0 0 18px rgba(233, 193, 118, 0.85);
    animation: signal-pulse 2s ease-in-out infinite;
}

@keyframes signal-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.65;
    }
}

.grid-mesh {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
}

.intel-panel {
    background-color: #1a1c1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-card {
    transition: background-color 300ms ease, transform 300ms ease;
}

.story-card:hover {
    background-color: #282a2c;
    transform: translateY(-4px);
}

.story-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.story-media {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.story-media img {
    transition: transform 700ms ease, filter 700ms ease;
}

.story-card:hover .story-media img,
.featured-story:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.featured-story {
    position: relative;
    overflow: hidden;
    background-color: #1a1c1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 260ms ease;
}

.featured-story:hover {
    border-color: rgba(233, 193, 118, 0.35);
}

.featured-story img {
    transition: transform 700ms ease, filter 700ms ease;
}

.reference-shot {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.top-nav-link {
    display: inline-flex;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
    transition: color 200ms ease, border-color 200ms ease;
}

.top-nav-link:hover {
    color: #ffffff;
}

.top-nav-link.is-active {
    color: #e9c176;
    border-bottom-color: #e9c176;
}

.site-logo {
    height: 3rem !important;
    width: auto;
    max-width: 18rem;
    display: block;
    transform: none;
    transform-origin: left center;
    object-fit: contain;
    background-color: #121416;
    filter: invert(1) brightness(3.35) contrast(1.06);
    mix-blend-mode: screen;
    opacity: 0.96;
}

.site-header {
    transition: transform 260ms ease, opacity 260ms ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.article-panel {
    padding: 2rem;
    background-color: #1a1c1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-list {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #c4c7c7;
    line-height: 1.75;
}

.article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 9999px;
    background: #e9c176;
    box-shadow: 0 0 10px rgba(233, 193, 118, 0.45);
}

.article-kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e9c176;
}

.article-callout {
    background-color: #1e2022;
    border-left: 2px solid #e9c176;
    padding: 1.5rem;
}

.article-callout p:last-child {
    margin-bottom: 0;
}

.article-link {
    color: #e9c176;
    text-decoration: underline;
    text-decoration-color: rgba(233, 193, 118, 0.4);
    text-underline-offset: 4px;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.article-link:hover {
    color: #dcc497;
    text-decoration-color: rgba(220, 196, 151, 0.58);
}

@media (max-width: 767px) {
    .article-panel {
        padding: 1.5rem;
    }
}
