/* main.css */

:root {
  --color-primary:        #1e9edb;
  --color-faded1:         #357c9c;
  --color-faded2:         #3083aa;
  --color-faded3:         #2d8fbd;
  --color-faded4:         #2597cb;
  --color-primary-rev:    #d5f9ff;

  --link-color:             var(--color-primary);
  --link-color-faded1:      var(--color-faded1);
  --link-color-faded2:      var(--color-faded2);
  --link-color-faded3:      var(--color-faded3);
  --link-color-faded4:      var(--color-faded4);
  --link-color-rev:         var(--color-primary-rev);

  --neutral-gray:         #d3d3d3;
  --neutral-black:        #282828;
  --neutral-white:        #fafafa;
  --neutral-white-trans:  #f6f6f6ee;

  --text-color:             var(--neutral-black);
  --bg-color:               var(--neutral-white-trans);
}

:root {
  /* bootstrap v3 */
  /*
  --xs-min:  0;
  --xs-max:  479px;
  --sm-min:  480px;
  --sm-max:  767px;
  --md-min:  768px;
  --md-max:  991px;
  --lg-min:  992px;
  --lg-max:  1199px;
  --xl-min:  1200px;
  */

  /* bootstrap v4 */
  /*
  --xs-min:  0;
  --xs-max:  575px;
  --sm-min:  576px;
  --sm-max:  767px;
  --md-min:  768px;
  --md-max:  991px;
  --lg-min:  992px;
  --lg-max:  1199px;
  --xl-min:  1200px;
  */

  /* bootstrap v5 */
  --xs-min:  0;
  --xs-max:  575px;
  --sm-min:  576px;
  --sm-max:  767px;
  --md-min:  768px;
  --md-max:  991px;
  --lg-min:  992px;
  --lg-max:  1199px;
  --xl-min:  1200px;
  --xl-max:  1399px;
  --xxl-min: 1400px;
}

/* Josh W Comeau */
/* https://www.joshwcomeau.com/css/custom-css-reset/ */

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  height: auto;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* FOUNDATIONAL */

body {
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
  background-color: var(--bg-color);
  background-image: url(/assets/images/liquid-cheese.svg);
  /* background-image by SVGBackgrounds.com */
  background-size: cover;
  color: var(--text-color);
  font-size: 1.6rem;
  margin-top: 70px;
}
  @media (prefers-color-scheme: dark) {
    /* defaults to dark theme */
    body {
      --bg-color: #282828ee;
      --text-color: #f3f3f3;
    }
      body.light-theme {
        --bg-color: #f6f6f6ee;
        --text-color: #282828;
      }
  }

@media (min-width: 550px) {
  body {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

a {
  color: var(--link-color);
  font-weight: 600;
  text-decoration: none;
}
  a:hover {
    text-decoration: underline;
  }

  a.btn-more {
    background-color: var(--link-color);
    border: 1px solid var(--link-color-rev);
    border-radius: 0.5rem;
    color: var(--link-color-rev);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 3rem;
    padding: 0.8rem 2.5rem;
    position: relative;
  }
    @media (min-width: 550px) {
      a.btn-more {
        left: 0.5rem;
      }
    }
    a.btn-more:hover {
      background-color: var(--link-color-rev);
      border: 1px solid var(--link-color);
      color: var(--link-color);
      text-decoration: none;
    }

  a.anchor {
    position: relative;
    top: -50px;
  }
    @media (min-width: 550px) {
      a.anchor {
        top: -35px;
      }
    }

h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 550px) {
  h1 {
    font-size: 5rem;
  }
}

h2 {
  font-size: 2.75rem;
  line-height: 0.8;
  margin-bottom: 1rem;
}
  h2.task-header {
    border-bottom: 1px solid #b3aeae;
    border-top: 1px solid #b3aeae;
    display: none;
  }
@media (min-width: 550px) {
  h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
    h2.task-header {
      display: block;
      font-size: 3.6rem;
      line-height: 0.8;
      padding: 2.3rem 0;
    }
}

h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 550px) {
  h3 {
    font-size: 3rem;
    font-weight: 500;
  }
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.8;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 550px) {
  h4 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }
}

h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
  @media (min-width: 550px) {
    h5 {
      font-size: 2rem;
    }
  }

h6 {
  font-size: 1.25rem;
  line-height: 0.8;
  margin-bottom: 2rem;
}
  @media (min-width: 550px) {
    h6 {
      font-size: 1.6rem;
      margin-bottom: 4rem;
    }
  }

li {
  margin-bottom: 0;
}

ul ul {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

ul.apiData.narrow {
  max-width: 260px;
}

ul.links {
  margin-bottom: 1rem;
}
  ul.links li {
    font-size: 2rem;
    line-height: 1.4;
    list-style-type: square;
    margin-bottom: 5px;
    padding-left: 1px;
  }
  @media (min-width: 550px) {
    ul.links li {
      line-height: 1;
      margin-bottom: 0;
      padding: 5px;
    }
  }
    ul.links li::marker {
      margin-right: 0;
      padding: 0;
    }
      ul.links li.manual.code {
        list-style-image: url('../images/code.svg');
      }
        ul.links li.manual.code::marker {
          position: relative;
        }

      ul.links li.manual.music {
        list-style-image: url('../images/music.svg');
      }
        ul.links li.manual.music::marker {
          position: relative;
        }

      ul.links li a {
        padding-bottom: 2px;
      }
      ul.links span.detail {
        font-size: 0.8em;
      }
      ul.links li img {
        margin: auto 5px;
      }
        ul.links li img.steam-icon {
          float: left;
          margin: 2px 4px 0 0;
          height: 16px;
          width: 16px;
        }
        ul.links li .loading {
          margin-left: -25px;
          margin-top: 1px;
        }
      ul.links li ul {
        margin-bottom: 0;
        margin-top: 1rem;
      }
        ul.links li ul li {
          font-size: 0.8em;
          left: 0.65em;
          line-height: 1.4;
          list-style-type: none;
          padding: 0;
          position: relative;
        }
          ul.links li ul li::before {
            content: "\2219";
            font-size: 2.5em;
            left: -0.5em;
            line-height: 0;
            position: absolute;
            top: 0.3em;
          }
            ul.links li ul li.blank {
              left: -0.75em;
            }
              ul.links li ul li.blank::before {
                content: "";
              }
            ul.links li ul li.blank a,
            ul.links li ul li.blank span {
              position: relative;
              top: -2px;
            }
              ul.links li ul li.blank ul.apiData {
                margin-top: 0;
              }
                ul.links li ul li.blank ul.apiData li a {
                  font-size: 1.2rem;
                  top: 0;
                }
          ul.links li ul li.soundcloud {
            left: -0.5em;
          }
            ul.links li ul li.soundcloud::before {
              content: "";
            }

iframe.youtube {
  padding-top: 1em;
}

/* CUSTOM CLASSES */

.row {
  margin-bottom: 1rem;
}
  @media (min-width: 550px) {
    .row .section-label h3 {
      border-bottom: 2px solid var(--text-color);
      margin-right: -3.65vw;
    }
    .row .section-content {
      border-left: 2px solid var(--text-color);
    }
  }
  @media (min-width: 890px) {
    .row .section-label h3 {
      border-bottom: 2px solid var(--text-color);
      margin-right: -33px;
    }
  }

/* LAYOUT */

header.header-narrow {
  border-bottom: 1px solid var(--neutral-gray);
  display: block;
  margin: 2rem 0;
  padding-bottom: 1rem;
}
  @media (min-width: 550px) {
    header.header-narrow {
      display: none;
    }
  }

  header.header-narrow .location {
    font-size: 1.3rem;
  }

header.header-wide {
  display: none;
  margin: 2rem 0 4rem;
  position: relative;
}
  @media (min-width: 550px) {
    header.header-wide {
      display: block;
    }
  }

  header.header-wide .location {
    font-size: 3.6rem;
    font-weight: 300;
    letter-spacing: -.1rem;
    line-height: 0.8;
    margin-bottom: 1rem;
    margin-top: 0;
  }

  header.header-wide .tasks {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -.05rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  header.header-wide .greeting {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 0.8;
  }

header.header-scrolled {
  background: #ffffffee;
  background: linear-gradient(322deg, rgba(237,241,247,1) 0%, rgba(158,195,231,0.9122023809523809) 100%);
  box-shadow: 0 0 2px 2px #b3aeae;
  height: 55px;
  left: 0;
  margin-top: 0;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  transition: top 0.2s cubic-bezier(.3, .73, .3, .74);
  width: 100%;
  z-index: 3;
}

@media (min-width: 550px) {
  header.header-scrolled {
    top: -100px;
  }
}
  header.header-scrolled.show {
    top: 0;
  }
    header.header-scrolled .logo-sm {
      float: left;
      padding: 2px 5px 5px 0;
    }
    header.header-scrolled div.site-meta {
      display: none;
      float: left;
      line-height: 0.85;
      padding: 3px 0 0;
    }
    @media (min-width: 550px) {
      header.header-scrolled div.site-meta {
        display: inline-block;
      }
    }
      header.header-scrolled div.site-meta span.name {
        font-weight: 600;
      }
        header.header-scrolled div.site-meta span.name a {
          color: #0c6a87;
          display: inline-block;
          height: 18px;
        }
        header.header-scrolled div.site-meta span.name span.desc {
          font-size: 0.8em;
          font-weight: 300;
          padding: 0;
        }
      header.header-scrolled div.menu span {
        float: right;
        padding: 7px 5px;
      }
      @media (min-width: 550px) {
        header.header-scrolled div.site-meta span {
          line-height: 1;
        }
          header.header-scrolled div.site-meta span.name {
            padding-top: 4px;
          }
      }

header.page-header {
  display: flex;
  height: 50px;
}
  header.page-header h1 {
    padding-right: 10px;
  }
  header.page-header h3.tag {
    background-color: rgb(0, 27, 136);
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    height: 35px;
    line-height: 35px;
    margin: 0 0.5rem 0 1rem;
    padding: 0 2.5rem 0 1rem;
    position: relative;
    text-align: center;
  }
  @media (min-width: 550px) {
    header.page-header h3.tag {
      margin-top: 1rem;
    }
  }
    header.page-header h3.tag::after {
      background: inherit;
      border-radius: 4px;
      display: block;
      content: "";
      height: 27px;
      position: absolute;
      right: -10px;
      top: 4px;
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      width: 27px;
    }

div#unpub-indicator {
  align-items: center;
  background-color: #a89d25;
  border: 1px solid #bbb;
  border-radius: 4px;
  bottom: 5px;
  display: flex;
  font-size: 1.2rem;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0.9;
  position: fixed;
  right: 95px;
  text-align: center;
  width: 40px;
  z-index: 10000;
}
  @media (min-width: 550px) {
    div#unpub-indicator {
      right: 150px;
    }
  }
  div#unpub-indicator.unpublished {
    background-color: #a89d25;
  }
  div#unpub-indicator.published {
    background-color: #1da826;
  }

