@charset "UTF-8";
/* SANS */
@font-face {
  font-family: "Macho";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/Macho/macho-regular.woff2");
}

@font-face {
  font-family: "Macho";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("/assets/fonts/Macho/macho-italic.woff2");
}

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

@font-face {
  font-family: "Macho";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/Macho/macho-bold.woff2");
}

/* Missing Glyhps */
@font-face {
  font-family: "missing-glyphs";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/Macho/missing-glyphs.woff2");
}

:root {
  --key-color: rgb(191, 85, 17);
  --headline-color: var(--key-color);
  --body-font-color: #4D4434;
  --meta-color: #998667;
  --logo-color: rgb(255, 255, 255);
  --nav-bg-color: rgb(191, 85, 17);
  --link-color: #998667;
  --link-hover-color: rgb(191, 85, 17);
  --list-line-color: rgb(237, 235, 229);
  --hover-color: #ff8642;
  --selection-color: var(--hover-color);
  --logo-hover-color: #FF9C00;
  --padding-small: 4rem;
  --padding-smaller: 2rem;
  --line-height: 1.75rem;
}

/* Display-P3 color, when supported. */
@supports (color: color(display-p3 1 1 1)) {
  :root {
    --nav-bg-color: color(display-p3 0.745 0.34 0.097);
    /* --nav-bg-color: color(display-p3 0.635 0.279 0.067); */
    --key-color: color(display-p3 0.84 0.37 0.105);
    /* --key-color: color(display-p3 0.635 0.279 0.067); */
    --logo-hover-color: color(display-p3 0.955 0.588 0.057);
  }
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: -0.2px;
  word-spacing: 0.5px;
}

h1,
h2 {
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}

h1 {
  color: var(--headline-color);
  font-size: 2.125rem;
  font-weight: 700;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.1rem;
  padding-bottom: 1rem;
}

a {
  color: currentColor;
  -webkit-transition: .2s;
  transition: .2s;
}

a:hover {
  color: var(--nav-bg-color);
  -webkit-transition: .2s;
  transition: .2s;
}

a[href*="./"] {
  padding-left: 1.375rem;
  color: var(--key-color);
  /*   &::after {
    position: absolute;
    margin-top: -3px;
    content: " ☸";
    font-weight: 600;
    font-size: 1.25rem;
  } */
}

a[href*="./"]::before {
  position: absolute;
  margin-left: -1.5rem;
  content: "→ ";
  text-decoration: none;
}

ul {
  list-style: none;
}

ul .article-list {
  border-top: 1px solid var(--list-line-color);
  padding: 0.5rem 0 0.375rem;
}

ul .article-list:last-of-type {
  border-bottom: 1px solid var(--list-line-color);
  margin-bottom: 2.5rem;
}

.list-view h2[id*="tag_"]:target::before {
  content: "• ";
  margin-left: -1.2rem;
}

.list-view li {
  -webkit-transition: .1s;
  transition: .1s;
}

.list-view li:hover {
  margin-left: 0.25rem;
  -webkit-transition: .1s;
  transition: .1s;
}

.list-view li > a {
  text-decoration: none;
}

.list-view li > a:hover {
  color: var(--link-hover-color);
}

.list-view li::before {
  color: var(--link-color);
  padding-left: 0.5rem;
}

html {
  color: currentColor;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-variant-numeric: oldstyle-nums;
  font-synthesis: none;
}

body {
  font-family: "Macho", "missing-glyphs", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.375rem;
  line-height: var(--line-height);
  background-color: #c9beac;
}

body ::-moz-selection {
  color: var(--body-font-color);
  background-color: var(--selection-color);
}

body ::selection {
  color: var(--body-font-color);
  background-color: var(--selection-color);
}

.scrollbar-color-fix {
  background-color: var(--nav-bg-color);
}

.wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.grid-container {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-grid-columns: 1fr 2.25fr 0.75fr;
      grid-template-columns: 1fr 2.25fr 0.75fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: "header  main     main" "nav     main     main";
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: calc(var(--padding-small));
}

header a {
  text-decoration: none;
}

header ::-moz-selection {
  color: #FFFFFF;
  background-color: var(--selection-color);
}

header ::selection {
  color: #FFFFFF;
  background-color: var(--selection-color);
}

nav h2 {
  font-size: 1.125rem;
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.05rem;
  padding-bottom: 0.5rem;
}

nav a {
  text-decoration: none;
}

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

.logo > svg {
  fill: white;
}

.logo > svg:hover {
  fill: var(--hover-color);
}

#navigation {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: nav;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  padding: 0 calc(var(--padding-small));
}

