.event-list {
  color: #fff;
  display: flex;
  flex-direction: column;
}

.main_color .event-list a h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
}

.event-list article {
    padding: 0 0 25px 0;
    border-bottom: 1px solid #fff;
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.event-list article:last-of-type {
    border-bottom: none;
}

.main_color .event-list a:hover {
    text-decoration: none;
}

.event-list .event-date {
    color: #76bc20;
    font-size: 1rem;
    font-weight: 700;
}

.event-list a.read-more-button {
    padding: 5px 25px;
    color: #fff;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 400ms;
    -webkit-transition: all 400ms;
}

.event-list a.read-more-button:hover {
    background: #fff;
    color: #691f74;
    border-color: #691f74;
}

@media screen and (max-width: 1000px) {
  .event-list article {
    flex-direction: column;
    align-items: self-start;
  }
  .event-list a.read-more-button {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {


}