@charset "UTF-8";
/*
 * Flexoki Color Scheme
 * An inky color scheme for prose and code
 * https://stephango.com/flexoki
 */
:root {
  /* Flexoki Base Colors */
  --flexoki-black: #100F0F;
  --flexoki-paper: #FFFCF0;

  /* Flexoki Dark Theme Base Scale */
  --flexoki-950: #1C1B1A;
  --flexoki-900: #282726;
  --flexoki-850: #343331;
  --flexoki-800: #403E3C;
  --flexoki-700: #575653;
  --flexoki-600: #6F6E69;
  --flexoki-500: #878580;
  --flexoki-300: #B7B5AC;
  --flexoki-200: #CECDC3;
  --flexoki-150: #DAD8CE;
  --flexoki-100: #E6E4D9;
  --flexoki-50: #F2F0E5;

  /* Flexoki Accent Colors - Dark (400) */
  --flexoki-red-dark: #D14D41;
  --flexoki-orange-dark: #DA702C;
  --flexoki-yellow-dark: #D0A215;
  --flexoki-green-dark: #879A39;
  --flexoki-cyan-dark: #3AA99F;
  --flexoki-blue-dark: #4385BE;
  --flexoki-purple-dark: #8B7EC8;
  --flexoki-magenta-dark: #CE5D97;

  /* Flexoki Accent Colors - Light (600) */
  --flexoki-red-light: #AF3029;
  --flexoki-orange-light: #BC5215;
  --flexoki-yellow-light: #AD8301;
  --flexoki-green-light: #66800B;
  --flexoki-cyan-light: #24837B;
  --flexoki-blue-light: #205EA6;
  --flexoki-purple-light: #5E409D;
  --flexoki-magenta-light: #A02F6F;

  /* Default: Dark Theme Semantic Mappings */
  --bg: var(--flexoki-black);
  --bg-2: var(--flexoki-950);
  --ui: var(--flexoki-900);
  --ui-2: var(--flexoki-850);
  --ui-3: var(--flexoki-800);
  --tx: var(--flexoki-paper);
  --tx-2: var(--flexoki-200);
  --tx-3: var(--flexoki-500);
  --accent: var(--flexoki-orange-dark);
  --accent-hover: var(--flexoki-orange-dark);

  /* Legacy color mappings (used throughout CSS) */
  --primary-color: var(--accent);
  --secondary-color: var(--tx);
  --tertiary-color: var(--tx-2);

  /* Typography */
  --text-typography-font-family: 'Roboto Mono', monospace;
  --text-typography-variant: 400;
  --text-typography-line-height: 1.6;
  --heading-typography-font-size: 28px;
}

/* Light Theme - using hardcoded values to ensure correct colors */
/* Following Flexoki guidelines: light bg needs dark text for contrast */
[data-theme="light"] {
  --bg: #E6E4D9;      /* Flexoki 100 - warm cream, easy on eyes */
  --bg-2: #DAD8CE;    /* Flexoki 150 */
  --ui: #E6E4D9;      /* Flexoki 100 */
  --ui-2: #CECDC3;    /* Flexoki 200 */
  --ui-3: #B7B5AC;    /* Flexoki 300 */
  --tx: #100F0F;      /* Flexoki black - primary text */
  --tx-2: #343331;    /* Flexoki 850 - body text, good contrast */
  --tx-3: #575653;    /* Flexoki 700 - secondary/muted text */
  --accent: #BC5215;  /* Flexoki orange 600 (light mode accent) */
  --accent-hover: #DA702C; /* Flexoki orange 400 */

  /* Legacy color mappings for light mode */
  --primary-color: var(--accent);
  --secondary-color: var(--tx);
  --tertiary-color: var(--tx-2);
}

/* Navigation Pill - unified back button + theme toggle */
.nav-pill {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
  height: 44px;
  border-radius: 22px;
  border: 2px solid var(--ui-2);
  background: var(--bg-2);
  padding: 0;
  overflow: hidden;
  /* Smooth width transition */
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s;
  /* Default width: just theme toggle */
  width: 44px;
}

.nav-pill:hover {
  border-color: var(--accent);
}

/* Expanded state with back button */
.nav-pill.has-back {
  width: 88px;
  gap: 0;
}

/* Back button styles */
.nav-pill-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 40px;
  opacity: 0;
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-pill.has-back .nav-pill-back {
  width: 40px;
  opacity: 1;
}

.nav-pill-back.hiding {
  opacity: 0;
}

.nav-pill-back svg {
  width: 22px;
  height: 22px;
  fill: var(--tx);
  transition: fill 0.2s, transform 0.2s;
}

.nav-pill-back:hover svg {
  fill: var(--accent);
  transform: translateX(-2px);
}

/* Divider between back and theme toggle - using border on theme button */
.nav-pill.has-back .nav-pill-theme {
  border-left: 1px solid var(--ui-2);
}

