.article-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #001f3f, #004b8d);
    color: #fff;
    border-radius: 18px;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.25);
}

.article-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.article-hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.article-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-section h2 {
    color: #003366;
    margin-top: 0;
    font-size: 2rem;
}

.article-section p {
    margin: 0.85rem 0;
}

.article-meta {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    color: #c2d9ff;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2.4rem;
    }

    .article-content {
        padding: 1.75rem;
    }
}
