.event-list-section {
  padding: 50px 0;
}
.event-list-section .event-group {
  margin-bottom: 20px;
}
.event-list-section .event-group:last-of-type {
  margin: 0;
}
.event-list-section .event-group .event-group-title {
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.event-list-section .event-group .event-group-title .line {
  height: 1px;
  flex: 1;
  display: block;
  background-color: #ddd;
}
.event-list-section .event-group .event-item {
  display: flex;
  column-gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dotted #ddd;
}
.event-list-section .event-group .event-item:last-of-type {
  margin-bottom: 0;
  border: none;
}
.event-list-section .event-group .event-item .item-image {
  order: 1;
}
.event-list-section .event-group .event-item .item-image img {
  max-width: 100%;
}
.event-list-section .event-group .event-item .item-content {
  order: 0;
  display: flex;
  column-gap: 1rem;
}
.event-list-section .event-group .event-item .item-content .date {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding: 0.5rem;
  font-size: 0.9em;
  width: 60px;
  height: 60px;
}
.event-list-section .event-group .event-item .item-content .date .dn {
  font-weight: bold;
  font-size: 1.6em;
}
.event-list-section .event-group .event-item .item-content .details .time {
  margin-bottom: 0.5rem;
}
.event-list-section .event-group .event-item .item-content .details .title {
  font-size: 1.8rem;
  font-weight: bold;
  color: tomato;
}
.event-list-section .event-group .event-item .item-content .details .sub-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: tomato;
}
.event-list-section .event-group .event-item .item-content .details .text {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.event-list-section .event-group .event-item .item-content .details .action {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

@media only screen and (max-width: 991px) {
  .event-list-section .event-group .event-item {
    flex-direction: column;
    row-gap: 1rem;
  }
  .event-list-section .event-group .event-item .item-image {
    order: 0;
  }
  .event-list-section .event-group .event-item .item-content {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */