@font-face {
  font-family: "Inter";
  src: url("/assets/inter-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/inter-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color: #141414;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.topbar {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 16px 2vw;
  background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(8px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  margin: -8px;
  padding: 8px;
  font-weight: 600;
  line-height: 24px;
}

.brand__dot {
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: #141414;
}

.articles-page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 128px 32px 96px;
}

.articles-hero {
  max-width: 760px;
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.lede {
  max-width: 560px;
  margin: 32px 0 0;
  color: #525252;
  font-size: 18px;
  line-height: 1.55;
}

.articles-list { border-top: 1px solid #d6d6d6; }

.article {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) minmax(0, 2fr);
  gap: 32px;
  padding: 48px 0 64px;
  border-bottom: 1px solid #d6d6d6;
}

.article__number {
  margin: 5px 0 0;
  color: #737373;
  font-size: 13px;
  font-weight: 600;
}

.article__body { max-width: 608px; }

.article h2 {
  margin: 0 0 24px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.article p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
}

.article p:last-child { margin-bottom: 0; }

.articles-status {
  min-height: 1.5em;
  margin: 24px 0 0;
  color: #6d6d6d;
  font-size: 14px;
}

.brand:focus-visible {
  outline: 2px solid #2c68f6;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .topbar { padding-inline: 16px; }
  .articles-page { padding: 96px 16px 64px; }
  .articles-hero { padding-bottom: 64px; }
  .eyebrow { margin-bottom: 20px; }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .lede {
    margin-top: 24px;
    font-size: 16px;
  }

  .article {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 40px;
  }

  .article__number { margin-top: 0; }

  .article h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

::selection {
  color: #fff;
  background: #2c68f6;
}
