.cem-event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cem-event-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.cem-event-item h3 {
    margin-top: 0;
}

.cem-event-item p {
    margin: 10px 0;
}

.cem-event-item a {
    color: #5B5B5B !important;
}

.cem-event-item a:hover {
    text-decoration: underline;
}



/* Hide author and date on single event page */
.single-event .entry-title,
.single-event .byline,
.single-event .posted-on {
    display: none;
}

.cem-event-item .cem-more-info-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #white;
    color: #5B5B5B;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
	font-weight: normal !important;
}