#navigation a {
  line-height: 1.5rem;
  padding-bottom: 0.5rem;
}

#navigation a:last-of-type {
  padding-bottom: 2.75rem;
}

#navigation ::-moz-selection {
  color: #FFFFFF;
  background-color: var(--selection-color);
}

#navigation ::selection {
  color: #FFFFFF;
  background-color: var(--selection-color);
}

#navigation section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0rem;
}

#admin-tools {
  padding-bottom: var(--padding-small);
}

#content {
  padding-bottom: calc(var(--padding-small)/2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content .back-link {
  position: relative;
  padding-left: 1.5rem;
  color: var(--link-color);
}

#content .back-link:hover {
  color: var(--body-font-color);
}

#content .admin-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

#content .admin-buttons button {
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content .admin-buttons .edit-article {
  padding: 0.15rem 1rem 0.3rem 0.65rem;
}

#content .admin-buttons .edit-article::before {
  margin-top: 5px;
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%234D4434' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E%3Cpath d='M22.324 24.376H10.152'/%3E%3Cpath d='M17.836 19.616l4.064 2.4-.277-4.708L14.91 6.05a.318.318 0 00-.44-.108l-3.244 2a.32.32 0 00-.108.44l6.719 11.233zM15.469 8.595l-2.986 1.826M21.624 17.3l-3.788 2.316' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

#content .admin-buttons .edit-article:hover {
  color: var(--nav-bg-color);
}

#content .back-link::before {
  content: "←\2009\2009";
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-font-feature-settings: "ss02";
          font-feature-settings: "ss02";
}

main {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: main;
  min-height: 100vh;
  padding: 3rem 4vw 0 4vw;
  background-color: #F8F7F5;
  color: var(--body-font-color);
}

main p {
  font-size: 1.375rem;
  line-height: 1.5;
  padding-bottom: 1rem;
}

main h2 {
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-caps: all-small-caps;
  color: var(--headline-color);
  letter-spacing: 0.05rem;
  padding-bottom: 1rem;
}

main h2 > a {
  text-decoration: none;
  color: var(--body-font-color);
  -webkit-transition: none;
  transition: none;
}

main h2 > a:hover {
  -webkit-transition: none;
  transition: none;
  color: var(--body-font-color);
}

main p a,
main .article-text li a,
main .article-source li a,
main figcaption a {
  color: var(--link-color);
  -webkit-text-decoration-color: #edeae0;
          text-decoration-color: #edeae0;
  text-decoration-thickness: 1.25pt;
  text-underline-offset: 5px;
}

main p a:hover,
main .article-text li a:hover,
main .article-source li a:hover,
main figcaption a:hover {
  color: var(--link-hover-color);
  -webkit-text-decoration-color: #dbd7c9;
          text-decoration-color: #dbd7c9;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

main:last-of-type {
  padding-bottom: var(--padding-small);
}

main .sc-space {
  word-spacing: -0.15rem;
}

main figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 0.5rem;
}

main figcaption .copyright {
  font-size: 0.875rem;
}

