:root {
  --doric-magenta: #820145;
  --doric-blue: #183182;
  --ink: #211d1e;
  --muted: #6e6768;
}

html {
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.72;
}

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

h1 {
  margin: 0 0 48px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 0.06em;
  background: linear-gradient(110deg, var(--doric-magenta), var(--doric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  margin: 0 0 1.35em;
}

a {
  color: var(--doric-blue);
}

.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-list li {
  margin: 0 0 0.85em;
  padding: 0;
}

.article-marker {
  color: var(--doric-magenta);
}

.article-list a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

figure {
  margin: 42px 0 44px;
}

figure img {
  display: block;
  width: 100%;
  height: auto;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

ul:not(.article-list) {
  list-style: none;
  margin: -0.35em 0 1.5em;
  padding-left: 1.4em;
}

ul:not(.article-list) li {
  position: relative;
  padding-left: 0.25em;
  margin: 0.3em 0;
}

ul:not(.article-list) li::before {
  position: absolute;
  left: -1.25em;
}

ul:not(.article-list) li.successful::before {
  content: "◆";
}

ul:not(.article-list) li.failed::before {
  content: "◇";
  font-weight: 700;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.84em;
}

@media (max-width: 600px) {
  main {
    width: min(100% - 28px, 720px);
    padding-top: 42px;
  }

  body {
    font-size: 17px;
  }
}
