@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..125,200..800&display=swap');

:root {
  --brand: #f46c14;
  --brand-hover: #e05e0a;
  --ink: #18181b;
  --muted: #71717a;
  --border: #f4f4f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-hover);
}

.wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 7rem 1.25rem 6rem;
}

@media (min-width: 768px) {
  .wrap {
    padding-top: 9rem;
  }
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.back:hover {
  color: var(--ink);
}

header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
  margin-bottom: 0;
}

.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin: 0;
}

h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0.75rem 0 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

.updated {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

main {
  margin-top: 3rem;
}

section {
  margin-bottom: 2.5rem;
}

section:last-of-type {
  margin-bottom: 0;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

section p {
  margin: 0 0 0.75rem;
}

section p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

li:last-child {
  margin-bottom: 0;
}

strong {
  color: #27272a;
  font-weight: 500;
}

.cross {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
