html {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  color: #1d2433;
  background: #f7f8fb;
}

a {
  color: #165d8f;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid #d9dee8;
  background: #ffffff;
}

.brand {
  color: #1d2433;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

main {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

section,
article {
  margin-bottom: 36px;
}

.hero {
  padding: 30px 0 12px;
}

.eyebrow {
  margin-bottom: 8px;
  color: #667085;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  margin: 0 0 16px;
  font-size: 2.4rem;
}

h2 {
  margin-top: 32px;
  font-size: 1.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 12px;
  border: 1px solid #d9dee8;
  text-align: left;
  vertical-align: top;
}

.event-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.event-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #d9dee8;
  background: #ffffff;
}

.event-list span {
  color: #667085;
}

@media (max-width: 640px) {
  .site-header,
  .event-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 2rem;
  }
}
