.events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event-container {
    width: 280px;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
}

.event-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Ensures the whole container is clickable */
}

.event-link:hover .event-container {
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.2); /* Slight shadow effect on hover */
}

.event-content {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px;
}

.event-title {
    font-size: 1.0em;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-date-time,
.event-location {
    font-size: 0.8em;
}

.event-location-single {
    font-size: 1em;
}