:root {
  color-scheme: light;
  --bg: #ededed;
  --text: #161616;
  --muted: #6d6d6d;
  --link: #161616;
  --underline: #161616;
  --border: rgba(0, 0, 0, 0.16);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 16vh 24px 72px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  display: grid;
  grid: 1fr / minmax(auto, 64ch);
  justify-content: center;
}
main {
  max-width: 64ch;
  margin: 0 auto;
}
.path {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--text);
}
.divider {
  margin: 18px 0;
  color: var(--muted);
}
.list-table {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 8px 18px;
  max-width: 680px;
}
.list-table a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dotted var(--underline);
  padding-bottom: 1px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.list-table a:hover,
.list-table a:focus {
  border-bottom-style: solid;
}
.list-date {
  color: var(--muted);
}
h1 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}
h2 {
  margin: 32px 0 12px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 14px;
  color: var(--text);
}
ul {
  margin: 0 0 18px 20px;
  padding: 0;
  color: var(--text);
}
li + li {
  margin-top: 8px;
}
a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dotted var(--underline);
  padding-bottom: 1px;
}
a:hover,
a:focus {
  border-bottom-style: solid;
}
.muted {
  color: var(--muted);
}
.lead {
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 520px) {
  body {
    padding: 12vh 18px 56px;
  }
  .list-table {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
  }
}
