@font-face {
  font-family: "Inclusive";
  src: url("/static/blog/InclusiveSans-Regular.cabc948b907f.woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inclusive";
  src: url("/static/blog/InclusiveSans-Bold.6636255ecfab.woff2");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Inclusive";
  src: url("/static/blog/InclusiveSans-Italic.0bb9931bf6ab.woff2");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Inclusive";
  src: url("/static/blog/InclusiveSans-BoldItalic.eb4ed95b05e0.woff2");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Inclusive";
  src: url("/static/blog/InclusiveSans-SemiBold.e272e2806102.woff2");
  font-weight: 500;
  font-style: normal;
}

:root {
  --display: "Gill Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --serif: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
  --sans-serif: "Inclusive", system-ui, sans-serif;

  --dark-50: oklch(0.985 0.002 247.839);
  --dark-100: oklch(0.967 0.003 264.542);
  --dark-200: oklch(0.928 0.006 264.531);
  --dark-300: oklch(0.872 0.01 258.338);
  --dark-400: oklch(0.707 0.022 261.325);
  --dark-500: oklch(0.551 0.027 264.364);
  --dark-600: oklch(0.446 0.03 256.802);
  --dark-700: oklch(0.373 0.034 259.733);
  --dark-800: oklch(0.278 0.033 256.848);
  --dark-900: oklch(0.21 0.034 264.665);
  --dark-950: oklch(0.13 0.028 261.692);

  --font-xxxl: 36px;
  --font-xxl: 24px;
  --font-xl: 18px;
  --font-l: 16px;
  --font-m: 14px;
  --font-s: 13px;

  --max-width: 850px;

  --main-font: var(--dark-800);
  --highlight: #E5FD53;
  --highlight-darker: #DAF151;
  --link: #0000FF;
  --link-visited: #722DB2;
}

header {
  background-color: var(--dark-50);
  background-image: url("/static/blog/topography.fbd748062b36.svg");
  border-bottom: 1px solid var(--dark-100);
  box-shadow: 0 10px 7px -10px var(--dark-100);
  box-sizing: border-box;
  margin-bottom: 2rem;
  padding: 2rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--main-font);

  a:link,
  a:visited {
    color: var(--main-font);
    background-color: var(--highlight);
    background: linear-gradient(179deg, var(--highlight) 25%, var(--highlight-darker));
    border: 3px solid var(--main-font);
    text-decoration: none;
    font-family: var(--display);
    font-weight: 600;
    padding: .75rem;
  }

  a:focus {
    border-color: var(--highlight);
    background: var(--dark-800);
    color: var(--dark-50);
  }
}

body {
  font-family: var(--sans-serif);
  font-size: var(--font-m);
  line-height: 1.5;
  color: var(--main-font);
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: min-content 1fr min-content;
  height: 100vh;
}

a:link {
  color: var(--link);
}

a:visited {
  color: var(--link-visited);
}

a:hover {
  text-decoration: none;
}

blockquote {
  padding-left: 0.75rem;
  margin-left: .25rem;
  margin-right: 2rem;
  border-left: 1px solid var(--dark-300);
}

img {
  max-width: 100%;
  margin-bottom: .5rem;
  vertical-align: middle;
}

figure {
  margin: 1.5rem 0;
  overflow-x: auto;
}

figure.widescreen {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

figure.widescreen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

figcaption {
  font-size: var(--font-s);
}

@media (min-width: 600px) {
  figure.grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-gap: 1rem;;
    align-items: end;
  }

  figure.grid img {
    margin-bottom: 0;
  }
}

code {
  font-size: 0.95rem;
}

hr {
  border: 0;
  width: 3rem;
  height: .25rem;
  margin-top: 1rem;;
  margin-bottom: .75rem;
  display: block;
  background-color: var(--dark-100);
}

table {
  margin-bottom: 1rem;
}

table tr > * {
  padding: .25rem .5rem;
}

tr:nth-child(odd) {
  background-color: var(--dark-100);
}

thead tr:first-child {
  background-color: #fff;
}

.break-all {
  overflow-wrap: break-word;
  word-break: break-all;
}

