.article-container {
    max-width: 1110px;
    margin: 4rem auto 60px;
    padding: 0 2rem;
}

.container-tight {
    max-width: 1000px;
    margin: 0 auto;
}

.section-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0;
}

.article-header {
    margin-bottom: 4rem;
    text-align: center;
}

.article-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.2;
    margin: 1.5rem 0;
    color: var(--text-main);
}

.article-meta {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

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

.article-content .lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 3rem;
}

.featured-image {
    width: 100%;
    border-radius: 20px;
    margin: 2rem 0 4rem;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--border);
}

.article-content h2 {
    font-size: 2.25rem;
    margin: 4rem 0 1.5rem;
    color: var(--text-main);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.article-content ul {
    margin: 0 0 2rem 1.5rem;
}

.article-content li {
    margin-bottom: 1rem;
}

blockquote {
    font-size: 1.75rem;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    color: var(--text-main);
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
    margin: 4rem 0;
}

.highlight-box {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary);
}

pre {
    background: #0f172a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin: 2.5rem 0;
    overflow-x: auto;
}

code {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    color: #38bdf8;
}

.article-footer {
    margin-top: 6rem;
}

.article-footer hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin-bottom: 2rem;
}

.article-footer p {
    color: var(--text-muted);
}

.article-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.article-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.content-block-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-top: 6rem;
}

.content-block-stacked .text-content {
    max-width: 800px;
}

.content-block-stacked .visual-container img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.article-hero .hero-image-main {
    aspect-ratio: 1.2 / 1;
}
