/* =========================================================
   PROGRAMS PAGE
========================================================= */

.programs-page .section-head {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.program-card {
    position: relative;
    overflow: hidden;

    padding: 30px;

    background: #ffffff;

    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;

    box-shadow: 0 12px 30px rgba(15,23,42,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,.24);
    box-shadow: 0 18px 42px rgba(15,23,42,.09);
}

.program-period {
    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;
    padding: 7px 12px;

    background: #eff6ff;
    color: #2563eb;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.program-card h3 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

.program-card p {
    margin: 0;

    color: #64748b;

    font-size: 15px;
    line-height: 1.75;
}

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

@media (max-width: 900px) {
    .program-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .program-card {
        padding: 24px;
    }
}
