/* =========================================
   BODY
========================================= */

body{

    margin:0;

    font-family:Arial;

    background:#f5f7ff;

    color:#111827;

}

/* =========================================
   ARTICLE
========================================= */

.article-container{

    max-width:900px;

    margin:60px auto 60px auto;

    background:white;

    padding:40px;

    border-radius:24px;

    box-shadow:0 8px 25px rgba(0,0,0,0.06);

}



.article-container h1{

    font-size:42px;

    margin-top:0;

    margin-bottom:10px;

}



.article-meta{

    color:#64748b;

    font-size:14px;

    margin-bottom:30px;

}



.article-content{

    font-size:18px;

    line-height:1.9;

    color:#334155;

}


/* =========================================
   ARTICLE CTA
========================================= */

.article-cta{

    margin-top:50px;

    margin-bottom:50px;

    padding:40px;

    background:linear-gradient(
    135deg,
    #f8faff,
    #eef4ff
    );

    border:1px solid #dbe7ff;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(37,99,235,.08);

}

.article-cta h2{

    color:#2563eb;

    margin-bottom:20px;

    font-size:36px;

}

.article-cta p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    color:#444;

}

.article-cta a{

    color:#2563eb;

    font-weight:700;

    text-decoration:none;

}

.article-cta a:hover{

    text-decoration:underline;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:30px;

    flex-wrap:wrap;

}

.cta-btn-outline{

    padding:15px 28px;

    border:2px solid #2563eb;

    border-radius:12px;

    color:#2563eb !important;

    background:white;

    font-weight:700;

    text-decoration:none !important;

    transition:.3s;

}

.cta-btn-outline:hover{

    transform:translateY(-2px);

}

.cta-btn-primary{

    padding:15px 28px;

    border-radius:12px;

    background:#2563eb;

    color:white !important;

    font-weight:700;

    text-decoration:none !important;

    transition:.3s;

}

.cta-btn-primary:hover{

    opacity:.9;

    transform:translateY(-2px);

}

.cta-note{

    margin-top:25px;

    color:#666;

    font-size:15px;

}

/* TABLE */

table{

    width:100%;

    border-collapse:collapse;

    margin:25px 0;

    overflow-x:auto;

    display:block;

}

th,
td{

    border:1px solid #ddd;

    padding:12px;

    text-align:left;

}

th{

    background:#2563eb;

    color:white;

}

/* IMAGE */

.article-content img{

    max-width:100%;

    height:auto;

    border-radius:12px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

.article-container{

    margin:20px 10px;

    padding:20px;

    border-radius:16px;

}

.article-container h1{

    font-size:28px;

    line-height:1.3;

}

.article-content{

    font-size:16px;

    line-height:1.8;

}

.article-meta{

    font-size:13px;

    line-height:1.8;

}

.article-cta{

    padding:25px 15px;

}

.article-cta h2{

    font-size:26px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-btn-outline,
.cta-btn-primary{

    width:100%;

    box-sizing:border-box;

}

}
