@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-v20-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-v31-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --surface-page: #F1F1F1;
  --surface-raised: #FFFFFF;
  --surface-accent: #E4EFED;
  --surface-chip: #E4EFED;
  --surface-target: #F4F8F7;
  --surface-code: #EAECEF;
  --text-heading: #1B2A4A;
  --text-body: #39414F;
  --text-meta: #5C6470;
  --link: #1F6B62;
  --link-hover: #164F49;
  --link-visited: #2A5E6E;
  --chip-text: #1A5C54;
  --accent: #2D8C82;
  --rule: #C7CCD4;
  --rule-strong: #98A1AF;
  --focus-ring: #1F6B62;
  --font-display: Montserrat, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: JetBrains Mono, ui-monospace, monospace;
  --measure: 63ch;
  --surface-invert: #1B2A4A;
  --on-invert-heading: #FFFFFF;
  --on-invert-meta: #C9D2E0;
  --on-invert-accent: #4FC3B5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface-page: #141D31;
    --surface-raised: #1B2A4A;
    --surface-accent: #a3b0af;
    --surface-chip: #22354F;
    --surface-target: #1B2A4A;
    --surface-code: #1E2942;
    --text-heading: #FFFFFF;
    --text-body: #DCE1E9;
    --text-meta: #A3ABB9;
    --link: #4FC3B5;
    --link-hover: #7FD8CC;
    --link-visited: #8CC8D6;
    --chip-text: #7FD8CC;
    --accent: #4FC3B5;
    --rule: #2F3B54;
    --rule-strong: #4C5A7A;
    --focus-ring: #4FC3B5;
  }
}
/**
 * Site announcement
 */
.announcement {
  color: var(--on-invert-heading);
  background-color: var(--surface-invert);
}

.announcement__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 13.5px;
  padding-bottom: 13.5px;
  font-size: 14.45px;
  line-height: 1.4;
}

.announcement__message {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10.5px;
}

.announcement .inline-icon {
  flex: 0 0 auto;
  width: 1.4em;
  height: 1.4em;
}

.announcement__link {
  flex: 0 0 auto;
  color: var(--on-invert-heading);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.announcement__link:visited, .announcement__link:hover, .announcement__link:focus {
  color: var(--on-invert-heading);
}

@media screen and (max-width: 600px) {
  .announcement__container {
    align-items: center;
  }
}
/**
 * Reset some basic elements
 */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--surface-page);
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 15px;
}

/**
 * `main` element
 */
main {
  display: block;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14.45px;
  color: var(--text-meta);
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.25;
  text-wrap: balance;
}

h1 {
  font-size: 35.7px;
  letter-spacing: -0.015em;
}

h2 {
  font-size: 25.5px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 19.55px;
}

h4 {
  font-size: 17px;
}

/**
 * Links
 *
 * Underlined by default. Colour alone is not a sufficient affordance
 * (WCAG 1.4.1), and the site's teal does not carry enough contrast
 * against body text to be distinguishable without it.
 *
 * Navigation, footer and entry names opt out in their own stylesheets.
 */
a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
}
a:visited {
  color: var(--link-visited);
}
a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}
a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

/**
 * Focus, everything else
 */
:is(button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

/**
 * Blockquotes
 */
blockquote {
  color: var(--text-meta);
  border-left: 3px solid var(--accent);
  padding-left: 15px;
  font-size: 18.0625px;
  font-style: normal;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-family: var(--font-mono);
  font-size: 14.875px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background-color: var(--surface-code);
  color: var(--text-body);
}

code {
  padding: 1px 5px;
}

pre {
  padding: 10px 14px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: calc(1080px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: var(--text-meta);
  padding-right: 5px;
  vertical-align: text-top;
}

.inline-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}

.social-media-list li + li {
  padding-top: 5px;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: var(--text-body);
  border-collapse: collapse;
  border: 1px solid var(--rule);
}
table tr:nth-child(even) {
  background-color: var(--surface-raised);
}
table th, table td {
  padding: 9.999999999px 15px;
}
table th {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-heading);
  background-color: var(--surface-code);
  border: 1px solid var(--rule);
  border-bottom-color: var(--rule-strong);
}
table td {
  border: 1px solid var(--rule);
}