.article-gallery img {
  width: 100%;
  max-height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-gallery figure {
  padding-top: 0.5rem;
}

pre {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
}

code {
  font-family: "NovelMono";
  background-color: var(--footer-bg-color);
  padding: 6px 2px;
  overflow: auto;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  white-space: nowrap;
}

code[class=language-regex] {
  padding-left: 16px;
}

hr {
  width: 100%;
  border: 0.5pt solid #DBD4CA;
  margin-bottom: 1rem;
}

article {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 1fr 0.4fr;
      grid-template-columns: 1fr 0.4fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: "article-content aside";
}

article p {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  -webkit-hyphenate-limit-before: 4;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-lines: 2;
  hanging-punctuation: first last;
}

article h1 {
  font-variant-caps: normal;
  line-height: 2.5rem;
  font-weight: 700;
  letter-spacing: normal;
  padding-bottom: calc(var(--padding-small)/2);
}

article h2 {
  font-variant-caps: normal;
  letter-spacing: normal;
  font-weight: 700;
  font-size: 1.438rem;
  margin-top: 5rem;
  color: var(--body-font-color);
}

article h2:first-of-type {
  margin-top: 0rem;
}

article h3 {
  font-size: 1.125rem;
  margin-top: 1rem;
  font-variant-caps: all-small-caps;
}

article h4 {
  text-transform: uppercase;
  color: var(--meta-color);
  letter-spacing: 0.07rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.article-content {
  padding: 0 0 0 6vw;
}

.article-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.article-text ul {
  padding-bottom: 0.75rem;
}

.article-text ul li {
  list-style: none;
  list-style-position: inside;
  line-height: 1.4;
  padding-bottom: 0.5rem;
  text-indent: -1.275rem;
  padding-left: 1.5rem;
}

.article-text ul li::before {
  content: "–   ";
  font-weight: 400;
  color: var(--meta-color);
}

.article-text ol {
  all: unset;
  list-style-type: decimal;
  padding-left: 1.75rem;
  padding-bottom: 0.75rem;
}

.article-text ol li {
  line-height: 1.4;
  padding-bottom: 0.5rem;
}

.article-text ol li::marker {
  color: var(--meta-color);
}

.searchbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -0.75rem;
  padding-bottom: 1rem;
}

input[type=text] {
  width: 100%;
  height: 2.5rem;
  font-family: "Macho";
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.25rem 0.25rem 0.75rem;
  margin-bottom: 1rem;
  border: 0;
  color: white;
}

input[type=text]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

input[type=text]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

input[type=text]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

input[type=text]:focus {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1.25pt solid rgba(255, 255, 255, 0.4);
  caret-color: rgba(255, 255, 255, 0.5);
  outline: 0;
}

.search-button {
  position: absolute;
  right: 0px;
  height: 2.5rem;
  width: 40px;
  font-weight: bold;
  background-color: transparent;
  border-radius: 0;
  border: none;
}

.search-button:hover {
  background-color: white;
  opacity: 0.8;
}

button:hover [class^=icon-] {
  background-position: -100% 0;
}

.icon-search {
  background-image: url("/assets/img/icon-search.svg");
  margin-left: -5px;
}

[class^=icon-] {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-top: -.2em;
  background-size: auto 100%;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

label[for=toggle] {
  font-size: 2rem;
  display: none;
  width: 30px;
  color: white;
}

#toggle {
  display: none;
}

.visually-hidden {
  display: none;
}

.info-text {
  font-size: 0.8em;
  color: #737061;
}

/* 
#############################
#############################
######                 ######
######     STYLES      ######
######                 ######
#############################
############################# */
.smallcaps {
  font-variant-caps: all-small-caps;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: 1.25rem;
  word-spacing: 1.25pt;
  color: inherit;
  background-color: #EFECE6;
  padding: 0.275rem 1rem 0.2rem;
  border-radius: 0.5rem;
  border: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

button:hover {
  background-color: #ebe8e0;
  -webkit-transition: .2s;
  transition: .2s;
}

button a:hover {
  color: var(--body-font-color);
}

.jumplinks {
  font-size: 1.25rem;
  padding-bottom: var(--padding-small);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: 1ch;
}

.jumplinks a {
  text-decoration: none;
}

.jumplinks a:hover {
  color: var(--key-color);
  font-weight: 700;
}

.article-head h1 {
  padding-bottom: 0.5rem;
}

.article-meta {
  font-size: 1.125rem;
}

.article-synonym {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 1.25rem;
}

.article-synonym ul {
  margin-bottom: 0.75rem;
}

.article-synonym ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: var(--key-color);
}

.article-synonym ul .language-flag {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025rem;
  padding: 0rem 0.25rem;
  line-height: 1rem;
  color: var(--meta-color);
  /*       border: 1.125pt solid #DBD4CA;
      border-radius: 4px; */
}

.article-source {
  color: var(--meta-color);
  padding-bottom: var(--padding-smaller);
  font-size: 1.25rem;
}

.article-source ul {
  list-style: none;
}

.article-source li {
  padding-left: 1rem;
  line-height: 1.4;
  padding-bottom: 0.5rem;
  border: none;
  /*     list-style-image: url("data:image/svg+xml,%3Csvg width='9' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M.5 0h8v12h-8z'/%3E%3Cpath fill='%23D5D3CD' fill-rule='nonzero' d='M8.5 6.5v1.25h-8V6.5z'/%3E%3C/g%3E%3C/svg%3E"); */
}

.article-source li::before {
  margin-left: -0.85rem;
  content: "•  ";
  color: #c9beac;
}

.article-source li:last-of-type {
  border-bottom: none;
}

.article-source p {
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  font-size: 1.125rem;
}

.article-tags {
  color: var(--meta-color);
  padding-bottom: var(--padding-smaller);
}

.article-tags ul {
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.article-tags ul li {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.article-tags ul li:hover {
  margin-top: 0.3rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.article-tags ul a {
  text-decoration: none;
  border: 1.25pt solid #DBD4CA;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.article-tags ul a:hover {
  color: var(--nav-bg-color);
  border: 1.25pt solid #ccc5bc;
}

.list-view-date {
  float: right;
  color: var(--meta-color);
  opacity: 0.75;
  font-variant-alternates: styleset(ss01);
  letter-spacing: 0.2pt;
}

.systematically h1,
.search-results h1 {
  padding-bottom: 7rem;
}

.systematically h2,
.search-results h2 {
  font-size: 1.5rem;
}

/* 
#############################
#############################
######                 ######
######     IMPORTS     ######
######                 ######
#############################
############################# */
@media (max-width: 1260px) {
  .grid-container {
    -ms-grid-columns: 1fr 2.25fr;
        grid-template-columns: 1fr 2.25fr;
        grid-template-areas: "header  main" "nav     main";
  }
  main {
    padding: 3rem 4vw 0 4vw;
  }
  article {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "article-content" "aside";
  }
  article .article-text {
    padding-left: 4vw;
  }
  article aside {
    display: none;
  }
}

@media (max-width: 949px) {
  :root {
    --padding-small: 4rem;
    font-size: 14px;
  }
  h1 {
    font-size: 1.75rem;
  }
  .sidebar {
    position: relative;
    top: 0rem;
  }
  .logo {
    margin-bottom: -2px;
    /* height: 23px; */
  }
  .grid-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "header" "nav" "main";
  }
  .sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  label[for=toggle] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 16px 0 0;
    cursor: pointer;
  }
  header {
    padding: 1rem;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  main {
    padding: 2rem 6vw;
  }
  article {
    -ms-grid-columns: 1fr 0.4fr;
        grid-template-columns: 1fr 0.4fr;
        grid-template-areas: "article-content  aside";
  }
  article aside {
    display: initial;
  }
  #navigation {
    width: 100%;
    padding: 0 2rem;
  }
  .searchbar {
    margin: 0 -0.75rem;
  }
  #search {
    height: 3rem;
    font-size: 1.142857143rem;
  }
  .search-button {
    height: 3rem;
  }
  .menu {
    display: none;
  }
  #toggle:checked + nav > .menu {
    display: initial;
    padding-top: 1rem;
  }
}

