*,
::after,
::before {
  box-sizing: border-box;
}
a,
b,
body,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
li,
main,
p,
s,
time,
ul {
  background: rgba(0, 0, 0, 0);
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  min-width: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
figure,
header,
main {
  display: block;
}
body {
  line-height: 1;
  font-family: "Merriweather", serif;
}
ul {
  list-style: none;
}
svg {
  display: block;
}
:root {
  --font-size: clamp(1.375rem, 2.225vw, 2rem);
  --line-height: 1.3;
}

html {
  background: #fff;
  font-size: 16px;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: "Merriweather", serif;
  font-size: var(--font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0015em;
  line-height: var(--line-height);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

header,
main {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-left: 1.5em;
  padding-right: 1.5em;
  width: min(100%, 34.5em);
}
header {
  height: 6em;
}
header h1 {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

main {
  flex: 1;
  margin-bottom: 6em;
}
main ul {
  display: flex;
  flex-direction: column;
}
main ul li {
  position: relative;
}
main ul li:before {
  font-feature-settings: "case", "tnum";
  left: 0;
  position: absolute;
  top: 0;
}
main ul {
  gap: 0.325em;
}
main ul li {
  padding-left: 0.9em;
}
main ul li:before {
  content: "—";
  opacity: 0.5;
}
main figure {
  --spacing: 1.6em;
  margin-left: -0.5em;
  width: 6.6em;
}
main figure svg {
  fill: var(--color-white);
  height: auto;
  max-width: 100%;
  overflow: visible;
  width: 100%;
}
main dl {
  --spacing: 0.7em;
  color: #000;
  font-feature-settings: "case";
  font-size: 90%;
}
main dl dt {
  font-weight: 700;
}
main > * + * {
  margin-top: var(--spacing, 1.3em);
}
b {
  color: #000;
  font-weight: 700;
  letter-spacing: normal;
}
@media (min-width: 64em) {
  header,
  main {
    padding-left: 2em;
    padding-right: 2em;
  }
  header {
    height: 7em;
  }
  main {
    margin-bottom: 7em;
  }
}
