/* =========================================================
   INFORMATIVE ARTICLES
========================================================= */

.info-article-intro{
    padding: 64px 0 32px;
}

.info-article-card{
    max-width: 1100px;
}

.info-article-badge{
    display: inline-flex;
    align-items: center;

    padding: .55rem 1rem;

    border-radius: 999px;

    background: rgba(37,99,235,.08);

    border: 1px solid rgba(37,99,235,.12);

    color: #1d4ed8;

    font-size: .9rem;
    font-weight: 700;

    margin-bottom: 1.5rem;
}

.info-article-card h1{
    margin: 0 0 1.5rem;

    font-size: 3.5rem;
    line-height: 1.08;

    color: #0f172a;

    max-width: 1200px;
}

.info-article-lead{
    margin: 0;

    max-width: 1100px;

    font-size: 1.3rem;
    line-height: 1.8;

    color: #475569;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.info-article-content{
    padding: 1rem 0 5rem;
}

.article-content-wrapper{
    max-width: 1200px;
}

.article-content{
    max-width: 920px;
}

.article-content p{
    margin: 0 0 1.75rem;

    font-size: 1.12rem;
    line-height: 1.95;

    color: #334155;
}


/* =========================================================
   ARTICLE LINKS
========================================================= */

.article-content a{
    color: #1d4ed8;

    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid rgba(29,78,216,.22);

    transition:
        color .2s ease,
        border-color .2s ease;
}

.article-content a:hover{
    color: #dc2626;

    border-bottom-color:
        rgba(220,38,38,.35);
}


/* =========================================================
   ARTICLE META
========================================================= */

.info-article-meta{
    margin-top: 14px;

    font-size: .95rem;

    color: #64748b;

    font-weight: 500;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.article-featured-image{
    display: block;

    width: 100%;
    max-width: 760px;

    margin: 2.5rem auto 3rem;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);
}

.article-featured-image img{
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   CTA BOX
========================================================= */

.article-cta-box{
    margin-top: 56px;

    padding: 48px;

    background: #ffffff;

    border: 1px solid rgba(220,38,38,.14);
    border-left: 5px solid #dc2626;

    border-radius: 28px;

    box-shadow:
        0 10px 30px rgba(15,23,42,.04);
}

.article-cta-box h2{
    margin: 0 0 16px;

    font-size: 2.2rem;
    line-height: 1.15;

    color: #0f172a;
}

.article-cta-box p{
    margin: 0 0 28px;

    font-size: 1.08rem;
    line-height: 1.7;

    color: #475569;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.article-cta-box .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 14px;

    font-size: .98rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.article-cta-box .btn-primary{
    background: #2563eb;

    color: #ffffff !important;

    border: 1px solid #2563eb;

    box-shadow:
        0 8px 18px rgba(37,99,235,.18);
}

.article-cta-box .btn-primary:hover{
    transform: translateY(-2px);

    background: #1d4ed8;

    box-shadow:
        0 12px 24px rgba(37,99,235,.24);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px){

    .info-article-card h1{
        font-size: 2.8rem;
    }

    .info-article-lead{
        font-size: 1.15rem;
    }
}

@media (max-width: 768px){

    .info-article-intro{
        padding: 48px 0 24px;
    }

    .info-article-card h1{
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .info-article-lead{
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .article-content p{
        font-size: 1rem;
        line-height: 1.85;
    }

    .article-featured-image{
        margin: 2rem auto 2.5rem;

        border-radius: 22px;
    }

    .article-cta-box{
        padding: 32px 24px;
    }

    .article-cta-box h2{
        font-size: 1.8rem;
    }
}