h3 {
  line-height: 1.5;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
}

#eventsContainer {
  display: flex;
  flex-direction: column;
  gap: var(--defaultGap);
}

.event {
  background-color: var(--elementColorAlt);
  padding: var(--defaultGap);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: calc(var(--defaultGap) / 2);
  border-radius: 5px;
  font-family: 'SourceSerif4', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

dl {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.dlSectionOuter {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.dlSectionOuter:first-of-type {
  align-items: flex-start;
}

.dlSectionInner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2px;
}

dt {
  font-weight: 600;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
}

dd {
  font-weight: 300;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
  line-height: 1.5;
}

.event a {
  position: relative;
  font-weight: 400;
  width: fit-content;
  cursor: pointer;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
  line-height: 1.5;
}

.event a:focus-visible {
  outline: var(--focusColor) solid var(--focusSize);
  outline-offset: var(--focusOffset);
}

.event a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .1em;
  width: 100%;
  height: 1px;
  background-color: var(--fontColor);
}

.event a:visited {
  color: var(--fontColor);
}

  @media (max-width: 800px) {
    dl {
      flex-wrap: wrap;
      gap: var(--defaultGap);
    }

    .dlSectionOuter {
      flex: 1;
      align-items: center;
    }
  }

  @media (max-width: 800px) AND (orientation: portrait) {
    .dlSectionOuter {
      align-items: center;
    }
  }

  @media (max-width: 500px) {
    dl {
      flex-direction: column;
      gap: calc(var(--defaultGap) / 2);
    }

    .dlSectionOuter {
      width: 100%;
      align-items: flex-start !important;
    }
  }