.event-list-row {
  display: grid;
  grid-template-columns: 100px 1fr 355px;
  gap: 30px;
  align-items: start;
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.event-list-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* Date Column */
.event-list-date {
  text-align: center;
  color: #333;
  text-transform: uppercase;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 15px 8px;
}

.event-list-month {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

.event-list-day {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #5387ce;
}

.event-list-year {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Content */
.event-list-time {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #111;
}

.event-list-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #a93b3b;
  text-transform: uppercase;
}

.event-list-title a {
  color: #a93b3b;
  text-decoration: none;
}

.event-list-title a:hover {
  color: #5387ce;
  text-decoration: underline;
}

.event-list-location {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.event-list-description {
  font-size: 2rem;
  line-height: 1.6;
  color: #111;
}

/* Image */
.event-list-image img {
  width: 355px;
  height: 245px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* Tablet */
@media (max-width: 900px) {
  .event-list-row {
    grid-template-columns: 90px 1fr;
  }

  .event-list-image {
    grid-column: 2;
  }

  .event-list-image img {
    width: 100%;
    height: auto;
  }

  .event-list-title {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .event-list-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .event-list-date {
    text-align: left;
    margin-bottom: 15px;
  }

  .event-list-image {
    grid-column: auto;
  }

  .event-list-day {
    font-size: 3rem;
  }

  .event-list-title {
    font-size: 2rem;
  }

  .event-list-time,
  .event-list-location,
  .event-list-description {
    font-size: 1.5rem;
  }
}