/**
 * Site header
 */
.site-header {
  border-top: 5px solid var(--text-heading);
  background-color: var(--surface-raised);
  position: relative;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-logo {
  display: block;
  line-height: 1;
  text-decoration: none;
}
.site-logo svg {
  display: block;
}

.site-nav {
  flex: 1;
  line-height: 1;
  text-align: right;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: var(--text-body);
  line-height: 1;
  text-decoration: none;
}
.site-nav .page-link:visited {
  color: var(--text-body);
}
.site-nav .page-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: var(--surface-raised);
    border: 1px solid var(--rule);
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: var(--text-heading);
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    margin-left: 20px;
    padding: 8px 10px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
}

/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1;
  background-color: var(--surface-raised);
}

.page-credits {
  margin-top: 1.5rem;
  padding: 0.8rem 0.9rem;
  background-color: var(--surface-target);
  border: 1px dashed var(--rule);
  border-radius: 6px;
}

.page-credits__label {
  margin: 0 0 0.35rem;
  color: var(--text-meta);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-credits__text {
  margin: 0;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-heading {
  font-size: 35.7px;
}

.post-list-heading {
  font-size: 29.75px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14.45px;
  color: var(--text-meta);
}

.post-link {
  display: block;
  font-size: 25.5px;
  text-decoration: none;
}
.post-link:hover {
  text-decoration: underline;
}

.explore-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.explore-heading svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--color-teal);
}

.explore-heading + p {
  margin-left: 2rem;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title {
  font-size: 42.5px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 35.7px;
  }
}

.post-content {
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 23.375px;
  }
  .post-content h3 {
    font-size: 18.0625px;
  }
}

/**
 * Callout
 */
.callout {
  border-left: 4px solid var(--accent);
  background-color: var(--surface-accent);
  padding: 1rem;
  margin-bottom: 1rem;
}
.callout > :last-child {
  margin-bottom: 0;
}

.site-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-heading);
  margin-bottom: 2rem;
}

/**
 * Directory and event entries
 *
 * Markup comes from _includes/directory-entry.html:
 *
 *   article.entry.entry--inactive#slug
 *     h3.entry-name > a, a.entry-anchor
 *     p.entry-run-by > span.entry-status, ...
 *     div.entry-description
 *     ul.entry-tags > li.entry-tag
 */
/* ---------------------------------------------------------------------------
   Section headings
   Entries only appear inside the category content column, so the section
   rule is scoped there rather than applied to every h2 on the site.
   --------------------------------------------------------------------------- */
.page-with-toc__content > h2 {
  margin-top: 3rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 5rem;
}
.page-with-toc__content > h2:first-child {
  margin-top: 0;
}

.page-with-toc__content > h2 + p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 58ch;
  margin-bottom: 1rem;
}

.category-summary {
  max-width: 58ch;
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background-color: var(--surface-accent);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-heading);
}

/* ---------------------------------------------------------------------------
   The entry
   --------------------------------------------------------------------------- */
.entry {
  --entry-indent: 1.5rem;
  padding-left: var(--entry-indent);
  margin-bottom: 1.25rem;
  scroll-margin-top: 5rem;
}

.entry:target {
  /* Bleed the highlight past the text so it reads as a marked block */
  background-color: var(--surface-target);
  box-shadow: 0 0 0 0.75rem var(--surface-target);
  border-radius: 2px;
}

.entry--inactive .entry-name {
  color: var(--text-meta);
}
.entry--inactive .entry-name a {
  text-decoration-color: var(--rule);
}
.entry--inactive .entry-name a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

/* Name -------------------------------------------------------------------- */
.entry-name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-heading);
  margin-left: calc(var(--entry-indent) * -1);
  margin-bottom: 0.2rem;
}
.entry-name a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  text-decoration-color: var(--rule-strong);
}
.entry-name a:visited {
  color: inherit;
}
.entry-name a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

