/* Single event tweaks: ensure image and details align nicely */
.simple-event-single .entry-content img { max-width:100%; height:auto; }
.simple-event-single .event-right img { box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
/* Events list - styled like the screenshot */
.simple-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-events-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}

.event-date-box {
  width: 72px;
  min-width: 72px;
  height: 72px;
  border: 3px solid #420c31; /* dark purple border */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Roboto Slab", Sans-serif;
  color: #836088;
  background: #fff;
}

.event-date-box .month {
  font-size: 12px;
  letter-spacing: 1px;
  color: #420c31;
  text-transform: uppercase;
}

.event-date-box .day {
  font-size: 26px;
  font-weight: 700;
  color: #836088;
  line-height: 1;
}

.event-right {
  flex: 1;
  min-width: 0;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
  color: #836088;
  margin-bottom: 6px;
  line-height: 1.15;
}

.event-title a {
  color: inherit;
  text-decoration: none;
}

.event-time {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* Venue displayed under timing and wrapped in parentheses (brackets) */
.event-venue {
  font-size: 14px;
  color: #420c31;
}

/* Optional: container heading style similar to screenshot */
.simple-events-heading {
  font-family: "Roboto Slab", Sans-serif;
  font-size: 36px;
  color: #836088;
  margin-bottom: 18px;
}