.wrap {
  max-width: calc(var(--max-width));
  margin: 0 auto;
  padding: 0 1rem;;
}

footer {
  margin-top: 3rem;
  padding: 1rem 0 2rem 0;
  border-top: 1px solid var(--dark-300);
  box-shadow: 0 -10px 7px -10px var(--dark-300);
  background-color: var(--dark-900);
  background: linear-gradient(177deg, var(--dark-900) 25%,var(--dark-950));
  color: #fff;
}

footer > div.wrap {
  max-width: var(--max-width);
  font-size: var(--font-s);
}

footer .nav-list li {
  display: inline;
}

footer .nav-list li:not(:first-child)::before {
  content: "/ ";
  margin-left: .25rem;
  margin-right: .25rem;
}

@media (min-width: 600px) {
  footer > div.wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
  }
}

footer  a:link,
footer  a:visited,
footer  a:hover,
footer  a:active {
  color: #fff;
}

footer .nav-list a {
  text-decoration: none;
}

footer .nav-list a:hover{
  text-decoration: underline;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

main {
  width: 100%;
  max-width: calc(var(--max-width) * 2/3);
  margin: 0 auto;
}

.index aside {
  display: none;
}

.index aside a:link,
.index aside a:visited,
.index aside a:active {
  color: var(--main-font);
  text-decoration: none;
  border-bottom: 1px solid var(--link);
}

.index aside a:hover {
  border: none;
}

.index article:not(:last-child) {
  margin-bottom: 5rem;
}

.index article h2:not(.h2-link) {
  font-weight: 500;
  font-size: var(--font-xxl);
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.index article h2.h2-link {
  font-size: var(--font-l);
  font-weight: 500;
}

.index article h2.h2-post a:link,
.index article h2.h2-post a:visited,
.index article h2.h2-post a:active {
  color: var(--main-font);
  text-decoration: none;
}

.index article h2.h2-post a:hover {
  color: var(--dark-700);
}

@media (min-width: 992px) {
  .index {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 2.5rem;
  }

  .index aside {
    display: block;
    margin-top: 4rem;
    padding-top: .5rem;
    font-size: var(--font-s);
    border-top: 4px solid var(--dark-100);
  }

  .index aside div:not(:first-child) {
    margin-top: 2rem;
  }
}

.article h1 {
  font-weight: 500;
  font-size: var(--font-xxxl);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 1rem 0;
}

.ancillary h1 {
  font-size: var(--font-xxl);
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.ancillary h2:not(.aside-list-heading) {
  font-size: var(--font-m);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 2rem 0 .5rem 0;
}

.ancillary h2 + p {
	margin-top: 0;
}

.archive h1 {
  font-size: var(--font-m);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  padding-bottom: .25rem;
  border-bottom: 1px dotted var(--dark-300);
  color: var(--dark-700);
}

.article-meta {
  font-size: var(--font-s);
  color: var(--dark-600);
}

.source {
  overflow-wrap: break-word;
  word-break: break-all;
}

.permalink {
  margin-right: .25rem;
  text-decoration: none;
  font-size: var(--font-m);
}

.permalink:hover {
  text-decoration: underline;
}

.bullet::before {
  content: "•";
  margin-right: .25rem;
  font-size: var(--font-l);
  line-height: 1.5rem;
  /* vertical-align: middle; */
}

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

h2.aside-list-heading {
  font-size: var(--font-s);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .25rem;
  margin-top: 1rem;;
}

aside h2.aside-list-heading:first-child {
  margin-top: 0;
}

h2.aside-list-heading + * {
	margin-top: 0;
}

nav.pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
}

nav.pagination div:last-child {
  text-align: right;
}

nav.pagination a:link {
  text-decoration: none;
}

nav.pagination a:visited {
  color: var(--link);
}

nav.pagination a:hover {
  text-decoration: underline;
}

.admin {
  background-color: #DAF15144;
  padding: .75rem;
  border: 1px dashed var(--dark-500);
  border-radius: 5px;
}

.archives-note {
  border-top: 1px dotted var(--dark-400);
  padding-top: 1rem;
}