/* Anchor affordance ------------------------------------------------------- */
.entry-anchor {
  color: var(--text-meta);
  font-weight: 400;
  text-decoration: none;
  margin-left: 0.15em;
  /* Hidden until wanted, but never hover-only: focus reveals it too,
     which is what keeps this passing WCAG 2.2 AA. */
  opacity: 0;
  /* 24px minimum target without disturbing the heading's line box */
  display: inline-block;
  min-width: 24px;
  text-align: center;
}
.entry-anchor:visited {
  color: var(--text-meta);
}
.entry-anchor:hover {
  color: var(--link-hover);
  opacity: 1;
}
.entry-anchor:focus-visible {
  opacity: 1;
}

.entry:hover .entry-anchor,
.entry:focus-within .entry-anchor {
  opacity: 1;
}

/* Anyone who prefers not to rely on a hover reveal gets it permanently */
@media (hover: none) {
  .entry-anchor {
    opacity: 1;
  }
}
/* Status ------------------------------------------------------------------ */
.entry-status {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-meta);
}
.entry-status:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.7em;
  margin-left: 0.5rem;
  vertical-align: -0.05em;
  background-color: var(--rule);
}

/* Run by ------------------------------------------------------------------ */
.entry-run-by {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-meta);
  margin-bottom: 0.5rem;
}
.entry-run-by a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
  text-underline-offset: 0.15em;
}
.entry-run-by a:visited {
  color: inherit;
}
.entry-run-by a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

/* Description ------------------------------------------------------------- */
.entry-description {
  max-width: var(--measure);
  font-size: 0.95rem;
}
.entry-description p {
  margin-bottom: 0.6rem;
}
.entry-description > :last-child {
  margin-bottom: 0;
}

/* Sidebar events ---------------------------------------------------------- */
.page-events {
  margin-top: 2rem;
  border-left: 3px solid var(--rule-strong);
  padding-left: 1rem;
}

.page-events__heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text-meta);
}

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

.page-events__item + .page-events__item {
  margin-top: 1rem;
}

.page-events__name {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
}

.page-events__name a {
  color: var(--text-body);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  text-decoration-color: var(--rule-strong);
}

.page-events__name a:visited {
  color: var(--text-body);
}

.page-events__name a:hover,
.page-events__name a:focus-visible {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

.page-events__summary {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-body);
}

/* Tags -------------------------------------------------------------------- */
.entry-tags {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.entry-tag {
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.3rem 0.55rem;
  border: 0;
  border-radius: 3px;
  background-color: var(--surface-chip);
  color: var(--chip-text);
}

.page-with-toc {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr);
}

.page-with-toc__content > * {
  max-width: var(--measure);
}

.toc {
  font-size: 0.875rem;
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.toc__heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text-heading);
}

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

.toc__item + .toc__item {
  margin-top: 0.375rem;
}

.toc a {
  color: var(--text-meta);
  text-decoration: none;
  display: inline-block;
  min-height: 24px;
}

.toc a:visited {
  color: var(--text-meta);
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--link-hover);
  text-decoration: underline;
}

.page-sidebar {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 64em) {
  .page-with-toc {
    grid-template-columns: minmax(0, 1fr) 14rem;
  }
  .page-sidebar {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    align-self: start;
    top: 5rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }
  .page-with-toc__content {
    grid-column: 1;
    grid-row: 1;
  }
}
/**
 * Syntax highlighting
 *
 * A minimal Rouge theme. Nine colour roles rather than the forty a
 * generated theme ships with. Anything not named here inherits the body
 * colour, which is the intended behaviour: only the tokens that help you
 * read the code are coloured.
 *
 * The palette is warmer than the site chrome so that code reads as its own
 * surface. Ratios are noted against the code background in each mode.
 */
:root {
  --code-plain: var(--text-body);
  --code-comment: var(--text-meta);
  --code-string: #8A3324;
  --code-keyword: #7A2E6E;
  --code-name: #1F6B62;
  --code-number: #1D4E89;
  --code-builtin: #8C4A00;
  --code-error: #A01B3C;
  --code-punct: var(--text-meta);
}

