.events-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-grey-lightest);
  padding: var(--space-double) 0;
}

.events-section .events-section-heading {
  font-size: 1.5rem;
  color: var(--color-grey-dark);
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .events-section .events-section-heading {
    color: var(--color-lehigh-brown);
  }
}

.events-section .events-listings {
  display: flex;
  flex-direction: column;
  margin: var(--space-double) 0 0 0;
}

@media only screen and (min-width: 769px) {
  .events-section .events-listings {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

/* Stray "/* dfj */" comment preserved verbatim from the Sass source --
   harmless, meaning unknown, not corrected per this migration's
   "preserve pre-existing artifacts" convention (same category as
   image-focused-slide's stale "<!-- end hover-box-text -->" comment,
   Phase 5b). */
.events-section > a {
  color: var(--color-black);
  font-weight: bold;
  margin: var(--space-quadruple) 0 0 0;
  padding: 0 0 var(--space-one-half) 0;
  background-image: linear-gradient(var(--color-teal), var(--color-teal));
  background-size: 0 1px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all .2s ease-out;
}

.events-section > a:hover,
.events-section > a:focus {
  text-decoration: none;
  background-size: 100% 1px, auto;
}

@media only screen and (min-width: 769px) {
  .events-section .event {
    margin: 0;
  }

  .events-section .event:nth-of-type(2) {
    margin: 0 var(--space-triple);
  }
}