div#env-indicator {
  align-items: center;
  border: 1px solid #bbb;
  border-radius: 4px;
  bottom: 5px;
  display: flex;
  font-size: 1.2rem;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0.9;
  position: fixed;
  right: 50px;
  text-align: center;
  width: 40px;
  z-index: 10000;
}
  @media (min-width: 550px) {
    div#env-indicator {
      right: 105px;
    }
  }
  div#env-indicator.env-indicator-prod {
    background-color: #cb0b38;
  }
  div#env-indicator.env-indicator-dev {
    background-color: #1da826;
  }

button#theme-toggler {
  background-color: var(--bg-color);
  bottom: 5px;
  font-size: 1.5rem;
  font-weight: 600;
  height: 40px;
  margin-bottom: 0;
  opacity: 0.9;
  padding: 0 10px;
  position: fixed;
  right: 5px;
  text-align: center;
  width: 40px;
  z-index: 10000;
}
  button#theme-toggler span.theme-image::after {
    display: none;
  }

@media (min-width: 550px) {
  button#theme-toggler {
    width: 95px;
  }
    button#theme-toggler span.theme-image::after {
      display: inline;
    }

  body.light-theme button#theme-toggler span.theme-image::after {
    content: " light"
  }
}

nav.site-links,
nav#site-bio,
footer#site-footer li,
footer#site-footer p {
  color: #3a2822;
}
footer#site-footer p {
  margin-bottom: 5px;
}

