@charset "UTF-8";
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
a {
  background: 0 0;
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: 700;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled], html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: 700;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-primary);
  font-size: 1em;
  line-height: 1.75em;
  font-weight: 400;
  color: var(--color-content-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--color-background-main);
}
body.menu-active {
  overflow-y: hidden;
}
button, input, select, textarea {
  transition: all ease-out 0.2s;
}
.container {
  position: relative;
}
.container .post .post-box {
  padding-top: calc(4rem + 2vw);
  padding-bottom: calc(4rem + 2vw);
  border-bottom: 1px solid var(--color-background-contrast);
}
.container #results .post:first-child .post-box {
  border-top: 1px solid var(--color-background-contrast);
}
.container .post.featured .post-title:after {
  position: absolute;
  width: 4rem;
  height: 4rem;
  left: -4rem;
  top: 0;
  font-family: "icon";
  font-size: 0.5em;
  font-style: normal;
  font-weight: normal;
  content: "";
  color: #FFC336;
  text-align: center;
}
/* ==========================================================================
   Reading Progress
   ========================================================================== */
.progress-container {
  position: fixed;
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: all ease-out 0.2s;
}
.progress-container.complete {
  transform: translateY(-3px);
}
.progress-bar {
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-primary);
}
/* ==========================================================================
   Post
   ========================================================================== */
.post-header {
  position: relative;
  padding: calc(16rem + 4vw) 0 calc(2rem + 2vw);
}
.post-header.has-cover {
  padding: calc(16rem + 8vw) 0 calc(4rem + 6vw);
  margin-bottom: calc(4rem + 2vw);
  background: black;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.post-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  background: no-repeat scroll center center / cover #000;
  animation: 0.5s ease-in forwards fadein;
  display: flex;
  align-items: center;
}
.post-cover img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 6;
  object-fit: cover;
}
.post-cover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 66.666%;
  left: 0;
  bottom: 0;
  z-index: 8;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.333) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.333) 100%);
}
.post {
  position: relative;
  z-index: 10;
}
.post-info {
  position: relative;
  z-index: 10;
  display: flex;
  margin-bottom: 2rem;
  font-size: 2em;
  line-height: 1em;
}
.post-info .post-type {
  color: var(--color-primary);
}
.post-info .post-count {
  position: relative;
  margin-inline-start: 3.5rem;
  color: var(--color-content-secondary);
}
.post-info .post-count:after {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--color-background-contrast);
}
.has-cover .post-info .post-count {
  color: white;
}
.has-cover .post-info .post-count:after {
  background: white;
}
.has-cover .post-info .post-type {
  color: white;
}
.post-title {
  position: relative;
  z-index: 10;
  margin: 0 0 2rem;
  font-size: 4em;
  line-height: 1.25em;
  font-weight: 700;
  text-indent: -1px;
  color: var(--color-content-lead);
}
@media only screen and (max-width: 480px) {
  .post-title {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.post-title a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}
.post-header .post-title {
  margin: 0 0 4rem;
  font-size: 6em;
  line-height: 1.25em;
}
.has-cover .post-title {
  color: white;
}
.post-meta {
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2rem;
  color: var(--color-content-secondary);
}
.post-meta a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.post-meta a:focus, .post-meta a:hover {
  text-decoration: underline;
}
.post-header .post-meta {
  position: relative;
  padding-bottom: 4rem;
  z-index: 10;
}
.post-header .post-meta:after {
  clear: both;
  content: "";
  display: table;
}
.post-header .post-meta:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8rem;
  height: 1px;
  background: var(--color-background-contrast);
}
.post-header .post-meta .post-meta-avatars {
  float: left;
  margin-inline-end: 1rem;
}
.post-header .post-meta .post-meta-avatars:after {
  clear: both;
  content: "";
  display: table;
}
.post-header .post-meta .post-meta-avatars .post-meta-avatar {
  float: left;
  display: block;
  vertical-align: top;
  width: 4rem;
  height: 4rem;
  margin-inline-end: -1rem;
  border-radius: 100%;
}
.post-header .post-meta .post-meta-avatars .post-meta-avatar:last-child {
  margin-inline-end: 0;
}
.post-header .post-meta .post-meta-avatars .post-meta-avatar a {
  height: 100%;
}
.post-header .post-meta .post-meta-author {
  color: var(--color-content-main);
  font-weight: 500;
  margin: 0;
}
.has-cover .post-meta {
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}
.has-cover .post-meta:before {
  display: none;
}
.has-cover .post-meta .post-meta-avatar {
  border-color: white;
}
.has-cover .post-meta .post-meta-author {
  color: white;
}
.post-excerpt {
  margin: 1em 0 0;
  font-family: var(--font-secondary);
  font-size: 1.75em;
  line-height: 2em;
}
.post-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-content > * {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.post-content > *:last-child {
  margin-bottom: 0;
}
.post-content > *:first-child {
  margin-top: 0;
}
/* ==========================================================================
   Post Info
   ========================================================================== */
.post-footer {
  margin: 12rem 0 6rem;
}
.post-footer:after {
  clear: both;
  content: "";
  display: table;
}
.post-info-label {
  margin-inline-end: 0.75em;
  font-size: 1.6em;
  line-height: 3rem;
  font-weight: 400;
  color: var(--color-content-secondary);
}
.post-share {
  position: relative;
  max-width: 33.33333%;
  float: right;
  display: flex;
}
@media only screen and (max-width: 640px) {
  .post-share {
    max-width: none;
    float: none;
    margin-bottom: 2rem;
  }
}
.post-share a {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-inline-end: 0.5em;
  padding: 0;
  font-size: 1.6em;
  line-height: 3rem;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 2em;
  transition: all ease 0.2s;
}
@media only screen and (max-width: 640px) {
  .post-share a {
    margin-inline-start: 0;
    margin-inline-end: 0.66667em;
  }
}
.post-share a:focus, .post-share a:hover {
  opacity: 0.92;
}
.post-share a:last-child {
  margin-inline-end: 0;
}
.post-share a i {
  color: inherit;
}
.post-share a i:before {
  width: auto;
  height: auto;
}
.post-share .twitter {
  background-color: #3ea9dd;
}
.post-share .facebook {
  background-color: #3c5a98;
}
.post-share .linkedin {
  background-color: #0e76a8;
}
.post-share .email {
  background-color: #2997ee;
}
.post-tags {
  position: relative;
  max-width: 66.66666%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .post-tags {
    max-width: none;
    float: none;
    margin-bottom: 2rem;
  }
}
.post-tags a {
  display: inline-block;
  margin-inline-end: 0.5em;
  margin-bottom: 0.5em;
  padding: 0 1.5rem;
  background: var(--color-primary);
  font-size: 1.6em;
  font-weight: 500;
  line-height: 3rem;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 2em;
  transition: all ease 0.2s;
  box-sizing: border-box;
  white-space: nowrap;
}
.post-tags a:focus, .post-tags a:hover {
  opacity: 0.92;
}
/* ==========================================================================
   Post Comments
   ========================================================================== */
.post-comments {
  position: relative;
  padding: 4rem;
  text-align: center;
  border-top: 1px solid var(--color-background-contrast);
  border-bottom: 1px solid var(--color-background-contrast);
  box-sizing: border-box;
}
.post-comments.activated {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-background-contrast);
}
.post-comments-activate {
  display: inline-block;
  height: 4rem;
  margin: 2rem 0;
  padding: 0 2rem;
  border: 1px solid var(--color-background-contrast);
  font-weight: 500;
  font-size: 1.6em;
  line-height: 4rem;
  color: var(--color-content-secondary);
  text-align: center;
  cursor: pointer;
  transition: all ease 0.2s;
  border-radius: 2em;
}
.post-comments-activate:focus, .post-comments-activate:hover {
  color: var(--color-content-main);
  border-color: var(--color-primary);
}
.activated .post-comments-activate {
  display: none;
}
/* ==========================================================================
   Post Nav
   ========================================================================== */