/* Theme toggle button within pill */
.nav-pill-theme {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-pill-theme svg {
  width: 20px;
  height: 20px;
  fill: var(--tx);
  transition: transform 0.3s ease, fill 0.2s;
}

.nav-pill-theme:hover svg {
  fill: var(--accent);
  transform: rotate(15deg);
}

/* Prevent stuck hover state during view transitions */
.nav-pill-theme:focus {
  outline: none;
}

.nav-pill-theme:active svg {
  transform: rotate(15deg) scale(0.95);
}

/* Reset hover state when view transitioning */
html.view-transitioning .nav-pill-theme svg,
html.view-transitioning .nav-pill-theme:hover svg {
  fill: var(--tx);
  transform: none;
}

html.view-transitioning .nav-pill {
  border-color: var(--ui-2);
}

.nav-pill-theme .sun-icon {
  display: none;
}

.nav-pill-theme .moon-icon {
  display: block;
}

[data-theme="light"] .nav-pill-theme .sun-icon {
  display: block;
}

[data-theme="light"] .nav-pill-theme .moon-icon {
  display: none;
}

/* Legacy theme-toggle class for backwards compatibility */
.theme-toggle {
  display: none;
}

/* Apply background to html ONLY for View Transitions to capture cleanly */
html {
  background-color: var(--bg, #100F0F);
  position: relative;
  min-height: 100%;
}

/* Explicit light theme background - ensures cream color, not white */
html[data-theme="light"] {
  background-color: #E6E4D9 !important; /* Flexoki 100 - warm cream */
}

/* Override any body background - only html should have background for clean transitions */
body, body.custom-background {
  background-color: transparent !important;
  background: transparent !important;
}

/* View Transitions API - Disable default crossfade, use clip-path instead */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
  /* Fill the entire viewport */
  position: fixed;
  inset: 0;
}

/* Old view stays visible as the base layer during transition */
::view-transition-old(root) {
  z-index: 0;
}

/* New view reveals on top with clip-path animation */
::view-transition-new(root) {
  z-index: 1;
}

/* The view-transition container should be invisible, letting old/new show through */
::view-transition {
  position: fixed;
  inset: 0;
}

/* CRITICAL: Disable all CSS transitions during View Transition to prevent background flicker */
/* The View Transition captures snapshots - any independent CSS transition causes flicker */
/* Applied via JS class during view transition */
html.view-transitioning *,
html.view-transitioning *::before,
html.view-transitioning *::after {
  transition: none !important;
}

/* Back Button - now handled by nav-pill, keeping for backwards compat */
.back-button {
  display: none;
}

/* Category page layout */
.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

/* WordPress preset colors - mapped to Flexoki */
.has-vivid-cyan-blue-color,
.has-vivid-cyan-blue-background-color {
  color: var(--flexoki-cyan-dark);
}

.has-vivid-red-color,
.has-vivid-red-background-color {
  color: var(--flexoki-red-dark);
}

[data-theme="light"] .has-vivid-cyan-blue-color,
[data-theme="light"] .has-vivid-cyan-blue-background-color {
  color: var(--flexoki-cyan-light);
}

[data-theme="light"] .has-vivid-red-color,
[data-theme="light"] .has-vivid-red-background-color {
  color: var(--flexoki-red-light);
}

/* Dotted HR style */
hr.is-style-dots {
  background: none;
  border: none;
  text-align: center;
  height: auto;
  line-height: 1;
}

hr.is-style-dots::before {
  content: "···";
  color: var(--tx-3);
  font-size: 1.5em;
  letter-spacing: 1em;
  padding-left: 1em;
}

.is-style-fill a,
.is-layout-flex > div a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--ui-2);
  border-radius: 5px;
  color: var(--tx);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.is-style-fill a:hover,
.is-layout-flex > div a:hover {
  background: var(--ui);
  border-color: var(--accent);
  color: var(--accent);
}

.is-style-fill a:visited,
.is-layout-flex > div a:visited {
  color: var(--tx);
}

.is-style-fill a:visited:hover,
.is-layout-flex > div a:visited:hover {
  color: var(--accent);
}

/* Handle missing images gracefully */
img {
  max-width: 100%;
  height: auto;
}

img[src$=".jpg"]:not([src^="http"]):not([src^="/"]),
img[src$=".png"]:not([src^="http"]):not([src^="/"]) {
  display: block;
  min-height: 200px;
  background: var(--bg-2);
  border: 1px dashed var(--ui-2);
}

/* Rounded image style */
.is-style-rounded figure {
  overflow: hidden;
  border-radius: 50%;
}

.is-style-rounded figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* External Link Card - replacement for broken oEmbed widgets */
.link-card {
  display: block;
  max-width: 500px;
  margin: 1.5em auto;
  padding: 1.25em;
  background: var(--bg-2);
  border: 1px solid var(--ui-2);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.link-card:hover {
  border-color: var(--accent);
  background: var(--ui);
}

.link-card-source {
  font-size: 0.75em;
  color: var(--tx-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

.link-card-title {
  font-size: 1.1em;
  color: var(--tx);
  margin: 0;
  line-height: 1.4;
}

.link-card:hover .link-card-title {
  color: var(--accent);
}

h1, .h1, h1 * {
  color: var(--secondary-color); }

h2, .h2, h2 * {
  color: var(--secondary-color); }

h3, .h3, h3 * {
  color: var(--secondary-color); }

h4, .h4, h4 * {
  color: var(--secondary-color); }

h5, .h5, h5 * {
  color: var(--secondary-color); }

h6, .h6, h6 * {
  color: var(--secondary-color); }

a {
  color: var(--secondary-color);
  text-decoration: none;
  padding-bottom: 2px; }
  a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color); }
  a:visited {
    color: var(--secondary-color); }
  a:visited:hover {
    color: var(--primary-color); }

p {
  color: var(--tertiary-color);
  margin-bottom: 20px;
  letter-spacing: 0.4px; }
  @media only screen and (max-width: 400px) {
    p {
      letter-spacing: 0.2px; } }

strong {
  font-weight: 400;
  color: var(--tx); }

ul,
ol {
  color: var(--tertiary-color); }

figure,
img,
pre,
iframe {
  max-width: 100%; }

img,
pre {
  border-radius: 4px; }

figcaption {
  position: relative;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--tx-3);
  font-weight: 300; }
  @media only screen and (max-width: 400px) {
    figcaption {
      font-size: 0.8rem; } }