footer {
  border-top: 1px solid var(--neutral-gray);
  padding: 2rem 0 1rem;
}
  footer img {
    margin-bottom: 0;
  }

  footer#site-footer ul {
    list-style: none;
  }

  footer#site-footer li,
  footer#site-footer p {
    font-size: 1.5rem;
    letter-spacing: -.3px;
    color: #626262;
  }
    footer#site-footer p.text-small {
      font-size: 1.25rem;
    }

  footer#site-footer li {
    padding: 3px 0;
  }
    @media (min-width: 550px) {
      footer#site-footer li {
        padding: 2px;
      }
    }

  footer#site-footer a,
  footer#site-footer a:active,
  footer#site-footer a:visited {
    background-color: var(--link-color);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--link-color-rev);
    display: inline-block;
    font-weight: 600;
    margin: 0 1px;
    padding: 0 5px;
  }
    footer#site-footer a:hover,
    footer#site-footer a:active:hover,
    footer#site-footer a:visited:hover {
      background-color: var(--link-color-rev);
      border: 1px solid var(--link-color);
      color: var(--link-color);
      text-decoration: none;
    }

  footer#site-footer a.plain,
  footer#site-footer a:active.plain,
  footer#site-footer a:visited.plain {
    background: none;
    border: none;
    color: inherit;
  }
    footer#site-footer a.plain:hover,
    footer#site-footer a.plain:active:hover,
    footer#site-footer a.plain:visited:hover {
      background: none;
      border: none;
      color: inherit;
    }

  footer#site-footer #site-bio {
    margin-top: 0;
    padding-top: 0;
  }
    footer#site-footer #site-bio .cols {
      display: block;
    }
    @media (min-width: 550px) {
      footer#site-footer #site-bio .cols {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 4px;
        grid-row-gap: 0px;
      }
    }

  footer#site-footer .github-icon-svg,
  footer#site-footer .twitter-icon-svg,
  footer#site-footer .masto-icon-svg,
  footer#site-footer .soundcloud-icon-svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
  }

  footer#site-footer #logo-slogan,
  footer#site-footer #built-with {
    margin-bottom: 1em;
  }

  footer#site-footer #logo-slogan {
    align-items: center;
    display: flex;
  }
    footer#site-footer #logo-slogan a {
      padding: 0 5px 0;
    }
    @media (min-width: 550px) {
      footer#site-footer #logo-slogan a {
        padding: 0 5px;
      }
    }

/* Base */
/* ----------------------------------------------------------*/

/* Utility */

.wrap:before,
.wrap:after { content:""; display:table; }
.wrap:after { clear: both; }
.wrap {
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
  zoom: 1;
}


/* Layout Styles */
/* ----------------------------------------------------------*/

/* override skeleton */
.container {
  padding: 0;
  width: 95%;
}
  @media (min-width: 550px) {
    .container {
      max-width: 800px;
    }
  }
  .container.container-blog .header-narrow {
    margin-left: 2rem;
    margin-right: 2rem;
  }


/* Site header */

.site-header {
  border-top: 5px solid #333;
  border-bottom: 1px solid #e8e8e8;
  max-height: 56px;
  min-height: 56px;
  background-color: white;
}

.site-title,
.site-title:hover,
.site-title:visited {
  display: block;
  color: #333;
  font-size: 2.6rem;
  letter-spacing: -1px;
  float: left;
  line-height: 56px;
  position: relative;
  z-index: 1;
}

.site-nav {
  float: right;
  line-height: 56px;
}
  .site-nav .menu-icon {
    display: none;
  }
  .site-nav .page-link {
    margin-left: 20px;
    color: #727272;
    letter-spacing: -.5px;
  }


/* Page Content styles */
/* ----------------------------------------------------------*/

.page-content {
  padding: 15px 0;
}


/* Home styles */
/* ----------------------------------------------------------*/

.home h1 {
  margin-bottom: 25px;
}

.posts {
  list-style-type: none;
}
  .posts li.post-row {
    margin-bottom: 30px;
  }
  .posts .post-link {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1;
  }
  .posts .post-date {
    display: block;
    font-size: 1.5rem;
    color: #818181;
  }


/* Post styles */
/* ----------------------------------------------------------*/

.post-header {
  margin: 1em 0;
}
  @media (min-width: 768px) {
    .post-header {
      margin-bottom: 1em;
      margin-top: 2em;
    }
  }
  .post-header h1 {
    font-size: 4.2rem;
    letter-spacing: -1px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
  }
  .post-header .meta {
    font-size: 1.5rem;
    color: #818181;
  }
  .post-header .tags {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 1rem;
  }
    .post-header .tags a {
      display: inline-block;
      margin-right: 0.35rem;
    }

