/* =========================================
   EVENTS
========================================= */

.events{
    padding:120px 8%;
    background:#ffffff;
}

.events-grid{
    display:flex;
    flex-direction:column;
    gap:35px;
    margin-top:60px;
}

.event-card{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:35px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.event-date{
    background:#0D1B2A;
    color:#fff;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:140px;
}

.event-date h3{
    font-size:48px;
    font-family:'Playfair Display',serif;
    line-height:1;
}

.event-date span{
    margin-top:8px;
    letter-spacing:3px;
    color:#D4AF37;
    font-weight:600;
}

.event-content h3{
    font-size:30px;
    font-family:'Playfair Display',serif;
    color:#0D1B2A;
    margin-bottom:12px;
}

.location{
    color:#D4AF37;
    font-weight:600;
    margin-bottom:18px;
}

.event-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.event-content .btn{
    display:inline-block;
}

/* Mobile */

@media(max-width:768px){

    .event-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .event-date{
        width:120px;
        margin:auto;
    }

}