@media (prefers-color-scheme: dark) {
  :root {
    --code-string: #E8A08D;
    --code-keyword: #D9A2D6;
    --code-name: #4FC3B5;
    --code-number: #8FB8E8;
    --code-builtin: #E0B378;
    --code-error: #F0919F;
  }
}
.highlight,
.highlighter-rouge .highlight {
  background: transparent;
  color: var(--code-plain);
}

/* Comments */
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cp, .highlight .cpf, .highlight .c1, .highlight .cs {
  color: var(--code-comment);
  font-style: italic;
}
.highlight {
  /* Keywords */
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv {
  color: var(--code-keyword);
}
.highlight {
  /* Strings, and anything string-shaped */
}
.highlight .s, .highlight .sa, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr, .highlight .s1, .highlight .ss {
  color: var(--code-string);
}
.highlight {
  /* Numbers and literals */
}
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
  color: var(--code-number);
}
.highlight {
  /* Names that carry meaning: functions, classes, tags, YAML and HTML keys */
}
.highlight .nf, .highlight .fm, .highlight .nc, .highlight .nt, .highlight .na, .highlight .nd {
  color: var(--code-name);
}
.highlight {
  /* Built-ins, constants, variables */
}
.highlight .nb, .highlight .bp, .highlight .no, .highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm, .highlight .nl, .highlight .ne, .highlight .py {
  color: var(--code-builtin);
}
.highlight {
  /* Operators and punctuation stay quiet */
}
.highlight .o, .highlight .ow, .highlight .p, .highlight .pi {
  color: var(--code-punct);
}
.highlight {
  /* Errors */
}
.highlight .err, .highlight .gr, .highlight .gt {
  color: var(--code-error);
  background: transparent;
}
.highlight {
  /* Diff output */
}
.highlight .gd {
  color: var(--code-error);
}
.highlight .gi {
  color: var(--code-name);
}
.highlight .gh, .highlight .gu {
  color: var(--code-comment);
  font-weight: 500;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gs {
  font-weight: 600;
}
.highlight {
  /* Line numbers, if you ever turn them on */
}
.highlight .lineno, .highlight .gl {
  color: var(--code-comment);
  user-select: none;
  padding-right: 0.75em;
}

/**
 * Home page sections

 */
.home-cta, .home-construction, .home-categories, .home-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ---------------------------------------------------------------------------
   Hero section
   --------------------------------------------------------------------------- */
.home-hero {
  background-color: var(--surface-raised);
  padding: 36px 0 42px;
  border-bottom: 1px solid var(--rule);
}

.home-hero__container {
  text-align: center;
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-heading);
  margin-bottom: 10.5px;
  letter-spacing: -0.01em;
}

.home-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 36rem;
  margin: 0 auto;
}

/* /* ---------------------------------------------------------------------------
   Categories section
   --------------------------------------------------------------------------- */
.home-categories {
  background-color: var(--surface-page);
  padding: 36px 0;
}

.home-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
@media screen and (max-width: 800px) {
  .home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .home-categories__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.category-card {
  display: block;
  background-color: var(--surface-raised);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 13.5px 24px 21px;
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}
.category-card:visited {
  color: inherit;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.category-card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .category-card {
    transition: none;
  }
  .category-card:hover {
    transform: none;
  }
}

.category-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 9px;
}

.category-card__icon {
  color: var(--accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.category-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.2;
  margin: 0;
}

.category-card__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ---------------------------------------------------------------------------
   Under construction section

   Temporary. Remove this block and its markup once the directory is populated.
   --------------------------------------------------------------------------- */
.home-construction {
  background-color: var(--surface-raised);
  padding: 52.5px 0;
}

.home-construction__container {
  text-align: center;
}

.construction-sign {
  margin-bottom: 18px;
}

.home-construction__container h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 13.5px;
  letter-spacing: -0.01em;
}

.home-construction__container p {
  color: var(--text-body);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto 18px;
  text-align: left;
}
.home-construction__container p:last-child {
  margin-bottom: 0;
}

.home-construction__container .callout {
  max-width: 36rem;
  margin: 24px auto;
  text-align: left;
}

.home-construction__container a {
  color: var(--link);
  text-decoration: none;
}
.home-construction__container a:visited {
  color: var(--link-visited);
}
.home-construction__container a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   Call-to-action section

   The navy is an inset rounded card, not a full-width band, so it reads as an
   object on the page rather than another stripe.
   --------------------------------------------------------------------------- */
