html,
body {
  margin: 0;
}

body {
  font-family: var(--font-stack-sans);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 3ch;
  justify-content: space-between;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 1ch;
  font-size: max(1rem, 1.5dvmin + 1rem);
  line-height: 1.25;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}

li {
  list-style: none;
}

h1 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  text-decoration: underline;
}

a {
  color: inherit;
  text-decoration: none;
}

a.active,
a:hover {
  text-decoration: underline;
}

.page-header {
  display: flex;
  justify-content: space-between;
  column-gap: 1ch;
}

.page-header a {
  color: var(--color-text);
}

.logo {
  height: 3lh;
}

.page-top,
.page-main,
.colophon,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 1ch;
}

.locale-switcher {
  display: flex;
  flex-direction: column;
  /* row-gap: 0.5em; */
  flex-wrap: wrap;
}

.locale-switcher abbr {
  text-decoration: none;
}

.page-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