blockquote {
  padding-left: 15px;
  border-left: 3px solid var(--ui-2); }

blockquote cite {
  display: block;
  margin-top: 1em;
  font-style: normal;
  color: var(--tx-3); }

blockquote cite a {
  color: var(--tx-3); }

blockquote cite a:hover {
  color: var(--accent); }

hr {
  border: none;
  height: 1px;
  margin: 40px auto;
  background: var(--ui-2);
  width: 100%; }

figure.highlight {
  width: 100%;
  margin: 0; }

code,
tt {
  padding: 1px 4px;
  line-height: 20px;
  background: var(--bg-2);
  border-radius: 2px;
  color: var(--tx-2); }

pre {
  box-sizing: border-box;
  margin: 0 0 1.75em 0;
  width: 100%;
  padding: 5px 10px;
  line-height: 2rem;
  overflow: auto;
  background: var(--bg-2);
  border: 1px solid var(--ui);
  border-radius: 2px;
  color: var(--tx-2); }

.wrapper-normal,
.wrapper-large {
  height: 100%;
  width: 96%;
  margin: 0 auto; }
  @media only screen and (max-width: 400px) {
    .wrapper-normal,
    .wrapper-large {
      width: 88%; } }
  @media only screen and (min-width: 400px) and (max-width: 1050px) {
    .wrapper-normal,
    .wrapper-large {
      width: 88%; } }

.wrapper-normal {
  max-width: 560px; }

.wrapper-large {
  max-width: 810px; }

.aligncenter {
  text-align: center; }

.alignleft {
  text-align: left; }

.alignright {
  text-align: right; }

.wp-caption {
  background: var(--bg-2);
  border: 1px solid var(--ui);
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

.gallery-caption {
  color: var(--tx-3);
  font-size: 0.75rem;
  margin: 0 0 12px; }

.sticky {
  position: sticky; }

.bypostauthor {
  background-color: var(--bg-2);
  color: var(--tx); }

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto; }

/*
 * general helpers
 */
.text-center {
  text-align: center; }

.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

/*
 * animations
 */
.animated {
  animation: fade-in-down 0.6s;
  animation-delay: 0.3s;
  animation-fill-mode: both; }

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-10px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin: in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display: definitions
   ========================================================================== */
/**
 * Add the correct display: in IE 9-.
 * 1. Add the correct display: in Edge, IE, and Firefox.
 * 2. Add the correct display: in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display: in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display: in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display: in IE 10-.
 * 1. Add the correct display: in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background: on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border: in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin: on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: var(--heading-typography-font-size);
  margin: 0.67em 0; }

/**
 * Add the correct background: and color: in IE 9-.
 */
mark {
  background-color: var(--flexoki-yellow-dark);
  color: var(--flexoki-black);
  padding: 0.1em 0.2em;
  border-radius: 2px; }

[data-theme="light"] mark {
  background-color: var(--flexoki-yellow-light);
  color: var(--flexoki-black); }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height: in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border: on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin: in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin: in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border: and padding: in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding: in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color: inheritance from `fieldset` elements in IE.
 * 3. Remove the padding: so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding: in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding: and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

@media screen and (max-width: 600px) {
  #wpadminbar {
    top: -46px; } }

/*
 * GitHub style for Pygments syntax highlighter, for use with Jekyll
 * Courtesy of GitHub.com
 */
.highlight .c {
  color: #999988;
  font-style: italic; }

.highlight .err {
  color: #a61717;
  background-color: #e3d2d2; }

.highlight .k {
  font-weight: bold; }

.highlight .o {
  font-weight: bold; }

.highlight .cm {
  color: #999988;
  font-style: italic; }

.highlight .cp {
  color: #999999;
  font-weight: bold; }

.highlight .c1 {
  color: #999988;
  font-style: italic; }

.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic; }