.home-cta {
  background-color: var(--surface-raised);
  padding: 22.5px 30px 0;
}

.home-cta__card {
  background-color: var(--surface-invert);
  border-radius: 12px;
  padding: 27px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .home-cta__card {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
    gap: 18px;
  }
}

.home-cta__content {
  flex: 1;
}

.home-cta__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--on-invert-heading);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.home-cta__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--on-invert-meta);
  margin: 0;
}

.home-cta__button {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background-color: transparent;
  border: 1px solid var(--on-invert-accent);
  border-radius: 8px;
  color: var(--on-invert-accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
  white-space: nowrap;
}
.home-cta__button:visited {
  color: var(--on-invert-accent);
}
.home-cta__button:hover {
  background-color: var(--on-invert-accent);
  color: var(--surface-invert);
}
.home-cta__button:focus-visible {
  outline: 2px solid var(--on-invert-accent);
  outline-offset: 3px;
}
@media screen and (max-width: 600px) {
  .home-cta__button {
    display: block;
    text-align: center;
  }
}

/**
 * Site footer
 *
 * Three columns above a full-width bottom bar. The acknowledgement sits in the
 * bottom bar rather than a column because at column width it wraps to five or
 * six short lines.
 */
.site-footer {
  background-color: var(--surface-page);
  border-top: 3px solid var(--accent);
  margin-top: auto;
}

.site-footer__container {
  padding-top: 30px;
}

/* ---------------------------------------------------------------------------
   Columns
   --------------------------------------------------------------------------- */
.site-footer__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 39px;
}
@media screen and (max-width: 800px) {
  .site-footer__columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 27px;
  }
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-meta);
  margin: 0 0 12px;
}

/* Brand column ------------------------------------------------------------- */
.site-footer__logo {
  display: inline-block;
  margin-bottom: 13.5px;
  color: var(--text-heading);
}
.site-footer__logo svg {
  display: block;
  height: auto;
  width: 250px;
  color: currentColor;
}

.site-footer__blurb {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-meta);
  max-width: 24rem;
  margin: 0 0 13.5px;
}

.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__contact li {
  margin-bottom: 6.9px;
}
.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
}
.site-footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Nav column --------------------------------------------------------------- */
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav li {
  margin-bottom: 3.9px;
  line-height: 1.4;
}
.site-footer__nav a {
  font-size: 0.8125rem;
}

/* Newsletter column -------------------------------------------------------- */
.site-footer__newsletter p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 24rem;
  margin: 0 0 13.5px;
}

.site-footer__badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px dashed var(--rule);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-meta);
  margin: 0;
}

.site-footer__button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--link);
  border-radius: 8px;
  color: var(--link);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}
.site-footer__button:visited {
  color: var(--link);
}
.site-footer__button:hover {
  background-color: var(--link);
  color: var(--surface-raised);
  text-decoration: none;
}

.site-footer__fineprint {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--text-meta);
  margin: 9.9px 0 0;
}

/* ---------------------------------------------------------------------------
   Bottom bar
   --------------------------------------------------------------------------- */
.site-footer__bottom {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.site-footer__acknowledgement {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-meta);
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 12px;
}

.site-footer__legal {
  list-style: none;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  color: var(--text-meta);
}
.site-footer__legal a {
  font-size: 0.75rem;
}

.site-footer__copyright {
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .site-footer__copyright {
    margin-left: 0;
  }
}

/* ---------------------------------------------------------------------------
   Shared link treatment
   --------------------------------------------------------------------------- */
.site-footer a {
  color: var(--link);
  text-decoration: none;
}
.site-footer a:visited {
  color: var(--link-visited);
}
.site-footer a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.site-footer a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-footer .site-footer__logo,
.site-footer .site-footer__logo:visited,
.site-footer .site-footer__logo:hover,
.site-footer .site-footer__logo:focus-visible {
  color: var(--text-heading);
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  .site-footer * {
    transition: none;
  }
}

/*# sourceMappingURL=main.css.map */