﻿html, body {
    position: relative;
    background-color: #fff;
    background-image: url('/Content/images/backgrounds/cignal-load-bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.article-container {
    max-width: 1312px;
    margin: 40px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 45px;
    width: 100%;
}

.article-header {
    /*  text-align: center;*/
    font-size: var(--font-size-hero-title);
    font-weight: 800;
    font-family: var(--font-family-head);
    color: var(--clr-text-black);
}

.article-lead {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
}

.article-body {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
    padding: 30px;
}

/* --- Responsive styles copied from hero-article.css --- */
@media screen and (max-width: 1400px) {
    .article-container {
        max-width: 90%;
    }
}

@media screen and (max-width: 992px) {
    .article-header {
        font-size: var(--font-size-hero-title-md);
        line-height: 1.2;
    }
}

@media screen and (max-width: 768px) {
    .article-container {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .article-header {
        font-size: var(--font-size-hero-title-sm);
        margin-top: 8px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    .article-container {
        padding: 10px 14px;
    }

    .article-header {
        font-size: var(--font-size-hero-title-xs);
        line-height: 1.2;
        margin-top: 6px;
        margin-bottom: 16px;
    }
}