.highlight .gd {
  color: #000000;
  background-color: #ffdddd; }

.highlight .gd .x {
  color: #000000;
  background-color: #ffaaaa; }

.highlight .ge {
  font-style: italic; }

.highlight .gr {
  color: #aa0000; }

.highlight .gh {
  color: #999999; }

.highlight .gi {
  color: #000000;
  background-color: #ddffdd; }

.highlight .gi .x {
  color: #000000;
  background-color: #aaffaa; }

.highlight .go {
  color: #888888; }

.highlight .gp {
  color: #555555; }

.highlight .gs {
  font-weight: bold; }

.highlight .gu {
  color: #800080;
  font-weight: bold; }

.highlight .gt {
  color: #aa0000; }

.highlight .kc {
  font-weight: bold; }

.highlight .kd {
  font-weight: bold; }

.highlight .kn {
  font-weight: bold; }

.highlight .kp {
  font-weight: bold; }

.highlight .kr {
  font-weight: bold; }

.highlight .kt {
  color: #445588;
  font-weight: bold; }

.highlight .m {
  color: #009999; }

.highlight .s {
  color: #dd1144; }

.highlight .n {
  color: #333333; }

.highlight .na {
  color: teal; }

.highlight .nb {
  color: #0086b3; }

.highlight .nc {
  color: #445588;
  font-weight: bold; }

.highlight .no {
  color: teal; }

.highlight .ni {
  color: purple; }

.highlight .ne {
  color: #990000;
  font-weight: bold; }

.highlight .nf {
  color: #990000;
  font-weight: bold; }

.highlight .nn {
  color: #555555; }

.highlight .nt {
  color: navy; }

.highlight .nv {
  color: teal; }

.highlight .ow {
  font-weight: bold; }

.highlight .w {
  color: #bbbbbb; }

.highlight .mf {
  color: #009999; }

.highlight .mh {
  color: #009999; }

.highlight .mi {
  color: #009999; }

.highlight .mo {
  color: #009999; }

.highlight .sb {
  color: #dd1144; }

.highlight .sc {
  color: #dd1144; }

.highlight .sd {
  color: #dd1144; }

.highlight .s2 {
  color: #dd1144; }

.highlight .se {
  color: #dd1144; }

.highlight .sh {
  color: #dd1144; }

.highlight .si {
  color: #dd1144; }

.highlight .sx {
  color: #dd1144; }

.highlight .sr {
  color: #009926; }

.highlight .s1 {
  color: #dd1144; }

.highlight .ss {
  color: #990073; }

.highlight .bp {
  color: #999999; }

.highlight .vc {
  color: teal; }

.highlight .vg {
  color: teal; }

.highlight .vi {
  color: teal; }

.highlight .il {
  color: #009999; }

.highlight .gc {
  color: #999;
  background-color: #EAF2F5; }

.author {
  padding: 3rem 0;
  border-bottom: 1px solid var(--ui);
  border-top: 1px solid var(--ui);
  max-width: 100%;
  margin: 4rem auto 0; }
  .author .selfie img {
    width: 90%;
    border-radius: 100%; }
  .author > .toright > .name,
  .author > .toright > .bio {
    width: 60%;
    display: inline-block; }
  .author > .toright > .name {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 6px 0 0; }
    @media only screen and (max-width: 400px) {
      .author > .toright > .name {
        width: 100%;
        display: block; } }
    @media only screen and (min-width: 400px) and (max-width: 1050px) {
      .author > .toright > .name {
        width: 100%;
        display: block; } }
  .author > .toright > .bio {
    font-weight: 300;
    color: var(--tx-3);
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.5;
    margin: 0; }
    @media only screen and (max-width: 400px) {
      .author > .toright > .bio {
        width: 100%;
        display: block; } }
    @media only screen and (min-width: 400px) and (max-width: 1050px) {
      .author > .toright > .bio {
        width: 100%;
        display: block; } }
  .author > .toleft {
    width: 10%;
    display: inline-block; }
    @media only screen and (max-width: 400px) {
      .author > .toleft {
        width: 20%; } }
    @media only screen and (min-width: 400px) and (max-width: 1050px) {
      .author > .toleft {
        width: 20%; } }
  .author > .toright {
    width: 89%;
    display: inline-block;
    vertical-align: top; }
    @media only screen and (max-width: 400px) {
      .author > .toright {
        width: 78%; } }
    @media only screen and (min-width: 400px) and (max-width: 1050px) {
      .author > .toright {
        width: 78%; } }

.no-disqus {
  border-bottom: none;
  padding-bottom: 0; }

.disqus {
  margin: 0 auto;
  max-width: 100%;
  padding: 40px 0; }

.footer-main {
  border-top: 1px solid var(--ui);
  padding: 45px 0;
  margin: 50px 0 0;
  color: var(--tx-3);
  font-weight: 300;
  text-align: center;
  position: relative;
  font-size: .85em;
  line-height: 16px; }
  .footer-main:before {
    display: block;
    content: " ";
    width: 7px;
    height: 7px;
    border: var(--ui) 1px solid;
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    background: var(--bg);
    box-shadow: var(--bg) 0 0 0 5px;
    border-radius: 3px; }
  .footer-main > .link {
    display: inline; }
    .footer-main > .link > .icon {
      width: 12px !important;
      fill: var(--tx-3) !important;
      transition: ease-in-out all .3s;
      position: relative;
      top: 4px;
      left: 2px;
      display: inherit;
      margin: 0; }
      .footer-main > .link > .icon:hover {
        fill: var(--primary-color) !important; }
  .footer-main > .extra {
    color: var(--secondary-color);
    margin-top: 10px; }
    .footer-main > .extra > .link {
      font-size: inherit;
      color: var(--secondary-color);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: ease-in-out all .3s;
      padding-bottom: 1px; }
      .footer-main > .extra > .link:hover {
        border-color: var(--tx-3); }

.header-home {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 99; }
  .header-home .custom-logo-link:hover {
    text-decoration: none;
    border: 0; }
    .header-home .custom-logo-link:hover img:hover {
      opacity: .9; }
  .header-home .selfie a {
    margin-bottom: 25px;
    display: inline-block; }
  .header-home .selfie img {
    width: 100px;
    border-radius: 100%;
    box-shadow: none;
    opacity: 1; }
  .header-home > .title-link {
    text-decoration: none; }
    .header-home > .title-link > .title {
      line-height: 30px;
      margin: 0 0 30px; }
  .header-home > .description {
    width: 70%;
    margin: 0 auto 30px;
    line-height: 1.4; }
    .header-home > .description a {
      font-weight: 200; }

.skip-link {
  position: absolute;
  top: -100px;
  
  background-color: #f1f1f1;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
  color: #21759b;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 6px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
  -webkit-transition: top .5s ease-out 0s;
  transition: top .5s ease-out 0s; }

.skip-link:focus {
  color: #21759b;
  top: 7px;
  -webkit-transition: top 0.2s;
  transition: top 0.2s; }

.nav > .list,
.nav-home > .list {
  list-style: none;
  margin: 0;
  padding: 0 13px 0;
  transition: 2s all;
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 100;
  background-color: var(--bg); }
  @media only screen and (max-width: 780px) {
    .nav > .list,
    .nav-home > .list {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-bottom: 12px !important;
      height: 0;
      max-height: 0;
      transition: 1s all;
      visibility: hidden; }
      .nav > .list.is-open,
      .nav-home > .list.is-open {
        height: 100vh;
        max-height: 100vh;
        visibility: visible; }
        .nav > .list.is-open li,
        .nav-home > .list.is-open li {
          opacity: 1; }
      .nav > .list li,
      .nav-home > .list li {
        min-width: auto;
        opacity: 0;
        transition: 0.4s all; }
      .nav > .list a,
      .nav-home > .list a {
        white-space: nowrap; } }
  .nav > .list li,
  .nav-home > .list li {
    display: inline-block;
    position: relative; }
    .nav > .list li:hover > ul.sub-menu, .nav > .list li.focus > ul.sub-menu, .nav > .list li:focus > ul.sub-menu, .nav > .list li:focus-within > ul.sub-menu,
    .nav-home > .list li:hover > ul.sub-menu,
    .nav-home > .list li.focus > ul.sub-menu,
    .nav-home > .list li:focus > ul.sub-menu,
    .nav-home > .list li:focus-within > ul.sub-menu {
      display: block;
      left: 0; }
    .nav > .list li ul.sub-menu,
    .nav-home > .list li ul.sub-menu {
      list-style: none;
      box-shadow: 0 0 10px -6px var(--flexoki-black);
      border-radius: 3px;
      padding: 5px 10px;
      background: var(--bg-2);
      position: absolute;
      display: block;
      left: -10000px;
      visibility: visible;
      z-index: 99; }
      @media only screen and (max-width: 780px) {
        .nav > .list li ul.sub-menu,
        .nav-home > .list li ul.sub-menu {
          margin: 10px 0;
          position: relative;
          width: auto;
          display: none; } }
      .nav > .list li ul.sub-menu.focus, .nav > .list li ul.sub-menu:focus-within, .nav > .list li ul.sub-menu:hover,
      .nav-home > .list li ul.sub-menu.focus,
      .nav-home > .list li ul.sub-menu:focus-within,
      .nav-home > .list li ul.sub-menu:hover {
        display: block; }
      .nav > .list li ul.sub-menu li,
      .nav-home > .list li ul.sub-menu li {
        display: block; }
        .nav > .list li ul.sub-menu li ul,
        .nav-home > .list li ul.sub-menu li ul {
          right: 100%;
          top: 5px; }
      .nav > .list li ul.sub-menu li a,
      .nav-home > .list li ul.sub-menu li a {
        white-space: nowrap;
        display: block;
        text-decoration: none;
        padding: 5px;
        color: var(--secondary-color); }
  .nav > .list > li > a,
  .nav-home > .list > li > a {
    display: inline-block;
    padding: 20px 10px;
    text-decoration: none;
    color: var(--secondary-color); }

.nav {
  position: absolute;
  left: 0;
  top: 45px;
  display: flex;
  width: 100%; }
  @media only screen and (max-width: 780px) {
    .nav {
      justify-content: flex-end;
      top: 0;
      padding: 3px 0; } }
  .nav > .list {
    margin: 0 auto;
    padding: 0 13px 0; }
    @media only screen and (max-width: 780px) {
      .nav > .list {
        margin-top: 2rem; } }
    @media only screen and (max-width: 780px) {
      .nav > .list > li {
        margin-bottom: 30px; } }
    .nav > .list > li > a {
      padding: 4px 8px;
      margin: 0 15px;
      color: var(--secondary-color);
      line-height: 19px;
      transition: .2s;
      border: 1px solid transparent; }
      @media only screen and (max-width: 780px) {
        .nav > .list > li > a {
          font-size: 1.25em; } }
      .nav > .list > li > a:hover {
        border-color: var(--primary-color); }
    .nav > .list > li.current-menu-item > a {
      border: 2px solid var(--primary-color);
      background-color: var(--primary-color);
      color: var(--flexoki-black); }
      @media only screen and (max-width: 780px) {
        .nav > .list > li.current-menu-item > a {
          padding: 0.4rem 1.85rem; } }

.nav-home {
  text-align: center; }
  .nav-home > .list {
    padding: 0; }
    .nav-home > .list > li {
      margin: 0 18px; }
      @media only screen and (max-width: 780px) {
        .nav-home > .list > li {
          margin: 0 18px 30px; } }
    .nav-home > .list > li > a {
      padding: 4px 8px;
      margin: 0;
      border-radius: 0;
      transition: all .2s ease-in-out;
      color: var(--secondary-color);
      line-height: 1;
      border: 1px solid transparent; }
      .nav-home > .list > li > a:hover {
        border-color: var(--primary-color); }

ul.sub-menu:focus-within {
  left: 0; }

.navigation--footer {
  list-style: none;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 24px;
  flex-wrap: wrap; }
  .navigation--footer li {
    margin: 0 0.85rem 1rem; }
    @media only screen and (max-width: 780px) {
      .navigation--footer li {
        width: 100%; } }

.evidence {
  background-image: linear-gradient(to bottom, rgba(39, 243, 106, 0.15), rgba(39, 243, 106, 0.15));
  color: beta; }

.star > .url > .title {
  width: auto !important;
  display: inline;
  background-image: linear-gradient(rgba(39, 243, 106, 0.15), rgba(39, 243, 106, 0.15)); }

.twitter-tweet {
  margin: 10px auto; }

.icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  fill: var(--tx);
  text-align: center;
  color: var(--tx);
  margin: 7px auto; }

.caption {
  position: relative;
  top: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 1.3rem; }

.bigger-image {
  min-width: 130%;
  margin: 5rem 0 5rem -15%; }
  @media only screen and (max-width: 400px) {
    .bigger-image {
      min-width: 114%;
      margin: 2rem 0 2rem -7%; } }
  @media only screen and (min-width: 400px) and (max-width: 1050px) {
    .bigger-image {
      min-width: 114%;
      margin: 2rem 0 2rem -7%; } }

.breaker {
  height: 1px;
  margin: 6rem auto;
  width: 100%; }
  .breaker:before {
    content: "• • •";
    width: 100%;
    text-align: center;
    display: block;
    color: var(--tx-3);
    letter-spacing: 4px;
    position: relative;
    top: -8px; }

.lost-container {
  text-align: center; }

.pagination {
  width: 95%;
  margin: 3rem auto 0;
  text-align: center;
  font-family: var(--text-typography-font-family); }
  .pagination .nav-links > .page-numbers {
    display: inline-block;
    font-size: 0.93em;
    line-height: 21px;
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 5px;
    font-weight: 300;
    vertical-align: middle; }
  .pagination .nav-links > .prev,
  .pagination .nav-links > .next {
    display: inline-block;
    font-size: 0.93em;
    position: relative;
    top: 1px; }
  .pagination .nav-links > .hidden {
    visibility: hidden; }
  .pagination .nav-links > .current {
    color: var(--tx-3); }

.related {
  margin: 10rem 0 0rem; }

.share {
  float: right;
  width: 40%;
  display: inline;
  text-align: right;
  position: relative;
  top: -10px; }
  @media only screen and (max-width: 400px) {
    .share {
      width: 100%;
      display: block;
      top: 0;
      text-align: left;
      float: none;
      margin-top: 5px; } }
  @media only screen and (min-width: 400px) and (max-width: 1050px) {
    .share {
      width: 100%;
      display: block;
      top: 0;
      text-align: left;
      float: none;
      margin-top: 5px; } }
  .share > .twitter,
  .share > .facebook,
  .share > .google-plus,
  .share > .linkedin,
  .share > .reddit {
    display: inline;
    vertical-align: middle;
    font-weight: 700;
    color: #fff;
    padding: 6px 10px;
    border-radius: 3px;
    margin-left: 5px;
    text-decoration: none; }
    @media only screen and (max-width: 400px) {
      .share > .twitter,
      .share > .facebook,
      .share > .google-plus,
      .share > .linkedin,
      .share > .reddit {
        margin: 0 5px 10px 0; } }
    @media only screen and (min-width: 400px) and (max-width: 1050px) {
      .share > .twitter,
      .share > .facebook,
      .share > .google-plus,
      .share > .linkedin,
      .share > .reddit {
        margin: 0 5px 10px 0; } }
  .share > .twitter {
    background: #4fafed; }
  .share > .facebook {
    background: #4361b3; }
  .share > .google-plus {
    background: #dd4b39; }
  .share > .linkedin {
    background: #0077b5; }
  .share > .reddit {
    background: #ff4500; }
  .share svg {
    fill: #fff;
    position: relative;
    top: 3px;
    margin: 0;
    margin-right: 4px;
    display: inherit; }

.social-links {
  margin-top: 20px; }
  .social-links > .link {
    margin: 0;
    text-decoration: none;
    position: relative;
    display: inline-block;
    height: 35px;
    width: 35px; }
    .social-links > .link:hover {
      border-bottom: 0; }
      .social-links > .link:hover > .icon {
        fill: var(--primary-color); }
    .social-links > .link:hover::before {
      opacity: 1;
      display: inline-block;
      white-space: nowrap; }
    .social-links > .link::before {
      content: attr(data-title);
      display: none;
      position: absolute;
      bottom: -32px;
      left: -6px;
      margin: 0 auto;
      font-size: calc(1rem - 3px);
      padding: 3px 10px;
      background: var(--ui-2);
      color: var(--tx);
      border-radius: 2px;
      height: 22px;
      line-height: 22px;
      opacity: 1;
      transition: opacity 150ms linear, transform 150ms linear, -webkit-transform 150ms linear;
      z-index: 99; }
    .social-links > .link:after {
      content: "";
      display: none;
      position: absolute;
      top: 35px;
      left: 13px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 6px solid var(--ui-2);
      opacity: 1;
      transition: opacity 150ms linear, transform 150ms linear, -webkit-transform 150ms linear;
      z-index: 100; }
    .social-links > .link:hover:after {
      display: block; }
  .social-links > .icon {
    transition: all ease-in-out .2s; }

.icon-share {
  width: 24px;
  height: 24px;
  transition: 0.2s;
  margin: 0; }
  .icon-share:hover {
    fill: var(--primary-color); }

.spoiler {
  position: relative; }
  .spoiler:before {
    content: '';
    background-color: var(--ui-3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50; }
  .spoiler:hover:before {
    display: none; }

form input[type=submit] {
  padding: 6px 36px;
  background-color: var(--ui-2);
  border-radius: 0;
  color: var(--tx);
  display: inline-block;
  width: auto;
  border-color: var(--ui-2);
  transition: .1s;
  font-size: 1rem;
  font-weight: 400; }

form input[type=submit]:hover, form input[type=submit]:focus {
  cursor: pointer;
  background: var(--primary-color);
  border-color: var(--primary-color); }

form input, form textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid var(--ui-2);
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 400;
  background-color: var(--bg-2);
  color: var(--tx); }
  form input:focus, form textarea:focus {
    background-color: var(--ui);
    border-color: var(--primary-color);
    color: var(--tx); }
  form input:active, form textarea:active {
    border-color: var(--primary-color); }
  form input:focus:invalid, form textarea:focus:invalid {
    background-color: var(--ui);
    border-color: var(--flexoki-red); }

.cookie-label {
  font-size: 13px; }

.comment-form-cookies {
  display: flex;
  align-items: flex-start; }

textarea {
  max-height: 120px; }

input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin: 5px 10px; }

.comments-title {
  font-size: calc(1rem + 4px) !important;
  line-height: 1;
  margin-bottom: 30px; }

.comment-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px; }
  .comment-form p {
    margin: 0 0 30px; }

.search-form {
  display: flex;
  margin-top: 30px; }
  .search-form .search-submit {
    margin-left: 10px; }
  .search-form .search-field {
    height: 100%; }
  .search-form label {
    display: flex;
    flex-grow: 1;
    align-items: center; }
    .search-form label span {
      white-space: nowrap; }

.comments {
  list-style: none;
  padding: 0; }
  .comments .comment-info {
    display: inline-block;
    width: 70%;
    vertical-align: middle; }
  .comments .avatar {
    vertical-align: middle;
    margin-right: 10px; }
  .comments .comment {
    border-top: 1px solid var(--ui);
    padding: 20px 10px;
    margin: 5px 0; }
    .comments .comment .comment-metadata a * {
      font-size: 0.813em;
      text-decoration: none;
      color: var(--tx-3);
      font-weight: 400; }
    .comments .comment:last-child {
      margin-bottom: 10px; }
    .comments .comment .comment-author {
      font-size: 1em;
      margin-top: 0;
      margin-bottom: 5px; }

ol.children {
  list-style: none;
  margin-top: 15px;
  padding-left: 30px; }

.comment-navigation {
  margin-bottom: 40px; }
  .comment-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap; }

.comments > .comment:first-child {
  border-top: 0; }

.comment-content p, .screen-reader-text.says {
  font-weight: 400; }

.edit-link {
  margin-right: 25px; }

#cancel-comment-reply-link {
  margin: 0 15px; }

.hamburger {
  padding: 12px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  display: none; }
  @media only screen and (max-width: 780px) {
    .hamburger {
      display: block; } }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: var(--tx); }

.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--tx);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

body {
  font-family: var(--text-typography-font-family);
  font-weight: var(--text-typography-variant);
  line-height: var(--text-typography-line-height); }

.home > .list,
.blog > .list,
.projects > .list {
  border-top: 1px solid var(--ui);
  margin-top: 30px;
  padding-top: 40px;
  position: relative; }
  .home > .list:before,
  .blog > .list:before,
  .projects > .list:before {
    display: block;
    content: " ";
    width: 7px;
    height: 7px;
    border: var(--ui) 1px solid;
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    background: var(--bg);
    box-shadow: var(--bg) 0 0 0 5px;
    border-radius: 3px; }

.home > .list > .item,
.blog > .list > .item,
.projects > .list > .item {
  display: block;
  width: 95%;
  margin: 0 auto; }

.home > .list > .item > .url,
.blog > .list > .item > .url,
.projects > .list > .item > .url {
  width: 100%;
  display: block;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 0;
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: space-between; }

.home > .list > .item > .url > .title,
.blog > .list > .item > .url > .title,
.projects > .list > .item > .url > .title {
  margin: 0;
  width: 75%;
  font-weight: 500;
  transition: all ease-in-out .2s;
  line-height: 28px;
  color: var(--secondary-color); }

.home > .list > .item:hover > .url,
.blog > .list > .item:hover > .url,
.projects > .list > .item:hover > .url {
  border-bottom: 0; }

.home > .list > .item:hover > .url > .title,
.blog > .list > .item:hover > .url > .title,
.projects > .list > .item:hover > .url > .title {
  color: var(--primary-color); }

.home > .list aside,
.blog > .list aside,
.projects > .list aside {
  position: relative;
  top: 2px;
  margin: 0;
  width: 25%;
  float: right;
  font-weight: 300;
  color: var(--tx-3);
  text-align: right;
  transition: all ease-in-out .2s;
  font-size: calc(1rem - 0.25em);
  line-height: 1; }

.home > .list .item:hover .url aside,
.blog > .list .item:hover .url aside,
.projects > .list .item:hover .url aside {
  color: var(--tx-3); }

.blog > .list > .item > .url > .title,
.projects > .list > .item > .url > .title {
  display: inline; }

.blog > .list > .item > .url > .emoji,
.projects > .list > .item > .url > .emoji {
  display: inline;
  position: relative;
  top: -4px;
  margin-right: 10px; }

.blog .item-image {
  width: 100%;
  padding-top: 40px; }
  .blog .item-image img {
    width: 100%; }

.page {
  margin-top: 225px; }
  @media screen and (max-width: 567px) {
    .page {
      margin-top: 140px; } }
  .page h1.single-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color); }

.about img {
  width: 50%;
  margin: 0 auto;
  display: block; }

.post {
  margin-top: 225px; }
  @media screen and (max-width: 567px) {
    .post {
      margin-top: 140px; } }
  .post > .title {
    text-align: center;
    line-height: 30px;
    margin: 0 0 20px 0; }
  .post > .meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px; }
    @media screen and (max-width: 567px) {
      .post > .meta {
        flex-direction: column; } }
    .post > .meta > .author-meta {
      display: flex;
      justify-content: center;
      align-items: center; }
      .post > .meta > .author-meta .author-avatar {
        border-radius: 50%;
        position: relative;
        box-shadow: inset 0 0 1px #ECF0F1; }
      .post > .meta > .author-meta .author-avatar-img {
        width: 32px;
        height: 32px;
        vertical-align: middle;
        border-radius: 16px;
        position: relative;
        z-index: -2; }
      .post > .meta > .author-meta .author-name {
        font-weight: 300;
        line-height: 21px;
        color: var(--tx-3);
        margin: 0 0 0 10px; }
    .post > .meta > .date {
      font-weight: 300;
      line-height: 21px;
      color: var(--tx-3); }
  .post > .date,
  .post > .post-tags {
    color: var(--tx-3);
    font-weight: 300;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 6rem;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility; }
  .post > .date {
    margin-bottom: 2rem; }
  .post > .post-tags > a {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 1.1rem;
    background: var(--ui);
    color: var(--tx-2);
    letter-spacing: 1px;
    margin: 3px 1px;
    text-decoration: none;
    display: inline-block; }
  .post .post-thumbnail {
    margin-bottom: 30px;
    width: 100%; }
    .post .post-thumbnail img {
      width: 100%; }
  .post > h2,
  .post > h3,
  .post > h4 {
    margin-top: 40px; }
    .post > h2 a,
    .post > h3 a,
    .post > h4 a {
      text-decoration: none; }
  .post > .title-image {
    max-height: 120px;
    display: block;
    margin: 0 auto; }
  .post > .blog-navigation {
    font-size: 1.4rem;
    display: block;
    width: auto;
    overflow: hidden; }
    .post > .blog-navigation a {
      display: block;
      width: 50%;
      float: left;
      margin: 1em 0; }
    .post > .blog-navigation .next {
      text-align: right; }

.single-content-area dl, .single-content-area dl *, .single-content-area ul *, .single-content-area ol * {
  line-height: 32px; }

table tr td, table tr th {
  padding: 5px; }

.social-share {
  display: flex;
  justify-content: space-between;
  margin: 50px 0; }

.social-share-title {
  line-height: 25px;
  color: var(--tx-3);
  font-family: inherit;
  font-weight: 400; }
  .social-share-title span {
    font-family: inherit; }

.social-share-links {
  display: flex;
  align-items: center; }
  .social-share-links a {
    text-decoration: none;
    margin-left: 25px;
    text-align: center;
    padding: 0 2px 5px 2px;
    filter: brightness(0);
    border: 0; }
    .social-share-links a:first-child {
      margin-left: 0; }
    .social-share-links a:hover {
      filter: brightness(1);
      border: 0; }
  .social-share-links img {
    min-width: 12px;
    min-height: 14px;
    vertical-align: middle; }

.separator {
  width: 7px;
  height: 7px;
  background: var(--bg);
  border: 1px solid var(--ui);
  border-radius: 4px; }
  .separator.spacer {
    margin: 0 30px; }
    @media screen and (max-width: 567px) {
      .separator.spacer {
        margin: 7px 0; } }

.tags {
  margin-top: 125px; }
  .tags > .list {
    border-top: 1px solid var(--ui);
    margin-top: 30px;
    padding-top: 40px;
    position: relative; }
    .tags > .list:before {
      display: block;
      content: " ";
      width: 7px;
      height: 7px;
      border: var(--ui) 1px solid;
      position: absolute;
      top: -5px;
      left: 50%;
      margin-left: -5px;
      background: var(--bg);
      box-shadow: var(--bg) 0 0 0 5px;
      border-radius: 3px; }

.tags > .list > .item {
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 3px 9px;
  border-radius: 3px;
  font-size: 1.3rem;
  background: var(--ui);
  color: var(--tx-2);
  letter-spacing: 1px;
  margin: 0 0.5rem 1rem;
  text-decoration: none;
  display: inline-block; }

.tag-list > .list {
  padding: 0; }
  .tag-list > .list > .item {
    display: block;
    width: 80%;
    margin: 0 10%; }
  .tag-list > .list > .item > .url {
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px 0;
    text-decoration: none; }
  .tag-list > .list > .item > .url > .title {
    margin: 0;
    width: 75%;
    font-weight: 400;
    transition: all ease-in-out .2s; }
  .tag-list > .list > .item:hover > .url > .title {
    color: var(--primary-color); }
  .tag-list > .list aside {
    position: relative;
    top: 2px;
    margin: 0;
    width: 25%;
    float: right;
    font-weight: 300;
    color: var(--tx-3);
    text-align: right;
    transition: all ease-in-out .2s;
    font-size: calc(1rem - 0.3rem); }
  .tag-list > .list .item:hover .url aside {
    color: var(--tx-2); }
