@import url('/fonts.css');
@import url('/theme.css');
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  top: -80px;
  padding: 12px;
  background: var(--site-background);
}
.skip:focus {
  top: 8px;
}
header,
footer {
  max-width: 1100px;
  margin: auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
header {
  border-bottom: 1px solid var(--site-border);
}
.brand {
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
}
nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
main {
  max-width: 760px;
  margin: 76px auto 100px;
  padding: 0 24px;
}
.eyebrow,
.meta {
  color: var(--site-muted);
  font-size: 16px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
h1 {
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 20px 0;
}
.lead {
  font-size: 25px;
  line-height: 1.45;
}
.prose {
  margin-top: 48px;
  font-size: 20px;
  line-height: 1.7;
}
.prose h2 {
  font-size: 29px;
  line-height: 1.2;
  margin: 48px 0 18px;
  letter-spacing: -0.015em;
}
.prose p {
  margin: 0 0 24px;
}
.post {
  border-top: 1px solid var(--site-border);
  margin-top: 52px;
  padding-top: 32px;
}
.post h2 {
  font-size: 36px;
  margin: 12px 0;
}
.post p {
  font-size: 21px;
  line-height: 1.5;
}
footer {
  border-top: 1px solid var(--site-border);
  color: var(--site-muted);
}
@media (max-width: 480px) {
  header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  main {
    margin-top: 48px;
  }
  nav {
    gap: 20px;
  }
}

/* Screenshot walkthroughs keep the entire captured app visible. */
.tutorial figure {
  margin: 32px 0;
}
.tutorial img {
  display: block;
  width: 100%;
  height: auto;
}
.tutorial figcaption {
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 12px;
}
.tutorial h3 {
  font-size: 23px;
  line-height: 1.3;
  margin: 32px 0 16px;
}
.tutorial li {
  margin-bottom: 12px;
}
.tutorial code {
  font-size: 0.85em;
  overflow-wrap: anywhere;
}
.tutorial pre {
  border: 1px solid var(--site-border);
  border-radius: 8px;
  padding: 18px;
  overflow-x: auto;
  line-height: 1.5;
}
.tutorial pre code {
  overflow-wrap: normal;
}
.table-scroll {
  overflow-x: auto;
  margin: 24px 0;
}
.tutorial table {
  border-collapse: collapse;
  font-size: 17px;
  width: 100%;
}
.tutorial th,
.tutorial td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--site-border);
}
.tutorial a {
  overflow-wrap: anywhere;
}
