/* ==========================================================
   ACADEMIC PROGRAMS
========================================================== */

.home-programs{
    padding:100px 0;
    background:#fff;
}

/* Grid */

.programs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.program-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:40px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

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

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Icon */

.program-icon{
    width:80px;
    height:80px;

    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:20px;

    background:#7B1113;
    color:#fff;

    font-size:2rem;
}

/* Typography */

.program-card h3{
    margin-bottom:15px;
    font-size:1.6rem;
    color:#111;
}

.program-card p{
    margin-bottom:25px;
    line-height:1.8;
    color:#666;
}

.program-card a{
    color:#7B1113;
    text-decoration:none;
    font-weight:600;
    transition:color .3s ease;
}

.program-card a:hover{
    color:#5d0d0f;
    text-decoration:underline;
}