/* ===========================================
   EVENTS
=========================================== */

.events-section{

    background:#f8fafc;

}

.event-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.event-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.event-image{

    position:relative;

    overflow:hidden;

}

.event-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.event-card:hover img{

    transform:scale(1.08);

}

.event-date{

    position:absolute;

    top:20px;

    right:20px;

    width:70px;

    height:70px;

    background:#0b4ea2;

    color:#fff;

    border-radius:15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.event-date span{

    font-size:24px;

    line-height:1;

}

.event-body{

    padding:30px;

}

.event-category{

    display:inline-block;

    background:#eaf3ff;

    color:#0b4ea2;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

.event-body h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.event-body p{

    color:#666;

    line-height:1.8;

}

.event-meta{

    display:flex;

    justify-content:space-between;

    margin-top:20px;

    border-top:1px solid #eee;

    padding-top:20px;

    font-size:14px;

    color:#666;

}

.event-meta i{

    color:#0b4ea2;

    margin-right:6px;

}

@media(max-width:768px){

    .event-meta{

        flex-direction:column;

        gap:10px;

    }

}