﻿

/* ==============================
  section- article
============================== */
.article-section {
    background-color: #F7F9FC;
}

.section-header h2 {
    font-weight: 700;
   /* color: #1F2937;*/
}

.section-header p {
    color: #6B7280;
}


.article-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .3s ease;
}


    .article-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }


.article-icon {
    font-size: 40px;
    margin-bottom: 20px;
}


.article-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}


.article-card p {
    color: #6B7280;
    line-height: 1.7;
}


.read-more {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
}