.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: transparent;
    color: white;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mm-event-media {
  flex: 0 0 112px; /* fixed square block on desktop */
  max-width: 112px;
}

.mm-event-media .event-flyer {
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* 1:1 aspect */
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background: #111;
}

/* Force image into the square box */
.mm-event-media .event-flyer {
  height: auto;
  padding-bottom: 0;
  aspect-ratio: 1 / 1;
}


.event-date-wrapper {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    min-width: 100px;
}

.event-date {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.event-time {
    display: block;
    font-size: 14px;
    color: #ccc;
}

.event-details {
    flex-grow: 1;
    padding-left: 15px;
    font-size: 18px;
    font-weight: bold;
}

.event-description {
    font-size: 14px;
    color: #bbb;
    margin-top: 5px;
}

.event-ticket {
    font-size: 16px;
    text-align: right;
}

.buy-tickets,
.aanmelden-link {
    text-decoration: none;
    color: #4dabff;
    font-weight: bold;
}

.buy-tickets:hover,
.aanmelden-link:hover {
    color: #1a8cff;
}

.sold-out {
    color: orange;
    font-weight: bold;
}

.free-event {
    color: green;
    font-weight: bold;
}

.canceled-event {
    color: red;
    font-weight: bold;
}