.post-header-image.full-entry {
  max-height: 200px;
  overflow: hidden;
}
  @media (min-width: 768px) {
    .post-header-image.full-entry {
      margin-top: 2em;
      max-height: none;
      overflow: auto;
    }
  }
  .post-header-image.full-entry img {
    /*
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 55%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 55%);
    */
  }
    @media (min-width: 768px) {
      .post-header-image.full-entry img {
        -webkit-mask-image: none;
        mask-image: none;
        max-width: none;
        width: 100%;
      }
    }

.post-content {
  margin: 0 0 30px;
}
  .post-content > * {
    margin: 20px 0;
  }

  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content h6 {
    line-height: 1;
    font-weight: 300;
    margin: 40px 0 20px;
  }

  .post-content h2 {
    font-size: 3.2rem;
    letter-spacing: -1.25px;
  }
  .post-content h3 {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }
  .post-content h4 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .post-content blockquote {
    border-left: 4px solid #e8e8e8;
    padding-left: 20px;
    font-size: 1.75rem;
    opacity: .6;
    letter-spacing: -1px;
    font-style: italic;
    margin: 30px 0;
  }

  .post-content ul,
  .post-content ol {
    padding-left: 10px;
  }

.post {
  margin: 0;
}
  .post pre,
  .post code {
    background-color: #eef;
    border: 1px solid #d5d5e9;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 1.5rem;
    padding: 8px;
  }
  .post code {
    padding: 1px 5px;
    white-space: pre-line;
  }

  .post ul,
  .post ol { margin-left: 0; }

  .post pre code {
    border: none;
    overflow: auto;
    white-space: pre;
  }

  .post pre.terminal {
    border: 1px solid #000;
    background-color: #333;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
    .post pre.terminal code { background-color: #333; }

  .post .post-date {
    font-size: 1.4rem;
  }

  .post .tag a {
    font-size: 1.3rem;
  }

/* Syntax highlighting styles */
/* ----------------------------------------------------------*/

.highlight  { background: #ffffff; }
.highlight .c { color: #999988; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { font-weight: bold } /* Keyword */
.highlight .o { font-weight: bold } /* Operator */
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #999999 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { font-weight: bold } /* Keyword.Constant */
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #009999 } /* Literal.Number */
.highlight .s { color: #d14 } /* Literal.String */
.highlight .na { color: #008080 } /* Name.Attribute */
.highlight .nb { color: #0086B3 } /* Name.Builtin */
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
.highlight .no { color: #008080 } /* Name.Constant */
.highlight .ni { color: #800080 } /* Name.Entity */
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
.highlight .nn { color: #555555 } /* Name.Namespace */
.highlight .nt { color: #000080 } /* Name.Tag */
.highlight .nv { color: #008080 } /* Name.Variable */
.highlight .ow { font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mf { color: #009999 } /* Literal.Number.Float */
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
.highlight .sc { color: #d14 } /* Literal.String.Char */
.highlight .sd { color: #d14 } /* Literal.String.Doc */
.highlight .s2 { color: #d14 } /* Literal.String.Double */
.highlight .se { color: #d14 } /* Literal.String.Escape */
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
.highlight .si { color: #d14 } /* Literal.String.Interpol */
.highlight .sx { color: #d14 } /* Literal.String.Other */
.highlight .sr { color: #009926 } /* Literal.String.Regex */
.highlight .s1 { color: #d14 } /* Literal.String.Single */
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #008080 } /* Name.Variable.Class */
.highlight .vg { color: #008080 } /* Name.Variable.Global */
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */


/* media queries */
/* ----------------------------------------------------------*/


@media screen and (max-width: 750px) {
  .footer-col-1 { width: 50%; }

  .footer-col-2 {
    width: 45%; /*fallback*/
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: -o-calc(50% - 10px);
    width: calc(50% - 10px);
    margin-right: 0;
  }

  .post-header h1 { font-size: 3.2rem; }

  #site-footer .column.footer-col-3 {
    width: auto;
    float: none;
    clear: both;
  }
}

@media screen and (max-width: 600px) {
  .wrap {
    padding: 0 12px;
  }

  .site-nav .page-link {
    /* display: block;
    text-align: right;
    line-height: 1.25;
    padding: 5px 10px; */
    margin-left: 10px;
  }

  .post-header h1 { font-size: 2.4rem; }
  .post-content h2 { font-size: 2.8rem; }
  .post-content h3 { font-size: 2.2rem; }
  .post-content h4 { font-size: 1.8rem; }
  .post-content blockquote { padding-left: 10px; }
  .post-content ul,
  .post-content ol { padding-left: 10px; }

  #site-footer .column {
    float: none;
    clear: both;
    width: auto;
    margin: 0 0 15px;
  }
}

.post-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2em;
}
  @media (min-width: 768px) {
    .post-nav {
      flex-direction: row;
    }
      .post-nav .card {
        width: 300px;
      }
  }
  .post-nav a {
    color: var(--link-color-rev);
    text-decoration: none;
  }
    .post-nav a:hover {
      color: var(--link-color);
    }
  .post-nav .card {
    border-radius: 4px;
    box-shadow: 10px 10px 0 #888888;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
  }
    .post-nav .card.post-nav-prev {
      background-color: var(--link-color-faded2);
    }
    .post-nav .card.post-nav-next {
      background-color: var(--link-color);
      text-align: right;
    }
    .post-nav .card:hover {
      background-color: var(--link-color-rev);
    }
      .post-nav .card .page-title {
        font-size: 2rem;
        font-weight: 700;
      }

/* page-specific */

.page-tag article {
  padding-top: 0;
}

.page-tag ul {
  margin-top: 10px;
}

.tag-meta {
  margin-bottom: 0.5em;
  margin-left: 1.4em;
}
  .tag-meta .tag {
    font-size: 1.3rem;
    line-height: 1.3;
  }

#tag-cloud {
  align-items: center;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
  @media (min-width: 550px) {
    #tag-cloud {
      flex-flow: wrap;
    }
  }
  #tag-cloud a {
    background-color: var(--link-color);
    border-radius: 5px;
    color: #ffffff;
    margin: 5px 2px;
    padding: 4px 8px;
    width: 100%;
  }
    @media (min-width: 550px) {
      #tag-cloud a {
        width: auto;
      }
    }
    #tag-cloud a:hover {
      background-color: #ffffff;
      color: var(--link-color);
      text-decoration: none;
    }
    #tag-cloud a.tag-size-5 {
      font-size: 2.10rem;
    }

    #tag-cloud a.tag-size-4 {
      background-color: var(--link-color-faded4);
      font-size: 2.00rem;
    }
      #tag-cloud a.tag-size-4:hover {
        background-color: #ffffff;
        color: var(--link-color-faded4);
      }

    #tag-cloud a.tag-size-3 {
      background-color: var(--link-color-faded3);
      font-size: 1.80rem;
    }
      #tag-cloud a.tag-size-3:hover {
        background-color: #ffffff;
        color: var(--link-color-faded3);
      }

    #tag-cloud a.tag-size-2 {
      background-color: var(--link-color-faded2);
      font-size: 1.60rem;
    }
      #tag-cloud a.tag-size-2:hover {
        background-color: #ffffff;
        color: var(--link-color-faded2);
      }

    #tag-cloud a.tag-size-1 {
      background-color: var(--link-color-faded1);
      font-size: 1.30rem;
    }
      #tag-cloud a.tag-size-1:hover {
        background-color: #ffffff;
        color: var(--link-color-faded1);
      }

.js-accordion-controller {
  cursor: pointer;
}
  .js-accordion-controller:hover {
    color: var(--link-color);
  }

.musical-tone {
  background-color: var(--link-color);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--link-color-rev);
  display: inline-block;
  height: 26px;
  padding: 0 4px 4px;
}
  @media (hover: hover) {
    .musical-tone:hover {
      background-color: var(--link-color-rev);
      border: 1px solid var(--link-color);
      color: var(--link-color);
      text-decoration: none;
    }
  }
  .musical-tone::before {
    content: '♪';
    margin-right: 5px;
  }

/* spinner */
.lds-dual-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  margin: 4px;
  border-radius: 50%;
  border: 2px solid #000;
  border-color: #000 transparent #000 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Github-powered commentes */
.utterances {
  margin: 0;
  max-width: 800px;
}
