.events-section { background: var(--bg); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.event-img {
    aspect-ratio: 16/12;
    overflow: hidden; position: relative;
}
.event-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
}
.event-img-placeholder.blue-gr { background: linear-gradient(135deg, #1a56db, #3b82f6); }
.event-img-placeholder.red-gr { background: linear-gradient(135deg, #e02b2b, #f87171); }
.event-img-placeholder.green-gr { background: linear-gradient(135deg, #16a34a, #4ade80); }
.event-date-badge {
    position: absolute; top: 14px; left: 14px;
    background: #fff; border-radius: 12px; padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.event-date-badge .day {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px; font-weight: 900; color: var(--blue); line-height: 1;
}
.event-date-badge .month {
    font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase;
}
.event-card-body { padding: 22px; }
.event-cat {
    display: inline-block; padding: 4px 12px;
    background: var(--blue-light); color: var(--blue);
    border-radius: 50px; font-size: 11px; font-weight: 700;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.event-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; font-weight: 800; color: var(--dark);
    margin-bottom: 10px; line-height: 1.3;
}
.event-card p { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.btn-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--blue); font-weight: 700; font-size: 13px;
    text-decoration: none; transition: gap 0.2s;
}
.btn-more:hover { gap: 10px; }
.btn-more i { font-size: 11px; }

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.events-more-wrap {
    text-align:center; margin-top:40px;
}