@media (max-width: 619px) {
  main {
    padding: 2rem 6vw;
  }
  article {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "article-content" "aside";
  }
  article aside {
    display: none;
  }
  article .article-content {
    padding: 0 1vw 0 1vw;
  }
}

/*
#############
#### 320 ####
#############
*/
@media (max-width: 320px) {
  main {
    padding: 16px;
  }
}

.login {
  background-color: var(--nav-bg-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.login .login-form {
  height: calc(100vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 3rem;
  overflow: auto;
}

.login .login-form header {
  position: absolute;
  left: 0;
  top: 0;
}

.login .login-form h1 {
  color: white;
}

.login .login-form form {
  margin-top: -6vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.login .login-form input {
  height: 50px;
  width: 100%;
  border: 0;
  padding: 0.2rem 0.25rem 0.35rem 0.75rem;
  font-size: 1.175rem;
  font-family: "Macho";
  caret-color: var(--key-color);
}

.login .login-form input:focus {
  border: 1.25pt solid var(--body-font-color);
  outline: 0;
}

.login .login-form button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
  padding-right: 25px;
  background: #EFECE6;
}

.login .login-form button[type=submit]::before {
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%234D4434' fill-rule='nonzero' d='M15.565 20.8L20.8 16l-5.235-4.8-.866 1.02 3.594 3.102H6.4v1.356h11.891L14.7 19.779z'/%3E%3Cpath d='M10.485 21.515a7.8 7.8 0 100-11.03' stroke='%234D4434' stroke-width='1.2'/%3E%3C/g%3E%3C/svg%3E");
  margin-top: 4px;
}

.login .login-form button[type=submit]:hover {
  color: var(--key-color);
  background-color: #f7f4ef;
  -webkit-box-shadow: 0px 1px 40px var(--hover-color);
          box-shadow: 0px 1px 40px var(--hover-color);
}

.login .login-form label {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
}

.login .login-form .label-and-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.login .login-form .button-tab-fix {
  padding-top: 1.5rem;
}

.login .login-form .alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1.25pt solid #ffae39;
  font-size: 1rem;
  color: #ffae39;
  line-height: 1.25;
}

.login .login-form .alert::before {
  margin-top: 0.5rem;
  padding-right: 0.25rem;
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFAE39' fill-rule='nonzero' d='M15.38 11.375h1.25v7.5h-1.25zM15.25 20.25h1.5v2h-1.5z'/%3E%3Cpath d='M16.876 6.593l9.309 16.925A1 1 0 0125.309 25H6.69a1 1 0 01-.876-1.482l9.309-16.925a1 1 0 011.752 0z' stroke='%23FFAE39'/%3E%3C/g%3E%3C/svg%3E");
}
/*# sourceMappingURL=index.css.map */