.events-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(70, 62, 63, 0.9), rgba(70, 62, 63, 0.9)), url('/import/divyaability-foundation-city-skyline-banner-1376x271.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.event-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    transition: all 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.event-img-box {
    height: 220px;
    background: #fdfaf7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-img-box img {
    max-height: 90%;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img-box img {
    transform: scale(1.1);
}

.event-date-badge {
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.event-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.event-meta i {
    color: var(--gold);
    width: 20px;
}

.under-dev-banner {
    background: #fdfaf7;
    border-radius: 40px;
    padding: 60px;
    border: 2px dashed #eee;
    text-align: center;
}
