
/* ==========================================================
 *   ExotElectronics
 *   Learning Path Stylesheet
 *   File: /assets/css/learning-path.css
 *   ========================================================== */


/* ==========================================================
 *   Section
 *   ========================================================== */

.learning-path{

    padding:80px 20px;

    background:#f8fafc;

}


/* ==========================================================
 *   Section Header
 *   ========================================================== */

.section-header{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.section-header h2{

    margin:0;

    font-size:2.3rem;

    font-weight:800;

    color:#111827;

}

.section-header p{

    margin-top:18px;

    font-size:1.1rem;

    color:#6b7280;

    line-height:1.7;

}


/* ==========================================================
 *   Grid
 *   ========================================================== */

.learning-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}


/* ==========================================================
 *   Card
 *   ========================================================== */

.learning-card{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    text-decoration:none;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:35px;

    transition:.3s;

    color:#111827;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.learning-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    border-color:#2563eb;

}


/* ==========================================================
 *   Icon
 *   ========================================================== */

.learning-icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    border-radius:16px;

    background:#eff6ff;

    margin-bottom:25px;

}


/* ==========================================================
 *   Title
 *   ========================================================== */

.learning-card h3{

    margin:0;

    font-size:1.35rem;

    font-weight:700;

}


/* ==========================================================
 *   Description
 *   ========================================================== */

.learning-card p{

    margin:18px 0;

    color:#6b7280;

    line-height:1.7;

    flex:1;

}


/* ==========================================================
 *   Link
 *   ========================================================== */

.learning-link{

    font-weight:700;

    color:#2563eb;

}


/* ==========================================================
 *   Responsive
 *   ========================================================== */

@media (max-width:768px){

    .learning-path{

        padding:60px 20px;

    }

    .section-header{

        margin-bottom:40px;

    }

    .section-header h2{

        font-size:1.9rem;

    }

    .learning-card{

        padding:28px;

    }

}

