#jep-events {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-size: 14px;
}
#events {
    max-width: 100%;
    margin: 0 auto;
}
.event {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.event h3 { 
    margin-top: 0;
    font-size: 16px;
    font-weight: bold;
}
.event .city {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.event img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
#error { display: none; color: red; }
@media (max-width: 1200px) {
    .event { width: calc(33.333% - 20px); }
}
@media (max-width: 900px) {
    .event { width: calc(50% - 15px); }
}
@media (max-width: 600px) {
    .event { width: 100%; }
}
