.schedule-heading {
  font-size: 21px;
  font-weight: 400;
}

.event-group-container {
  margin-top: 1rem;
}

.event-group {
  border-radius: 0;
}

.event-item {
  display: flex;
  align-items: center;
  font-size: 31px;
  color: #000;
  padding: 15px 60px 15px 25px;
  background: var(--section-bg-color);
  border-bottom: 1px solid #dfe3e7;
}

.event-item:last-child {
  border-bottom: 0;
}

.event-item-action {
  display: flex;
  justify-content: flex-end;
}

.event-item .date {
  font-size: 31px;
  text-align: center;
}

.event-item .day {
  font-size: 19px;
  text-align: center;
}
.event-item-time, .event-item-location {
  text-align: center;
}

.events-btn-buy {
  background: var(--btn-secondary-color);
  color: #fff;
  min-width: 205px;
  max-width: 205px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 48px;
  border-radius: var(--radius);
  font-size: 21px;
  transition: background .18s ease, transform .18s ease;
}

.events-btn-buy:hover,
.events-btn-buy:focus {
  background: #03181d;
}

.events-btn-buy:active {
  transform: translateY(1px);
}

.event-item:hover {
  background: #eef2f6;
}

.event-item.is-past {
  opacity: .55;
}

@media (max-width:1100px) {
  .event-item {
    gap: 26px;
    padding: 16px 28px;
  }

  .event-item-action {
    width: 160px;
  }

  .events-btn-buy {
    padding: 0 36px;
    height: 44px;
  }
}

@media (max-width:880px) {
  .event-item {
    gap: 18px;
  }

  .event-item-time {
    width: 70px;
  }
}

@media (max-width:720px) {
  .event-item {
    flex-wrap: wrap;
    padding: 18px 22px;
    gap: 14px;
  }

  .event-item-date {
    width: auto;
    display: flex;
    gap: 12px;
  }

  .event-item-time {
    order: 3;
    width: auto;
  }

  .event-item-location {
    order: 4;
    width: 100%;
  }

  .event-item-action {
    order: 5;
    width: 100%;
    justify-content: flex-start;
  }

  .events-btn-buy {
    width: 100%;
    padding: 0 28px;
  }
}