.cae-events-section {
    max-width: 1200px;
    margin: 40px auto;
    font-family: inherit;
}
.cae-events-section h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
}
.cae-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.cae-event-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.2s;
}
.cae-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.cae-event-date {
    color: #d9534f;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cae-event-title {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #222;
}
.cae-event-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.cae-register-btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.cae-register-btn:hover {
    background: #555;
    color: #fff;
}
.cae-no-events {
    text-align: center;
    color: #777;
    font-style: italic;
}