.event-list {
    max-width: 900px;
    margin: 0 auto;
}
.event-item {
    display: flex;
    gap: 20px;
    border: 2px solid #2B386C;
    padding: 16px;
    margin: 15px 0;
    border-radius: 10px;
    background-color: #f4f6fa;
}
.event-image img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}
.event-content {
    flex: 1;
}
.event-date, .event-time, .event-title {
    color: #2B386C;
    font-weight: bold;
}
.event-desc {
    color: #333;
    margin-top: 8px;
}