.post-nav {
  position: relative;
  margin-top: -1px;
  border-top: 1px solid var(--color-background-contrast);
  border-bottom: 1px solid var(--color-background-contrast);
}
.post-nav:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background: var(--color-background-contrast);
  z-index: 2;
}
@media only screen and (max-width: 640px) {
  .post-nav:after {
    display: none;
  }
}
.post-nav-next, .post-nav-prev {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 50%;
}
@media only screen and (max-width: 640px) {
  .post-nav-next, .post-nav-prev {
    display: block;
    width: 100%;
  }
}
.post-nav-next:focus, .post-nav-next:hover, .post-nav-prev:focus, .post-nav-prev:hover {
  color: inherit;
}
.post-nav-next:focus i, .post-nav-next:hover i, .post-nav-prev:focus i, .post-nav-prev:hover i {
  color: var(--color-primary);
}
.post-nav-next {
  float: left;
}
.post-nav-next .post-nav-teaser {
  padding-right: 3rem;
}
@media only screen and (max-width: 640px) {
  .post-nav-next .post-nav-teaser {
    padding-right: 0;
  }
}
.post-nav-prev {
  float: right;
}
.post-nav-prev .post-nav-teaser {
  padding-left: 3rem;
}
@media only screen and (max-width: 640px) {
  .post-nav-prev .post-nav-teaser {
    padding-left: 0;
  }
}
.post-nav-teaser {
  position: relative;
  padding: 2rem 0;
  min-height: 8rem;
}
@media only screen and (max-width: 640px) {
  .post-nav-teaser {
    min-height: 4em;
    padding: 2em 0;
  }
  .post-nav-teaser:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    margin-bottom: -1px;
    background: var(--color-background-contrast);
    z-index: 2;
  }
}
.post-nav i {
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
  margin-top: -2rem;
  font-size: 4rem;
  line-height: 4rem;
  text-align: center;
  transition: all ease-out 0.2s;
  color: var(--color-background-contrast);
}
.post-nav i:before {
  margin: 0;
  width: auto;
}
.post-nav-next i {
  left: 0;
  margin-left: -4rem;
}
.post-nav-prev i {
  right: 0;
  margin-right: -4rem;
}
.post-nav-title {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 2em;
  line-height: 3rem;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-content-lead);
}
.post-nav-excerpt {
  height: 5rem;
  margin: 0 0 1rem;
  font-family: var(--font-secondary);
  font-size: 1.5em;
  line-height: 2.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-nav-meta {
  margin: 0;
  font-size: 1.6em;
  line-height: 2rem;
  color: var(--color-content-secondary);
}
.post-content {
  font-size: 1.75em;
  line-height: 2em;
}
.post-content a:not([class]) {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  box-shadow: inset 0 -2px 0 var(--color-primary);
  transition: all ease-out 0.1s;
}
.post-content a:not([class]):focus, .post-content a:not([class]):hover {
  box-shadow: inset 0 -3px 0 var(--color-primary);
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  line-height: 1.25em;
  margin: 0 0 4rem;
  text-rendering: optimizeLegibility;
  color: var(--color-content-lead);
}
.post-content h1 {
  font-size: 4rem;
  text-indent: -1px;
}
.post-content h2 {
  font-size: 3rem;
  text-indent: -1px;
}
.post-content h3 {
  font-size: 2.4rem;
}
.post-content h4 {
  font-size: 2rem;
}
.post-content h5, .post-content h6 {
  font-size: 2rem;
  font-weight: 500;
}
.post-content h1 a[href^="#"], .post-content h2 a[href^="#"], .post-content h3 a[href^="#"], .post-content h4 a[href^="#"], .post-content h5 a[href^="#"], .post-content h6 a[href^="#"] {
  text-decoration: none;
  box-shadow: none;
}
.post-content p {
  font-family: var(--font-secondary);
  margin: 0 0 4rem;
}
.post-content ol, .post-content ul {
  font-family: var(--font-secondary);
  margin: 0 0 4rem;
  padding-left: 2em;
  box-sizing: border-box;
}
.post-content ol {
  list-style-type: none;
  counter-reset: item;
}
.post-content li {
  position: relative;
}
.post-content li::marker {
  color: transparent;
}
.post-content li p {
  margin: 0;
}
.post-content ol > li:before, .post-content ul > li:before {
  position: absolute;
  width: 1.5em;
  margin-inline-start: -2em;
  font-size: 1em;
  font-weight: 500;
  line-height: 2em;
  text-align: right;
  color: var(--color-primary);
  font-family: var(--font-primary);
}
.post-content ul > li:before {
  margin-top: -1px;
  content: "—" !important;
}
.post-content ol > li:before {
  content: counter(item) ". " !important;
  counter-increment: item;
}
.post-content ol ol, .post-content ol ul, .post-content ul ol, .post-content ul ul {
  padding-left: 30px;
  margin: 15px 0;
}
.post-content hr {
  display: block;
  height: 1px;
  margin: 0 0 4rem;
  padding: 0;
  background: var(--color-background-contrast);
  border: 0;
}
.post-content blockquote {
  font-family: var(--font-secondary);
  margin: 0 0 4rem;
  padding: 0.25em 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-inline-start: 0.25em solid var(--color-primary);
  font-style: italic;
  font-weight: 400;
}
.post-content blockquote * {
  margin: 0 0 1em;
  font-family: inherit;
  color: inherit;
}
.post-content blockquote *:first-child {
  margin-top: 0;
}
.post-content blockquote *:last-child {
  margin-bottom: 0;
}
.post-content em, .post-content i {
  font-style: italic;
}
.post-content b, .post-content strong {
  font-weight: 700;
  color: var(--color-content-lead);
}
.post-content small {
  font-size: 0.9em;
}
.post-content dl {
  font-family: var(--font-secondary);
  margin: 0 0 4rem;
  padding-left: 30px;
}
.post-content dl dt {
  font-weight: 500;
  font-size: 0.75em;
  line-height: 1.25em;
  font-weight: 700;
  margin-bottom: 0.33334em;
  font-family: var(--font-primary);
}
.post-content dl dt:before {
  content: "";
  position: absolute;
  width: 1em;
  height: 2px;
  margin-left: -30px;
  margin-top: 0.5em;
  background: var(--color-primary);
}
.post-content dl dd {
  margin-left: 0;
  margin-bottom: 1em;
}
.post-content mark {
  background-color: #FFC336;
}
.post-content code, .post-content tt {
  position: relative;
  margin: 0 1px;
  padding: 4px 8px;
  font-family: monospace, sans-serif;
  font-size: 0.75em;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-background-contrast);
  top: -2px;
  white-space: pre-wrap;
}
.post-content pre {
  position: relative;
  margin: 0 0 4rem;
  overflow: hidden;
  font-family: monospace, sans-serif;
  white-space: pre;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-background-contrast);
  box-sizing: border-box;
  direction: ltr;
}
.post-content pre .line {
  display: block;
  padding-right: 0.33334em;
}
.post-content pre .line-number {
  padding: 0 6px;
}
.post-content pre code, .post-content pre tt {
  display: block;
  position: static;
  top: auto;
  padding: 1.33334em 0;
  overflow-x: auto;
  font-size: 0.75em;
  line-height: 2em;
  white-space: pre;
  background: transparent;
  border: none;
  vertical-align: inherit;
}
.post-content pre code.language-text {
  margin-inline-start: -1.33334em;
}
.post-content kbd {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 1px 8px;
  border: 1px solid var(--color-background-contrast);
  text-shadow: 0 1px 0 white;
  font-size: 0.9em;
  font-weight: bold;
  background: var(--color-background-secondary);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 0 white inset;
}
.post-content .table-container {
  overflow-x: auto;
}
.post-content table {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 0 4rem;
  border: 1px solid var(--color-background-contrast);
  background: var(--color-background-secondary);
}
@media (max-width: 640px) {
  .post-content table {
    display: block;
    border: none;
    overflow-x: auto;
    box-shadow: inset 0 0 0 1px var(--color-background-contrast);
  }
}
.post-content table td, .post-content table th {
  position: relative;
  padding: 1.5rem;
  font-size: 0.75em;
  line-height: 1.33334em;
  border: 1px solid var(--color-background-contrast);
}
.post-content table th {
  text-align: left;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.75em;
  line-height: 1.33334em;
  color: var(--color-content-secondary);
}
.post-content img {
  display: block;
  max-width: 100%;
  height: auto;
}
.post-content figure {
  margin: 0 0 4rem;
}
.post-content figure figcaption {
  position: relative;
  color: var(--color-content-secondary);
  max-width: calc(64rem + 8vw);
  margin: auto;
  font-size: 0.75em;
  line-height: 2em;
  padding: 2rem 0;
}
.post-content figure figcaption:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8rem;
  height: 1px;
  background: var(--color-background-contrast);
}
.post-content figure figcaption a {
  box-shadow: inset 0 -1px 0 var(--color-background-contrast);
}
.post-content figure figcaption a:focus, .post-content figure figcaption a:hover {
  box-shadow: inset 0 -2px 0 var(--color-background-contrast);
}
.post-content aside {
  padding: 3rem;
  padding-right: 6rem;
  margin: 0 0 4rem;
  position: relative;
}
.post-content aside span {
  position: absolute;
  right: 3rem;
  font-size: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
.post-content a.bookmark {
  width: 100%;
  margin: 0 0 4rem;
  display: flex;
  text-decoration: none;
  min-height: 8em;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-background-contrast);
  box-shadow: none !important;
  overflow: hidden;
}
.post-content a.bookmark .bookmark-details {
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  justify-content: start;
  padding: 1.5em;
  color: var(--color-content-secondary);
}
.post-content a.bookmark .bookmark-details .bookmark-title {
  color: var(--color-content-main);
  font-size: 0.75em;
  line-height: 1.66667em;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.post-content a.bookmark .bookmark-details .bookmark-description {
  display: -webkit-box;
  font-size: 0.75em;
  line-height: 1.66667em;
  font-weight: 400;
  margin-top: 0.33334em;
  max-height: 3.33334em;
  overflow-y: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-content a.bookmark .bookmark-details .bookmark-domain {
  text-rendering: optimizeLegibility;
  display: flex;
  align-items: center;
  font-size: 0.75em;
  line-height: 1.66667em;
  color: var(--color-content-main);
  font-weight: 400;
  margin-top: 1em;
  flex-wrap: wrap;
}
.post-content a.bookmark .bookmark-thumbnail {
  position: relative;
  min-width: 33%;
  max-height: 100%;
}
@media screen and (max-width: 640px) {
  .post-content a.bookmark {
    flex-direction: column-reverse;
  }
  .post-content a.bookmark .bookmark-thumbnail {
    width: 100%;
    min-height: 160px;
  }
}
.post-content audio {
  margin-bottom: 4rem;
  display: block;
}
.blog-header {
  position: relative;
  padding-top: calc(16rem + 4vw);
}
.blog-header.has-cover {
  padding-top: calc(24rem + 8vw);
  color: white;
  background: black;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.blog-header.has-cover:after {
  display: none;
}
.blog-header .blog-box {
  position: relative;
  z-index: 10;
  padding-bottom: calc(4rem + 2vw);
  text-align: center;
  border-bottom: 1px solid var(--color-background-contrast);
}
.blog-header.has-cover .blog-box {
  border: none;
  padding-bottom: calc(8rem + 4vw);
}
.blog-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  background: no-repeat scroll center center / cover #000;
  animation: 0.5s ease-in forwards fadein;
  display: flex;
  align-items: center;
}
.blog-cover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 66.666%;
  left: 0;
  bottom: 0;
  z-index: 8;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.333) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.333) 100%);
}
.blog-cover img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 6;
  object-fit: cover;
}
.blog-name {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 6em;
  line-height: 1em;
  text-decoration: none;
  color: var(--color-content-lead);
}
.has-cover .blog-name {
  color: white;
}
.blog-description {
  font-family: var(--font-secondary);
  display: block;
  margin-top: 1rem;
  padding: 0;
  font-size: 3em;
  line-height: 1.33334em;
  color: var(--color-content-secondary);
}
.has-cover .blog-description {
  color: white;
}
.archive {
  position: relative;
  z-index: 10;
}
.archive.archive-box {
  padding-bottom: calc(4rem + 2vw);
  border-bottom: 1px solid var(--color-background-contrast);
}
.archive .archive-info {
  display: flex;
  margin-bottom: 2rem;
  font-size: 2em;
  line-height: 1em;
}
.archive .archive-info .archive-type {
  color: var(--color-primary);
}
.archive .archive-info .archive-count {
  position: relative;
  margin-inline-start: 3.5rem;
  color: var(--color-content-secondary);
}
.archive .archive-info .archive-count:after {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--color-background-contrast);
}
.archive .archive-title {
  font-size: 4em;
  line-height: 1em;
  margin: 1rem 0;
  color: var(--color-content-lead);
}
.archive .archive-description {
  display: block;
  font-size: 2em;
  line-height: 1.5em;
  margin: 1rem 0;
  font-family: var(--font-secondary);
  color: var(--color-content-secondary);
}
.archive .archive-links {
  display: block;
  font-size: 2em;
  line-height: 1.5em;
  margin-top: 1rem;
}
.archive .archive-links ul {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.archive .archive-links a {
  text-decoration: none;
}
.archive .archive-links a i {
  margin: 0 5px;
}
.archive .archive-links a span {
  display: none;
}
.archive a {
  color: var(--color-primary);
  transition: color linear 0.1s;
}
.archive a:focus, .archive a:hover {
  opacity: 0.92;
}
.archive.archive-author {
  padding-inline-start: 16rem;
}
@media only screen and (max-width: 640px) {
  .archive.archive-author {
    padding-inline-start: 0;
    padding-inline-end: 10rem;
  }
}
.archive.archive-author .archive-avatar {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 8rem;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .archive.archive-author .archive-avatar {
    left: auto;
    right: 0;
    top: 2rem;
    width: 8rem;
    height: 8rem;
  }
}
.archive .archive-taglist {
  display: block;
  margin: 2rem 0 1rem;
  max-width: none;
  float: none;
}
.has-cover .archive.archive-box {
  border: none;
}
.has-cover .archive .archive-info span {
  color: white;
}
.has-cover .archive .archive-title {
  color: white;
}
.has-cover .archive .archive-description {
  color: rgba(255, 255, 255, 0.8);
}
.has-cover .archive a {
  color: rgba(255, 255, 255, 0.8);
}
.has-cover .archive a:focus, .has-cover .archive a:hover {
  color: white;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  padding-right: 0;
}
.inner {
  max-width: calc(64rem + 8vw);
  margin: 0 auto;
  padding: 0 8rem;
}
@media only screen and (max-width: 640px) {
  .inner {
    padding: 0 4rem;
  }
}
.nav-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 640px) {
  .nav-header {
    transform: translate3d(0, -100%, 0);
  }
}
.menu-active .nav-header {
  transform: translate3d(0, 0, 0);
}
.nav-close {
  position: fixed;
  z-index: 350;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: var(--color-background-overlay);
}
@media only screen and (max-width: 640px) {
  .menu-active .nav-close {
    display: block;
  }
}
.nav-header .nav-wrapper-control {
  position: absolute;
  z-index: 500;
  left: 0;
  top: 100%;
  width: 100%;
  cursor: pointer;
  display: none;
  color: var(--color-content-secondary);
  border-top: 1px solid transparent;
  box-sizing: border-box;
  transition: all linear 0.1s;
}
@media only screen and (max-width: 640px) {
  .nav-header .nav-wrapper-control {
    display: block;
  }
}
.nav-header .nav-wrapper-control .inner {
  display: flex;
  justify-content: space-between;
}
.nav-header .nav-wrapper-control a {
  position: relative;
  display: block;
  width: 100%;
  padding: 2rem 0;
  font-size: 2em;
  line-height: 2rem;
  color: inherit;
  transition: all ease-out 0.1s;
}
.nav-header .nav-wrapper-control a i {
  display: inline-block;
  width: 4rem;
}
.nav-header .nav-wrapper-control a.nav-search {
  width: auto;
  text-align: right;
}
.nav-header .nav-wrapper-control a:focus, .nav-header .nav-wrapper-control a:hover {
  color: var(--color-content-main);
}
.cover-active .nav-header .nav-wrapper-control {
  color: white;
}
.menu-active .nav-header .nav-wrapper-control {
  background: #222426;
  color: var(--color-content-secondary);
  border-color: #3B3D40;
}
@supports (-webkit-backdrop-filter: blur(2rem)) {
  .menu-active .nav-header .nav-wrapper-control {
    background: rgba(34, 36, 38, 0.9);
    -webkit-backdrop-filter: blur(2rem);
  }
}
.menu-active .nav-header .nav-wrapper-control a:focus, .menu-active .nav-header .nav-wrapper-control a:hover {
  color: var(--color-content-main-dark);
}
.nav-header .nav-wrapper {
  display: flex;
  max-height: calc(100vh - 6rem);
  padding: 2rem 4rem;
}
@media only screen and (max-width: 640px) {
  .nav-header .nav-wrapper {
    background: #222426;
    flex-direction: column;
    overflow-y: auto;
  }
  @supports (-webkit-backdrop-filter: blur(2rem)) {
    .nav-header .nav-wrapper {
      background: rgba(34, 36, 38, 0.9);
      -webkit-backdrop-filter: blur(2rem);
    }
  }
}
.nav-header .logo {
  margin-inline-end: 3rem;
}
@media only screen and (max-width: 640px) {
  .nav-header .logo {
    display: none;
  }
}
.nav-header .logo .logo-placeholder {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--color-background-contrast);
}
.nav-header .logo a {
  display: block;
  height: 4rem;
  padding: 0;
}
.nav-header .logo a img {
  display: block;
  width: auto;
  height: 4rem;
}
.nav-header ul {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 640px) {
  .nav-header ul {
    flex-direction: column;
    flex-shrink: 0;
    padding: 2rem 0;
  }
}
.nav-header ul.nav-meta {
  width: auto;
  justify-content: flex-end;
}
@media only screen and (max-width: 640px) {
  .nav-header ul.nav-meta {
    width: 100%;
    flex-direction: row !important;
    padding: 0;
  }
}
.nav-header li {
  position: relative;
  margin-inline-end: 3rem;
}
.nav-header li.active a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  padding: 0 1rem;
  margin-left: -1rem;
  margin-top: -2rem;
  background: var(--color-primary);
}
@media only screen and (max-width: 640px) {
  .nav-header li.active a:before {
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    margin-left: 6px;
    margin-top: -1px;
    border-radius: 2px;
    padding: 0;
  }
}
.nav-header li.active a {
  color: var(--color-content-main);
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .nav-header li.active a {
    color: white;
  }
}
.nav-header li.nav-subscribe a, .nav-header li.nac-account a {
  display: block;
  border-radius: 2rem;
  margin: 0.125rem 0;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-background-contrast);
  background: transparent;
  white-space: nowrap;
  font-size: 1.5em;
  line-height: 2rem;
  color: var(--color-content-secondary);
  font-weight: 500;
  text-align: center;
}
.nav-header li.nav-subscribe a:focus, .nav-header li.nav-subscribe a:hover, .nav-header li.nac-account a:focus, .nav-header li.nac-account a:hover {
  color: var(--color-content-main);
  border-color: var(--color-primary);
}
@media only screen and (max-width: 640px) {
  .nav-header li.nav-subscribe a, .nav-header li.nac-account a {
    border-color: #3B3D40;
  }
  .nav-header li.nav-subscribe a:focus, .nav-header li.nav-subscribe a:hover, .nav-header li.nac-account a:focus, .nav-header li.nac-account a:hover {
    color: #E1E3E6;
  }
}
.nav-header li.nav-subscribe a:before, .nav-header li.nac-account a:before {
  display: none !important;
}
.nav-header li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.6em;
  line-height: 2rem;
  color: var(--color-content-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: color linear 0.1s;
}
@media only screen and (max-width: 640px) {
  .nav-header li a {
    font-size: 2em;
    padding-left: 4rem;
  }
  .nav-header li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    margin-left: 6px;
    margin-top: -1px;
    border-radius: 2px;
    background: #3B3D40;
  }
}
.nav-header li a:focus, .nav-header li a:hover {
  color: var(--color-content-main);
}
@media only screen and (max-width: 640px) {
  .nav-header li a:focus, .nav-header li a:hover {
    color: #C4C7CC;
  }
}
.nav-header li:last-child {
  margin-inline-end: 0;
}
.nav-meta li {
  margin-inline-end: 1rem;
}
@media only screen and (max-width: 640px) {
  .nav-meta li {
    flex-grow: 1;
  }
}
.nav-meta li.nav-lang {
  margin-inline-end: 20px;
  position: relative;
}
.nav-meta li.nav-lang .lang-selector {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 10px 24px;
  background: #222426;
  z-index: 1;
}
.nav-meta li.nav-lang .lang-selector.open {
  display: block;
}
.nav-meta li.nav-lang .lang-selector a {
  position: relative;
  margin-inline-start: 25px;
}
.nav-meta li.nav-lang .lang-selector a:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  margin-inline-start: 6px;
  margin-top: -1px;
  border-radius: 2px;
  background: #3B3D40;
  margin-inline-end: 10px;
}
.nav-meta li.nav-lang .lang-selector a:hover {
  color: #C4C7CC;
}
.nav-meta li.nav-lang .lang-selector a.active {
  color: white;
}
.nav-meta li.nav-lang .lang-selector a.active:before {
  background: var(--color-primary);
}
.nav-meta li.nav-lang .lang-selector-closer {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.nav-meta li.nav-lang .lang-selector-closer.open {
  display: block;
}
@media only screen and (max-width: 640px) {
  .nav-meta li.nav-lang {
    border-top: 1px solid var(--color-content-secondary);
    padding-top: 2rem;
  }
  .nav-meta li.nav-lang .lang-label {
    display: none;
  }
  .nav-meta li.nav-lang .lang-selector {
    display: block;
    position: relative;
    padding: 0;
    top: 0;
  }
  .nav-meta li.nav-lang .lang-selector a {
    margin-inline-start: 0;
  }
}
@media only screen and (max-width: 640px) {
  .nav-meta li.social {
    display: none;
  }
}
.nav-meta li a {
  font-size: 1.75em;
}
.nav-meta li span {
  display: none;
}
.nav-meta li i {
  margin: 0 5px;
}
.nav-meta li.nav-search {
  display: block !important;
}
@media only screen and (max-width: 640px) {
  .nav-meta li.nav-search {
    display: none !important;
  }
}
.nav-wrapper-control .nav-search {
  display: block !important;
}
.cover-active .nav-wrapper-control a {
  color: rgba(255, 255, 255, 0.8);
}
.cover-active .nav-wrapper-control a:focus, .cover-active .nav-wrapper-control a:hover {
  color: white;
}
@media only screen and (min-width: 640px) {
  .cover-active .nav-header li a {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (min-width: 640px) {
  .cover-active .nav-header li a:focus, .cover-active .nav-header li a:hover {
    color: white;
    border-color: white;
  }
}
@media only screen and (min-width: 640px) {
  .cover-active .nav-header li.nav-subscribe a, .cover-active .nav-header li.nac-account a {
    color: #222426;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (min-width: 640px) {
  .cover-active .nav-header li.nav-subscribe a:focus, .cover-active .nav-header li.nav-subscribe a:hover, .cover-active .nav-header li.nac-account a:focus, .cover-active .nav-header li.nac-account a:hover {
    background-color: white;
  }
}
@media only screen and (min-width: 640px) {
  .cover-active .nav-header li.active a {
    color: white;
  }
}
.nav-footer {
  position: relative;
  z-index: 20;
  padding-top: calc(12rem + 8vw);
  padding-bottom: 4rem;
  margin-top: auto;
}
.nav-footer .inner {
  max-width: none;
  padding: 0 4rem;
}
.nav-footer a {
  display: inline-block;
  color: var(--color-content-secondary);
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.nav-footer a:focus, .nav-footer a:hover {
  color: var(--color-content-main);
}
.nav-footer .nav-wrapper {
  display: flex;
  padding: 0 4rem;
}
@media only screen and (max-width: 640px) {
  .nav-footer .nav-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.nav-footer ul {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 640px) {
  .nav-footer ul {
    margin-bottom: 3rem;
    justify-content: center;
  }
}
.nav-footer ul:last-child {
  justify-content: flex-end;
}
.nav-footer li {
  position: relative;
  margin-inline-end: 3rem;
}
.nav-footer li.active a {
  color: var(--color-content-main);
  font-weight: 500;
}
.nav-footer li a {
  display: block;
  margin: 0;
  font-size: 1.6em;
  line-height: 2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.nav-footer li:last-child {
  margin-inline-end: 0;
}
.nav-copy {
  display: block;
  font-size: 1.6em;
  line-height: 2rem;
  color: var(--color-content-secondary);
  white-space: nowrap;
}
@media only screen and (max-width: 640px) {
  .nav-copy {
    margin-bottom: 3rem;
  }
}
.nav-copy .nav-rss {
  margin: 0 3rem;
}
@media only screen and (max-width: 640px) {
  .nav-copy .nav-rss {
    margin: 0 0 0 1rem;
  }
}
.nav-credits {
  flex-shrink: 0;
  display: block;
  margin-left: auto;
  font-size: 1.6em;
  line-height: 2rem;
  color: var(--color-content-secondary);
}
@media only screen and (max-width: 640px) {
  .nav-credits {
    margin-right: auto;
  }
}
.nav-credits a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.theme-text {
  display: none;
}
.theme-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--color-content-secondary);
  box-sizing: border-box;
  margin: 0 0.75rem 0 0.25rem;
  border-radius: 2rem;
  overflow: hidden;
  transition: linear 0.2s background-color;
}
.theme-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--color-content-secondary);
  transition: linear 0.2s all;
}
.mode-preference-os .theme-text.os {
  display: inline-block;
}
.mode-preference-dark .theme-icon {
  border: 0;
  background: #EB3;
}
.mode-preference-dark .theme-icon:after {
  left: -25%;
  border-radius: 2rem;
  background: #229;
}
.mode-preference-dark .theme-text.dark {
  display: inline-block;
}
.mode-preference-light .theme-icon {
  border: 0;
  background: #6BF;
}
.mode-preference-light .theme-icon:after {
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
  border-radius: 2rem;
  background: #FF3;
}
.mode-preference-light .theme-text.light {
  display: inline-block;
}
.search-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  box-sizing: border-box;
  padding: 2rem;
  display: none;
  opacity: 0;
  transition: opacity ease-out 0.2s;
  pointer-events: none;
  background: var(--color-background-overlay);
}
.search-wrapper .search-wrapper-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  margin: 2rem;
  background: transparent;
  border: 0;
  opacity: 0.5;
  transition: opacity ease-out 0.2s;
}
.search-wrapper .search-wrapper-close:focus, .search-wrapper .search-wrapper-close:hover {
  opacity: 1;
}
.search-wrapper .search-wrapper-close:before, .search-wrapper .search-wrapper-close:after {
  content: "";
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background: white;
}
.search-wrapper .search-wrapper-close:before {
  transform: rotate(-45deg);
}
.search-wrapper .search-wrapper-close:after {
  transform: rotate(45deg);
}
.search-active {
  overflow-y: hidden;
}
.search-active .search-wrapper {
  opacity: 1;
  pointer-events: unset;
}
.search {
  position: relative;
  top: calc(12rem + 4vw);
  max-height: 80vh;
  width: 100%;
  max-width: calc(64rem + 8vw);
  margin: auto;
  background: var(--color-background-main);
  border-radius: 4px;
  box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .search {
    top: 6rem;
  }
}
.search-form {
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-background-contrast);
}
.search-form .search-field {
  font-size: 2em;
  width: 100%;
  height: 5rem;
  margin: 0;
  padding: 0 2rem;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  box-shadow: none !important;
  outline: 0 !important;
}
.search-form .search-button {
  display: none;
  position: relative;
  font-size: 1.6em;
  position: absolute;
  right: 0;
  top: 0;
  height: 4rem;
  margin: 1.5rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 4px;
  color: white;
  background: var(--color-primary);
  transition: background ease-out 0.2s;
}
.search-form .search-button.search-button-clear {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 2.5rem;
  padding: 0;
  border-radius: 4rem;
  background: var(--color-content-secondary);
}
.search-form .search-button.search-button-clear:focus, .search-form .search-button.search-button-clear:hover {
  background: var(--color-content-main);
}
.search-form .search-button.search-button-clear i {
  display: none;
}
.search-form .search-button.search-button-clear:before, .search-form .search-button.search-button-clear:after {
  content: "";
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background: var(--color-background-main);
}
.search-form .search-button.search-button-clear:before {
  transform: rotate(-45deg);
}
.search-form .search-button.search-button-clear:after {
  transform: rotate(45deg);
}
.search-result {
  overflow-y: scroll;
  max-height: 50vh;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 640px) {
  .search-result {
    max-height: 75vh;
  }
}
.search-result .search-result-row {
  border-bottom: 1px solid var(--color-background-contrast);
}
.search-result .search-result-row:last-child {
  border: 0;
}
.search-result .search-result-row .search-result-row-link {
  display: block;
  padding: 2rem;
  color: inherit;
  text-decoration: none;
  transition: all ease-out 0.05s;
}
.search-result .search-result-row .search-result-row-link:hover, .search-result .search-result-row .search-result-row-link:focus {
  background: var(--color-background-secondary);
}
.search-result .search-result-row .search-result-row-link .search-result-row-title {
  font-size: 2em;
  line-height: 1.25em;
  font-weight: 700;
  text-indent: -1px;
  color: var(--color-content-lead);
}
.search-result .search-result-row .search-result-row-link .search-result-row-excerpt {
  margin: 0.5rem 0 0;
  font-family: var(--font-secondary);
  font-size: 1.25em;
  line-height: 2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popular-wrapper {
  padding: 2rem;
}
.popular-wrapper .popular-title {
  font-size: 2em;
  line-height: 1.25em;
  font-weight: 700;
  text-indent: -1px;
  color: var(--color-content-lead);
  margin-top: 0;
}
.popular-wrapper .popular-tags {
  float: none;
  max-width: none;
  margin-bottom: 0;
}
.pagination {
  position: relative;
  margin: 0;
}
.pagination .pagination-box {
  padding-top: calc(2rem + 1vw);
  padding-bottom: calc(2rem + 1vw);
}
.pagination .pagination-box:after {
  clear: both;
  content: "";
  display: table;
}
.pagination a {
  position: relative;
  display: block;
  height: 4rem;
  margin: -1px 0;
  padding: 0 2rem;
  z-index: 100;
  border: 1px solid var(--color-background-contrast);
  font-size: 1.6em;
  line-height: 4rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: var(--color-content-secondary);
  transition: all ease 0.2s;
  border-radius: 4rem;
  box-sizing: border-box;
}
.pagination a:focus, .pagination a:hover {
  color: var(--color-content-main);
  border-color: var(--color-primary);
}
.pagination .pagination-prev {
  float: right;
  padding-right: 1.5rem;
}
.pagination .pagination-next {
  float: left;
  padding-left: 1.5rem;
}
.pagination .pagination-label {
  position: relative;
  top: -1px;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .pagination .pagination-label {
    display: none;
  }
}
.pagination a i {
  position: relative;
  top: 1px;
  width: auto;
  margin: auto 4px;
  color: inherit;
  font-size: 1.33334em;
  line-height: 0.75em;
}
.pagination a i:before {
  position: relative;
  width: auto;
  margin: auto;
}
.pagination .pagination-info {
  position: absolute;
  width: 100%;
  font-size: 1.6em;
  line-height: 4rem;
  height: 4rem;
  left: 0;
  z-index: 50;
  display: block;
  text-align: center;
  color: var(--color-content-secondary);
}
.extra-pagination .pagination-box {
  border-bottom: 1px solid var(--color-background-contrast);
}
.paged .extra-pagination {
  display: block;
}
/* ==========================================================================
    Misc
    ========================================================================== */
.clear {
  clear: both;
}
.hidden {
  display: none;
}
@keyframes fadein {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.9;
  }
}
.avatar {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 2px solid var(--color-background-contrast);
  background: var(--color-background-contrast);
  box-sizing: border-box;
}
.avatar:after, .avatar:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 50%;
  height: 50%;
  bottom: 32.5%;
  left: 25%;
  border-radius: 100%;
  background: var(--color-background-secondary);
  box-sizing: border-box;
}
.avatar:after {
  width: 80%;
  bottom: -25%;
  left: 10%;
}
.avatar img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[dir="rtl"] .lang-selector {
  left: 0;
  right: initial !important;
}
[dir="rtl"] .lang-selector a:before {
  right: initial !important;
  left: 100%;
}
[dir="rtl"] .search-button {
  right: initial !important;
  left: 0;
}
[dir="rtl"] .post-header .post-meta:before {
  left: initial;
  right: 0;
}
[dir="rtl"] .post-header .post-meta .post-meta-avatars {
  float: right;
}
[dir="rtl"] .post-info .post-count:after, [dir="rtl"] .archive .archive-info .archive-count:after {
  left: initial;
  right: -2.5rem;
}
[dir="rtl"] .post-nav-next .post-nav-teaser {
  text-align: left;
}
[dir="rtl"] .archive.archive-author .archive-avatar {
  left: initial;
  right: 2rem;
}
@media only screen and (max-width: 640px) {
  [dir="rtl"] .archive.archive-author .archive-avatar {
    left: 0;
    right: auto;
  }
}
@media only screen and (max-width: 640px) {
  [dir="rtl"] .nav-header li a:before {
    left: 100%;
  }
}
.page-404 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  padding-top: 1.25rem;
  margin: auto;
  height: calc(100vh - 6.25rem);
}
.page-404 .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.page-404 .container .error {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page-404 .container .error .title {
  margin: 0.938rem 0.625rem;
  text-align: center;
  font-size: 5rem;
}
.page-404 .container .error .text {
  margin: 0.938rem 0.625rem;
  text-align: center;
  font-size: 1.75rem;
}
.page-404 .container .error .button {
  padding: 0.938rem 0.625rem;
  margin: 0.938rem 0.625rem;
  text-align: center;
  color: var(--color-content-secondary);
  text-decoration: none;
  font-size: 1.75rem;
}
.page-404 .container .error .button:hover {
  color: var(--color-content);
}
