/*=================================
 Mission Always Event Manager
==================================*/

.maw-events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:40px 0;
}

.maw-event-card{
    background:#181818;
    border:1px solid rgba(201,148,70,.18);
    border-radius:12px;
    overflow:hidden;
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.maw-event-card:hover{
    transform:translateY(-8px);
    border-color:#C99446;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.maw-event-image{
    overflow:hidden;
}

.maw-event-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.maw-event-card:hover .maw-event-image img{
    transform:scale(1.08);
}

.maw-event-content{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/* Title */

.maw-title{
    margin:0 0 15px;
    color:#C99446;
    line-height:1.4;
    font-weight:700;
}

/* Date + Time */

.maw-event-meta{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
    flex-wrap:wrap;
    color:#fff;
    margin-bottom:12px;
}

.maw-event-meta span{
    display:flex;
    align-items:center;
    gap:8px;
}

.maw-event-meta i{
    color:#C99446;
}

/* Venue */

.maw-event-venue{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    margin-bottom:18px;
}

.maw-event-venue i{
    color:#C99446;
}

/* Description */

.maw-event-content p{
    color:#d6d6d6;
    margin-bottom:25px;
    flex:1;
}

/* Button */

.maw-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    background:#C99446;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    transition:.35s;
    font-weight:600;
}

.maw-btn:hover{
    background:#fff;
    color:#111;
}

/* Responsive */

@media(max-width:991px){

.maw-events-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.maw-events-grid{
    grid-template-columns:1fr;
}

.maw-event-image img{
    height:220px;
}

.maw-event-content{
    padding:18px;
}

.maw-event-meta{
    gap:12px;
}

}