.article-hero {
    background: #0f172a;
    color: white;
    padding: 130px 0 72px;
}

.article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    gap: 3rem;
    align-items: center;
}

.article-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1.25rem;
}

.article-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.article-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
}

.article-image {
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.article-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-body {
    background: #f8fafc;
    padding: 82px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 720px) 280px;
    gap: 4rem;
    align-items: start;
}

.article-content {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: clamp(2rem, 5vw, 4rem);
}

.article-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 400;
    line-height: 1.2;
    color: #0f172a;
    margin: 2.25rem 0 1rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p,
.article-content li {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.85;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.25rem;
    margin: 0 0 1.5rem;
}

.article-callout {
    border-left: 3px solid #2563eb;
    background: #eff6ff;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    color: #1e3a8a;
    font-weight: 600;
}

.article-sidebar {
    position: sticky;
    top: 105px;
}

.article-card {
    background: #0f172a;
    color: white;
    border-radius: 4px;
    padding: 1.5rem;
}

.article-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.article-card p {
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.article-card a {
    display: inline-block;
    color: white;
    background: #2563eb;
    padding: 0.75rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
}

.article-more {
    margin-top: 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 1.25rem;
}

.article-more a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.cs-article-card a {
    color: inherit;
    text-decoration: none;
}

.cs-article-card .cs-badge-inline {
    color: #2563eb;
    border-color: #bfdbfe;
}

@media (max-width: 900px) {
    .article-hero-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}
