/* ===============================
   EVENTS HERO
================================= */

.events-hero{
    background:#0F172A;
    color:#fff;
    border-radius:18px;
    padding:60px 40px;
    margin-bottom:40px;
    text-align:center;
}

.events-label{
    display:inline-block;
    background:#1E293B;
    color:#84CC16;
    padding:8px 18px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:20px;
}

.events-hero h1{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.events-hero p{
    max-width:750px;
    margin:0 auto 35px;
    color:#CBD5E1;
    font-size:18px;
    line-height:1.8;
}

.events-hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    background:#F97316;
    color:#fff;
}

.hero-btn-secondary{
    background:#22C55E;
    color:#fff;
}
/*==================================
EVENT CARD
==================================*/

.ce-event-card{

    display:flex;
    gap:25px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:30px;
    
    width:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.ce-event-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.ce-event-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.ce-event-content{

    padding:25px;

    flex:1;

}

.ce-event-title{

    font-size:28px;

    line-height:1.4;

    margin-bottom:18px;

}

.ce-event-meta{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:20px;

    color:#475569;
}
    .meta-item{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:30px;
    font-size:14px;
    margin-right:10px;
    margin-bottom:10px;
}

.meta-item strong{
    color:#0F172A;
}



.ce-event-btn{

    display:inline-block;

    background:#16A34A;

    color:#fff;

    padding:12px 20px;

    border-radius:8px;

    text-decoration:none;

}
.ce-event-category{

    display:inline-block;

    background:#E8F5E9;

    color:#15803D;

    font-size:13px;

    font-weight:600;

    padding:6px 12px;

    border-radius:30px;

    margin-bottom:15px;

}
.ce-featured-badge{

    display:inline-block;

    background:#F59E0B;

    color:#fff;

    padding:6px 12px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:10px;

}
.ce-status{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
}

.ce-status.upcoming{
    background:#DCFCE7;
    color:#15803D;
}

.ce-status.today{
    background:#FEF3C7;
    color:#B45309;
}

.ce-status.completed{
    background:#E5E7EB;
    color:#374151;
}
