.page{

    padding:40px;

}

.academy-hero{

    margin:40px 0 60px;

}

.academy-banner{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    border-radius:24px;

    padding:48px;

    box-shadow:0 18px 45px rgba(37,99,235,.25);

}

.academy-banner h2{

    font-size:42px;

    font-weight:800;

    margin:0 0 20px;

}

.academy-banner p{

    font-size:18px;

    line-height:1.9;

    max-width:900px;

    opacity:.96;

}

.academy-section{

    margin-top:70px;

}

.academy-section h2{

    font-size:30px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:30px;

    padding-bottom:12px;

    border-bottom:3px solid #2563eb;

}

.academy-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

    gap:26px;

}

.academy-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:22px;

    padding:28px;

    box-shadow:0 10px 28px rgba(15,23,42,.05);

    transition:.25s;

    cursor:pointer;

    position:relative;

    overflow:hidden;

}

.academy-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

}

.academy-card:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 50px rgba(37,99,235,.15);

    border-color:#93c5fd;

}

.academy-card h3{

    margin:8px 0 18px;

    font-size:22px;

    color:#111827;

    font-weight:700;

}

.academy-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;

}

.academy-card::after{

    content:"Read More →";

    display:block;

    margin-top:24px;

    color:#2563eb;

    font-weight:700;

    font-size:14px;

}

@media(max-width:1200px){

    .academy-banner{

        padding:36px;

    }

    .academy-banner h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .page{

        padding:20px;

    }

    .academy-banner{

        padding:28px;

    }

    .academy-banner h2{

        font-size:28px;

    }

    .academy-banner p{

        font-size:16px;

    }

    .academy-grid{

        grid-template-columns:1fr;

    }

}