@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  max-width: 100%;
}

html {
  box-sizing: border-box;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

i,
em,
dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

mark {
  background-color: #fdffb6;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 3 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
}

button {
  overflow: visible;
  border: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer; /* 3 */
  -webkit-appearance: button; /* 2 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input:focus {
  outline: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  box-sizing: content-box; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  padding: 0; /* 2 */
  border: 0; /* 1 */
}

textarea {
  overflow: auto;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

:root {
  --font-system: system-ui, -apple-system, "BlinkMacSystemFont", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-headings: var(--gh-font-heading, var(--font-system));
  --font-body: var(--gh-font-body, var(--font-body), var(--font-system));
}

* {
  box-sizing: border-box;
}

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

html {
  font-family: var(--font-body);
  color: #333333;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #2196f3;
  cursor: pointer;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

img {
  max-width: 100%;
}

.lazy-image {
  transition: opacity 0.3s ease-in-out;
}

.lazy-image.loaded {
  opacity: 1;
}

hr {
  position: relative;
  display: block;
  width: 60px;
  margin: 40px auto;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid lightgrey;
}

.hidden {
  display: none !important;
}

.button-type-1 {
  background: transparent;
  border: 2px solid #333333;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}
.button-type-1:hover {
  border-color: #2196f3;
  color: #2196f3;
}

.button-with-icon {
  padding: 7px 17px;
  padding-right: 14px;
}
.button-with-icon .button-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.button-with-icon .button-wrapper span {
  display: block;
}
.button-with-icon .button-wrapper span.icon {
  width: 24px;
  height: 24px;
}
.button-with-icon .button-wrapper span.icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.wrapper-full {
  width: 100%;
  max-width: none;
  padding: 0 45px;
}

@media (max-width: 800px) {
  .wrapper-full {
    padding: 0 20px;
  }
}
.wrapper-1000 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .wrapper-1000 {
    padding: 0 20px;
  }
}
.wrapper-700 {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 750px) {
  .wrapper-700 {
    padding: 0 20px;
  }
}
.back-button {
  height: 65px;
  width: 65px;
}
.back-button button {
  display: block;
  text-decoration: none;
  color: #1e1e1e;
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}
.back-button button:hover {
  background: inherit;
  color: #40aaff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.back-button svg {
  width: 100%;
  height: 100%;
  stroke-width: 0.7;
}

.load-more-posts {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
}
.load-more-posts .button-type-1 {
  padding: 15px 30px;
  border-radius: 6px;
  color: #868686;
  border-color: #868686;
  font-size: 14px;
  font-weight: 400;
}
.load-more-posts .button-type-1:hover {
  color: #333333;
  border-color: #333333;
}
.load-more-posts .message {
  font-size: 16px;
  font-style: italic;
  color: #969696;
  display: none;
  font-weight: 400;
}

.notification-popup {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #a4d037;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  display: none;
}

body.subscribe-success .notification-popup {
  display: block;
}

.home-page-header__middle {
  margin-top: 15vh;
}

.home-page-header {
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
}
.home-page-header .overlay {
  background: rgba(0, 0, 0, 0.15);
  height: 100%;
}

.home-page-header__top {
  text-align: center;
}
.home-page-header__top .logo {
  max-width: 200px;
  padding: 40px 0 0;
}
.home-page-header__top .title {
  padding: 50px 0 20px;
  font-size: 33px;
  font-weight: 300;
  font-family: var(--font-headings);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.home-page-header__top .title a {
  color: white;
}
.home-page-header__top .description {
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.home-page-header__bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background: white;
}

.home-page-header__navigation {
  text-align: center;
  background: white;
}
.home-page-header__navigation .menu-item-wrapper {
  display: inline-block;
  padding: 20px 10px;
}
.home-page-header__navigation .menu-item-wrapper a {
  color: #868686;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  transition: all 0.2s;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-page-header__navigation .menu-item-wrapper a:hover {
  color: #333333;
}
.home-page-header__navigation .menu-item-wrapper--dropdown {
  position: relative;
}

.home-page-content {
  padding-top: 4%;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 18px;
  margin: 40px 0 40px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
  color: #222;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--ghost-accent-color);
}
.section-title--featured {
  margin-top: 0;
}
.section-title--latest {
  margin-top: 60px;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 18px;
    margin: 30px 0 20px 0;
  }
  .section-title--latest {
    margin-top: 40px;
  }
}
.hero-content-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 100%;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 750px) {
  .hero-content-wrapper {
    padding: 20px;
  }
}

.hero-text {
  text-align: center;
  margin-bottom: 30px;
}
.hero-text .hero-title {
  font-family: var(--font-headings);
  font-size: 48px;
  color: white;
  margin: 0 0 10px 0;
  line-height: 1.2;
  font-weight: 300;
}
.hero-text .hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.hero-subscription-form .signup-form .signup-box input[data-members-email]::-webkit-input-placeholder {
  color: #999;
  opacity: 1; /* important for Firefox */
}

.hero-subscription-form .signup-form .signup-box input[data-members-email]::-moz-placeholder {
  color: #999;
  opacity: 1; /* important for Firefox */
}

.hero-subscription-form .signup-form .signup-box input[data-members-email]:-ms-input-placeholder {
  color: #999;
  opacity: 1; /* important for Firefox */
}

.hero-subscription-form .signup-form .signup-box input[data-members-email]::-ms-input-placeholder {
  color: #999;
  opacity: 1; /* important for Firefox */
}

.hero-subscription-form .signup-form .signup-box input[data-members-email]::placeholder {
  color: #999;
  opacity: 1; /* important for Firefox */
}

.hero-subscription-form .home-signup-form .home-signup-box {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  padding: 4px;
  height: auto;
  transition: all 0.3s ease;
}
.hero-subscription-form .home-signup-form .home-signup-box:hover {
  background: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email] {
  outline: none;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent;
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email]::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email]:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email]::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email]::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.hero-subscription-form .home-signup-form .home-signup-box input[data-members-email]:focus {
  outline: none;
  color: rgba(255, 255, 255, 0.6) !important;
}
.hero-subscription-form .home-signup-form .home-signup-box .button.primary {
  background: var(--ghost-accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}
.hero-subscription-form .home-signup-form .home-signup-box .button.primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero-subscription-form .home-signup-form .home-signup-box .button-loader {
  display: none;
}
.hero-subscription-form .gh-subscribe-rss {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: all 0.3s ease;
}
.hero-subscription-form .gh-subscribe-rss:hover {
  color: white;
}
.hero-subscription-form .gh-subscribe-rss a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 750px) {
  .home-page-header__bottom {
    display: none;
  }
  .hero-title {
    font-size: 32px !important;
  }
  .home-page-header__middle {
    margin-top: 10vh;
  }
}
@media (max-width: 600px) {
  .home-page-header {
    height: 100vh;
    background-attachment: initial;
  }
  .home-page-header .wrapper-1000 {
    height: 100%;
  }
  .home-page-header__top .title {
    padding: 20px 0 10px;
    font-size: 24px;
  }
  .home-page-header__top .logo {
    padding: 0 0;
  }
  .home-page-header__bottom {
    display: none;
  }
}
.post-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card {
  border-radius: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0px 36px -2px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.post-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.post-card__image {
  overflow: hidden;
  display: block;
}

.post-card--featured .post-card__image {
  aspect-ratio: 3/2;
}

.post-card__image img {
  transition: all 0.2s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card:hover .post-card__image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.post-card__wrapper {
  display: block;
  outline: none;
}

.post-card__title {
  color: #616161;
  font-size: 20px;
  font-family: var(--font-headings);
  line-height: 1.5em;
  padding: 0 0 10px;
}

.post-card.no-image .post-card__title {
  padding-bottom: 4px;
}

.post-card__excerpt {
  color: #868686;
  font-size: 15px;
  line-height: 1.6em;
  padding: 10px 0 12px;
}

.post-card.no-image .post-card__excerpt {
  padding-top: 0;
}

.post-card__meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.post-card__tags {
  color: #868686;
  font-size: 12px;
  padding-right: 15px;
}
.post-card__tags a {
  color: #868686;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-card__tags a:hover {
  color: #333333;
}

.reading-time {
  color: #868686;
  white-space: nowrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reading-time:hover {
  color: #333333;
}

.post-card__date {
  display: none;
}

@media (max-width: 850px) {
  .wrapper-1000--post-feed {
    padding: 0 10px;
  }
  .post-feed {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-card {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .post-feed {
    grid-template-columns: 1fr;
  }
}
.site-header__main {
  text-align: center;
}

.floating-navigation__desktop {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site-header__logo {
  max-width: 200px;
  padding: 55px 0 0;
}

.site-header__title {
  padding: 50px 0 20px;
  font-size: 33px;
  font-weight: 300;
  font-family: var(--font-headings);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-header__title a {
  color: #424242;
}

.site-header__description {
  color: #868686;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.site-header__nav {
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 50px;
  padding-bottom: 20px;
  padding-top: 40px;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 100;
}
.site-header__nav .menu-item-wrapper {
  display: inline-block;
  padding: 20px 10px;
}
.site-header__nav .menu-item-wrapper a {
  color: #868686;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  transition: all 0.2s;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__nav .menu-item-wrapper a:hover {
  color: #333333;
}
.site-header__nav .menu-item-wrapper--dropdown {
  position: relative;
}
.site-header__nav .menu-item-wrapper--dropdown > .menu-item .dropdown-icon {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  color: #868686;
}
.site-header__nav .menu-item-wrapper--dropdown:hover > .menu-item .dropdown-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.site-header__nav .menu-item-wrapper--dropdown:hover .nav-dropdown-menu {
  display: block;
}
.site-header__nav .menu-item-wrapper--search button {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  color: #868686;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.site-header__nav .menu-item-wrapper--search button:hover {
  color: #333333;
}
.site-header__nav .menu-item-wrapper--search button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 850px) {
  .site-header__nav {
    display: none;
  }
  .site-header__main {
    padding-bottom: 55px;
  }
  .site-header__title {
    font-size: 26px;
  }
}
.site-footer {
  font-size: 14px;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px 0;
  background: #ececec;
  color: #4e4e4e;
}
.site-footer .footer-top {
  width: 100%;
  padding: 40px 0 0px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
}
.site-footer .footer-top .logo {
  margin-right: 35px;
  max-width: 100px;
  opacity: 0.8;
}
.site-footer .footer-top .logo a {
  display: block;
  margin-bottom: 20px;
}
.site-footer .footer-top .logo:hover {
  opacity: 1;
}
.site-footer .footer-top .site-title a {
  font-size: 27px;
  font-weight: 600;
  color: #4e4e4e;
  margin-right: 30px;
  opacity: 0.8;
}
.site-footer .footer-top .site-title a:hover {
  opacity: 1;
}
.site-footer .footer-top .footer-links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.site-footer .footer-top .footer-links .column {
  margin-right: 35px;
  margin-bottom: 20px;
}
.site-footer .footer-top .footer-links .column a {
  display: block;
  color: #4e4e4e;
  opacity: 0.8;
  margin-bottom: 15px;
  font-size: 14px;
}
.site-footer .footer-top .footer-links .column a:last-child {
  margin-bottom: 0;
}
.site-footer .footer-top .footer-links .column a:hover {
  opacity: 1;
}
.site-footer .footer-bottom {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer .footer-bottom .footer-right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-footer .footer-bottom .footer-right .social-icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-footer .footer-bottom .footer-right .social-icons a {
  display: block;
  color: #4e4e4e;
  margin-top: 5px;
  margin-left: 8px;
  opacity: 0.8;
}
.site-footer .footer-bottom .footer-right .social-icons a svg {
  fill: #4e4e4e;
  width: 19px;
}
.site-footer .footer-bottom .footer-right .social-icons a:hover {
  opacity: 1;
}
.site-footer .footer-bottom .footer-left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 0;
  opacity: 0.8;
}
.site-footer .footer-bottom .footer-left:hover {
  opacity: 1;
}
.site-footer .footer-bottom .footer-left .copyright {
  line-height: 22px;
  font-size: 14px;
}
.site-footer .footer-bottom .footer-left .copyright a {
  color: #4e4e4e;
  border-bottom: 1px solid #4e4e4e;
}
.site-footer .footer-bottom .footer-left .attribution {
  display: none;
}

nav.footer-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

nav.footer-nav a {
  text-decoration: none !important;
  border: none !important;
}

@media (max-width: 800px) {
  .site-footer .footer-bottom .footer-left .copyright {
    font-size: 12px;
  }
  .site-footer .footer-bottom {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  .site-footer .footer-bottom .footer-right .social-icons {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
.post-template .site-header .wrapper-1000,
.page-template .site-header .wrapper-1000 {
  max-width: 790px;
  padding: 0 20px;
}

.post-template .site-content,
.page-template .site-content {
  margin-bottom: 60px;
}
.post-template article header,
.page-template article header {
  margin-bottom: 30px;
}
.post-template article header img,
.page-template article header img {
  border-radius: 6px;
  margin-bottom: 35px;
}
.post-template article header .post-title,
.page-template article header .post-title {
  font-size: 33px;
  max-width: 700px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.3em;
  color: #333333;
  opacity: 0.85;
}
.post-template article header .date,
.page-template article header .date {
  font-size: 16px;
  color: #868686;
}
.post-template article.no-feature-image header .post-title,
.page-template article.no-feature-image header .post-title {
  text-align: center;
  margin: 0 auto 10px;
}
.post-template article.no-feature-image header .page-header__excerpt,
.page-template article.no-feature-image header .page-header__excerpt {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 10px;
}
.post-template article.no-feature-image header .date,
.page-template article.no-feature-image header .date {
  text-align: center;
}
.post-template .post-end-ellipses,
.page-template .post-end-ellipses {
  color: #bdbdbd;
  font-size: 1.125rem;
  line-height: 1;
  overflow: visible;
  text-align: center;
  word-spacing: 1em;
  margin: 10px 0 40px;
}
.post-template .post-end-ellipses:before,
.page-template .post-end-ellipses:before {
  content: "• • •";
}
.post-template .next-prev-posts,
.page-template .next-prev-posts {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}
.post-template .next-prev-posts .newer-post,
.post-template .next-prev-posts .older-post,
.page-template .next-prev-posts .newer-post,
.page-template .next-prev-posts .older-post {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 48%;
}
.post-template .next-prev-posts a.button-with-icon,
.page-template .next-prev-posts a.button-with-icon {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #868686;
  font-size: 14px;
  padding: 12px 0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.post-template .next-prev-posts a.button-with-icon:hover,
.page-template .next-prev-posts a.button-with-icon:hover {
  color: #333333;
}
.post-template .next-prev-posts a.button-with-icon .link-svg,
.page-template .next-prev-posts a.button-with-icon .link-svg {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-template .next-prev-posts a.button-with-icon .link-content,
.page-template .next-prev-posts a.button-with-icon .link-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.post-template .next-prev-posts a.button-with-icon .link-label,
.page-template .next-prev-posts a.button-with-icon .link-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}
.post-template .next-prev-posts a.button-with-icon .post-title,
.page-template .next-prev-posts a.button-with-icon .post-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.post-template .next-prev-posts a.button-with-icon:hover .post-title,
.page-template .next-prev-posts a.button-with-icon:hover .post-title {
  opacity: 1;
}
.post-template .next-prev-posts .newer-post a .link-svg,
.page-template .next-prev-posts .newer-post a .link-svg {
  margin-right: 12px;
}
.post-template .next-prev-posts .older-post a,
.page-template .next-prev-posts .older-post a {
  text-align: right;
  float: right;
}
.post-template .next-prev-posts .older-post a .link-content,
.page-template .next-prev-posts .older-post a .link-content {
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.post-template .next-prev-posts .older-post a .link-svg,
.page-template .next-prev-posts .older-post a .link-svg {
  margin-left: 12px;
}

.related-posts {
  margin-top: 60px;
  margin-bottom: 40px;
}
.related-posts__title {
  font-weight: 500;
  color: #333333;
  margin-bottom: 30px;
  text-align: left;
  opacity: 0.85;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-posts__grid .post-card {
  margin-bottom: 0;
  width: 100%;
  padding: 0;
  box-shadow: none;
}
.related-posts__grid .post-card:hover {
  box-shadow: none;
}
.related-posts__grid .post-card .post-card__title {
  font-size: 18px;
}

@media (max-width: 800px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .related-posts__title {
    margin-bottom: 20px;
  }
  .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.post-sharing-icons {
  padding: 12px 12px;
  right: 0;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.post-sharing-icons header {
  text-align: right;
  font-size: 12px;
  color: #868686;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.post-sharing-icons .post-sharing-icons__wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.post-sharing-icons.visible {
  visibility: visible;
}

.post-sharing-icon {
  transition: all 0.2s;
}
.post-sharing-icon .icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 12px;
}
.post-sharing-icon .icon svg {
  fill: #4c4c4c;
  width: 100%;
  height: 100%;
}
.post-sharing-icon .title {
  display: none;
}
.post-sharing-icon:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.author-details {
  margin-bottom: 40px;
}

.author-card {
  display: grid;
  grid-template-columns: 70px auto;
  background: #fafafa;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 6px;
}
.author-card:last-child {
  margin-bottom: 0;
}
.author-card .profile-image img {
  border-radius: 50%;
  display: block;
}
.author-card .details {
  padding-left: 20px;
}
.author-card .details .name a {
  color: #333333;
}
.author-card .details .name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.author-card .details .bio {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
  color: #868686;
}
.author-card .details .read-more {
  font-size: 14px;
  line-height: 22px;
  color: #868686;
}
.author-card .details .read-more a {
  font-weight: 500;
  color: #868686;
  border-bottom: 1px solid #868686;
}
.author-card .details .read-more a:hover {
  color: #333333;
  border-color: #333333;
}
.author-card .details .meta {
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 7px;
  line-height: 21px;
}
.author-card .details .meta .social-links a {
  opacity: 0.7;
}
.author-card .details .meta .social-links a:hover {
  opacity: 1;
}
.author-card .details .meta .social-links .link-with-svg {
  margin-right: 4px;
}
.author-card .details .meta .social-links .link-with-svg .link-svg svg {
  fill: #333333;
  width: 15px;
  height: 15px;
}
.author-card .details .meta .social-links .link-with-svg .rss svg {
  width: 14px;
}
.author-card .details .meta .social-links .link-with-svg .link-text {
  display: none;
}
.author-card .details .meta .location,
.author-card .details .meta .website {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
}
.author-card .details .meta .location svg,
.author-card .details .meta .website svg {
  opacity: 0.7;
  width: 15px;
  height: 15px;
  margin-right: 3px;
}
.author-card .details .meta .location .text,
.author-card .details .meta .website .text {
  font-size: 14px;
  margin-bottom: 3px;
  margin-left: 3px;
  opacity: 0.7;
}
.author-card .details .meta .location .text a,
.author-card .details .meta .website .text a {
  color: #333333;
}
.author-card .details .meta .location .text:hover,
.author-card .details .meta .website .text:hover {
  opacity: 1;
}
.author-card .details .meta .separator {
  color: #868686;
  padding: 0 10px;
}

@media (max-width: 800px) {
  .author-card {
    display: block;
  }
  .author-card .profile-image {
    width: 80px;
    margin-bottom: 10px;
  }
  .author-card .details {
    padding-left: 0;
  }
}
article p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: var(--font-body);
  color: #424242;
  opacity: 0.92;
}
article h1 {
  font-family: var(--font-headings);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}
article h2 {
  font-family: var(--font-headings);
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.2;
  margin-top: 30px;
}
article h3 {
  font-size: 26px;
  font-family: var(--font-headings);
  line-height: 1.3;
  margin-bottom: 30px;
}
article h4 {
  font-size: 22px;
  font-family: var(--font-headings);
  line-height: 1.3;
  margin-bottom: 30px;
}
article h5 {
  font-size: 20px;
  font-family: var(--font-headings);
  line-height: 1.4;
  margin-bottom: 30px;
}
article h6 {
  font-family: var(--font-headings);
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.2;
  padding-top: 20px;
}
article ul {
  margin: 30px auto;
  list-style: outside none disclosure-closed;
  padding: 0px 0px 0px 18px;
  font-family: var(--font-body);
  width: 100%;
}
article ul li {
  margin-bottom: 15px;
  line-height: 1.68em;
  font-size: 18px;
  color: #424242;
  opacity: 0.92;
}
article ol {
  margin: 30px auto;
  list-style: outside none inherit;
  padding: 0px 0px 0px 18px;
  font-family: var(--font-body);
  width: 100%;
}
article ol li {
  margin-bottom: 15px;
  line-height: 1.68em;
  font-size: 18px;
  color: #424242;
  opacity: 0.92;
}
article a {
  display: inline;
  color: #424242;
  text-decoration: none;
  border-bottom: 1px solid #424242;
}
article a:hover {
  color: #333333;
  border-color: #333333;
}
article mark {
  background: #69ff85;
  padding: 3px;
  border-radius: 3px;
}
article strong {
  font-weight: 700;
  color: #424242;
  opacity: 1;
}
article blockquote {
  margin: 30px auto;
  color: #424242;
  font-style: italic;
  border-left: 3px solid #424242;
  padding-left: 17px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.68em;
  opacity: 0.92;
}
article blockquote * {
  font-size: 18px;
  line-height: 30px;
}
article blockquote p {
  width: 100%;
}
article pre {
  display: block;
  overflow-x: auto;
  color: #000;
  background: 3ececec none repeat scroll 0% 0%;
  margin: 30px auto;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: normal;
  font-size: 12.4px;
  line-height: 1.5em;
  font-family: Menlo, Monaco, Lucida Console, Liberation Mono, Courier New, monospace, serif;
}
article pre code {
  display: block;
  padding: 14px;
  margin: 0;
}
article code {
  border-radius: 4px;
  padding: 9px;
  display: inline-block;
  margin: 2px 0;
  color: #000000;
  background: #ececec none repeat scroll 0% 0%;
  box-sizing: border-box;
  font-size: 12.4px;
  line-height: 1.5em;
  font-family: Menlo, Monaco, Lucida Console, Liberation Mono, Courier New, monospace, serif;
}
article hr {
  position: relative;
  display: block;
  width: 100%;
  margin: 40px auto;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid lightgrey;
}
article img {
  display: block;
  margin: 0px auto;
  border-radius: 4px;
  height: auto;
}
article figcaption {
  font-family: var(--font-body);
  padding: 10px 0px 0;
  text-align: left;
  font-size: 16px;
  color: #868686;
}
article .kg-image-card {
  width: 100%;
  margin: 30px auto;
}
article .kg-width-wide {
  width: 100%;
  margin: 30px auto;
  width: auto;
}
article .kg-width-full {
  max-width: 100%;
  margin: 30px auto;
  width: auto;
}

@media (max-width: 600px) {
  .post-template .next-prev-posts,
  .page-template .next-prev-posts {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .post-template .next-prev-posts .newer-post,
  .post-template .next-prev-posts .older-post,
  .page-template .next-prev-posts .newer-post,
  .page-template .next-prev-posts .older-post {
    max-width: 100%;
    width: 100%;
  }
  .post-template .next-prev-posts a.button-with-icon,
  .page-template .next-prev-posts a.button-with-icon {
    padding: 10px 12px;
  }
  .post-template .next-prev-posts a.button-with-icon .post-title,
  .page-template .next-prev-posts a.button-with-icon .post-title {
    font-size: 14px;
  }
  article p {
    font-size: 16px;
    line-height: 1.68em;
    margin-bottom: 20px;
    opacity: 0.92;
  }
  article ol li,
  article ul li {
    font-size: 14.8px;
    line-height: 1.68em;
  }
}
.kg-gallery-card {
  max-width: none !important;
}

.kg-gallery-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}

.kg-gallery-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}

.kg-gallery-row:not(:first-of-type) {
  margin: 0.75em 0 0 0;
}

.kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 0.75em;
}

.kg-gallery-card figcaption {
  padding: 0;
}

.kg-bookmark-card {
  margin-bottom: 30px;
}

.kg-bookmark-icon {
  margin-left: 0;
}

.kg-image-card a.pinterest-share-button,
.kg-gallery-image a.pinterest-share-button {
  opacity: 0;
}

.kg-image-card:hover a.pinterest-share-button,
.kg-gallery-image:hover a.pinterest-share-button {
  opacity: 1;
}

.pinterest-share-button {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  width: 20px;
  height: 20px;
  background-color: #E60023;
  border-radius: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.pinterest-share-button svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.pinterest-share-button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pinterest-share-button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.kg-image-card {
  position: relative;
}

.kg-gallery-image {
  position: relative;
}

.kg-image-card img,
.kg-gallery-image img {
  position: relative;
}

.gh-content .kg-card:has(+ hr) {
  margin-bottom: 0 !important;
}

.gh-content > *:has(+ hr) {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  a.pinterest-share-button {
    opacity: 0 !important;
  }
  .pinterest-share-button {
    width: 36px;
    height: 36px;
    top: 8px;
    left: 8px;
  }
  .pinterest-share-button svg {
    width: 18px;
    height: 18px;
  }
}
.page-header--default {
  margin-bottom: 35px;
}
.page-header--default .page-header__layout {
  display: block;
}
.page-header--default .page-header__layout .page-header__image-section {
  margin-bottom: 20px;
}
.page-header--default .page-header__layout .page-header__image-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.page-header--default .page-header__layout .page-header__text-section .page-header__title {
  font-size: 33px;
  font-weight: 300;
  line-height: 1.3em;
  color: #333333;
  opacity: 0.85;
  margin-bottom: 10px;
}

.page-header--image-right {
  margin-bottom: 35px;
  padding: 0 20px;
}
.page-header--image-right .page-header__layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-header--image-right .page-header__layout .page-header__image-section {
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.page-header--image-right .page-header__layout .page-header__image-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.page-header--image-right .page-header__layout .page-header__text-section {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.page-header--image-right .page-header__layout .page-header__text-section .page-header__title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3em;
  color: #333333;
  opacity: 0.85;
}

.page-header--image-left {
  margin-bottom: 35px;
  padding: 0 20px;
}
.page-header--image-left .page-header__layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-header--image-left .page-header__layout .page-header__image-section {
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.page-header--image-left .page-header__layout .page-header__image-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.page-header--image-left .page-header__layout .page-header__text-section {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.page-header--image-left .page-header__layout .page-header__text-section .page-header__title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3em;
  color: #333333;
  opacity: 0.85;
  margin-bottom: 20px;
}
.page-header--image-left .page-header__layout .page-header__text-section .page-header__excerpt {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.75;
}

@media (max-width: 900px) and (min-width: 601px) {
  .page-header--default {
    margin-bottom: 30px;
  }
  .page-header--default .page-header__layout .page-header__image-section {
    margin-bottom: 15px;
  }
  .page-header--default .page-header__layout .page-header__text-section .page-header__title {
    font-size: 30px;
  }
  .page-header--image-right {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .page-header--image-right .page-header__layout {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
  }
  .page-header--image-right .page-header__layout .page-header__image-section {
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .page-header--image-right .page-header__layout .page-header__text-section {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-header--image-right .page-header__layout .page-header__text-section .page-header__title {
    font-size: 30px;
  }
  .page-header--image-left {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .page-header--image-left .page-header__layout {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
  }
  .page-header--image-left .page-header__layout .page-header__image-section {
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .page-header--image-left .page-header__layout .page-header__text-section {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-header--image-left .page-header__layout .page-header__text-section .page-header__title {
    font-size: 30px;
  }
  .page-header--image-left .page-header__layout .page-header__text-section .page-header__excerpt {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .page-header--default {
    margin-bottom: 25px;
  }
  .page-header--default .page-header__layout .page-header__image-section {
    margin-bottom: 15px;
  }
  .page-header--default .page-header__layout .page-header__text-section .page-header__title {
    font-size: 26px;
  }
  .page-header--image-right {
    margin-bottom: 25px;
    padding: 0 20px;
  }
  .page-header--image-right .page-header__layout {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
  .page-header--image-right .page-header__layout .page-header__image-section {
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .page-header--image-right .page-header__layout .page-header__text-section {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-header--image-right .page-header__layout .page-header__text-section .page-header__title {
    font-size: 26px;
  }
  .page-header--image-left {
    margin-bottom: 25px;
    padding: 0 20px;
  }
  .page-header--image-left .page-header__layout {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
  .page-header--image-left .page-header__layout .page-header__image-section {
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .page-header--image-left .page-header__layout .page-header__text-section {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-header--image-left .page-header__layout .page-header__text-section .page-header__title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .page-header--image-left .page-header__layout .page-header__text-section .page-header__excerpt {
    font-size: 16px;
    line-height: 1.6;
  }
}
.tag-page-header {
  height: 100vh;
  background-size: cover;
  min-height: 700px;
  background-attachment: fixed;
}
.tag-page-header .overlay {
  background: rgba(0, 0, 0, 0.25);
  height: 100%;
}

.tag-page-header.no-cover-image .overlay {
  background: #333;
}

.tag-page-header__top {
  text-align: center;
}
.tag-page-header__top .logo {
  max-width: 200px;
  padding: 40px 0 0;
}
.tag-page-header__top .title {
  padding: 50px 0 20px;
  font-size: 33px;
  font-weight: 300;
  font-family: var(--font-headings);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tag-page-header__top .title a {
  color: white;
}
.tag-page-header__top .description {
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.tag-page-header__middle {
  padding-top: 100px;
}

.tag-page-header__bottom {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
}

.tag-page-header__navigation {
  text-align: center;
}
.tag-page-header__navigation .menu-item-wrapper {
  display: inline-block;
  padding: 20px 15px;
}
.tag-page-header__navigation .menu-item-wrapper a {
  color: #868686;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  transition: all 0.2s;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tag-page-header__navigation .menu-item-wrapper a:hover {
  color: #333333;
}
.tag-page-header__navigation .menu-item-wrapper--dropdown {
  position: relative;
}

.tag-page-content {
  padding-top: 4%;
}

.tag-page-header .wrapper-1000 {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.tag-page-header__top {
  position: absolute;
  margin: 0 auto;
  top: 60px;
  left: 0;
  width: 100%;
}

.tag-title {
  text-align: center;
  font-size: 38px;
  font-weight: 300;
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3em;
}

.tag-description {
  font-size: 18px;
  max-width: 100%;
  text-align: center;
  line-height: 1.68em;
}

@media (max-width: 600px) {
  .tag-page-header {
    height: 100vh;
    background-attachment: initial;
  }
  .tag-page-header .wrapper-1000 {
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tag-page-header__top .title {
    padding: 40px 0 10px;
    font-size: 22px;
  }
  .tag-page-header__bottom {
    display: none;
  }
  .tag-page-header__middle {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
  .tag-title {
    font-size: 27px;
  }
  .tag-description {
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
    padding-left: 0;
  }
}
.tag-archives-header {
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
}
.tag-archives-header .overlay {
  background: rgba(0, 0, 0, 0.25);
  height: 100%;
}

.tag-archives-header.no-cover-image .overlay {
  background: #333;
}

.tag-archives-header__top {
  text-align: center;
}
.tag-archives-header__top .logo {
  max-width: 200px;
  padding: 40px 0 0;
}
.tag-archives-header__top .title {
  padding: 50px 0 20px;
  font-size: 20px;
  font-weight: 300;
  font-family: var(--font-headings);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tag-archives-header__top .title a {
  color: white;
}
.tag-archives-header__top .description {
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.tag-archives-header__bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background: white;
}

.tag-archives-header__navigation {
  text-align: center;
}
.tag-archives-header__navigation .menu-item-wrapper {
  display: inline-block;
  padding: 20px 15px;
}
.tag-archives-header__navigation .menu-item-wrapper a {
  color: #868686;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  transition: all 0.2s;
}
.tag-archives-header__navigation .menu-item-wrapper a:hover {
  color: #333333;
}
.tag-archives-header__navigation .menu-item-wrapper--dropdown {
  position: relative;
}

.tag-archives-content {
  padding: 80px 0;
}

.tag-archives-header .wrapper-1000 {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.tag-archives-header__top {
  position: absolute;
  margin: 0 auto;
  top: 0;
  left: 0;
  width: 100%;
}

.tag-archives-header__middle {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-archives-title {
  text-align: center;
  font-size: 48px;
  font-weight: 300;
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  margin-bottom: 20px;
}

.tag-archives-description {
  font-size: 18px;
  text-align: center;
  line-height: 1.68em;
  max-width: 600px;
  color: white;
}

.tag-archives-container {
  width: 100%;
}

.tag-archives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tag-archive-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 16px 24px -6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.tag-archive-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tag-archive-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tag-archive-card__header {
  position: relative;
  overflow: hidden;
}

.tag-archive-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.tag-archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tag-archive-card__image--placeholder {
  background: linear-gradient(135deg, var(--ghost-accent-color) 0%, rgba(51, 51, 51, 0.8) 100%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tag-archive-card__image--placeholder .tag-initial {
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  font-family: var(--font-headings);
}

.tag-archive-card:hover .tag-archive-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.tag-archive-card__content {
  padding: 24px;
}

.tag-archive-card__title {
  font-size: 20px;
  font-family: var(--font-headings);
  color: #333333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.tag-archive-card__description {
  font-size: 14px;
  line-height: 1.6;
  color: #868686;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-archive-card__meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  border-top: 1px solid #d0c7c2;
}

.post-count {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.no-tags-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #868686;
  font-size: 18px;
}

@media (max-width: 750px) {
  .tag-archives-header__bottom {
    display: none;
  }
}
@media (max-width: 600px) {
  .tag-archives-header {
    height: 100vh;
    background-attachment: initial;
  }
  .tag-archives-header .wrapper-1000 {
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tag-archives-header__top .title {
    padding: 40px 0 10px;
    font-size: 22px;
  }
  .tag-archives-header__bottom {
    display: none;
  }
  .tag-archives-header__middle {
    margin-top: 20px;
  }
  .tag-archives-title {
    font-size: 32px;
  }
  .tag-archives-description {
    font-size: 16px;
    padding: 0 20px;
  }
  .tag-archives-content {
    padding: 40px 0;
  }
  .tag-archives-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .tag-archive-card__image {
    height: 140px;
  }
  .tag-archive-card__content {
    padding: 20px;
  }
  .tag-archive-card__title {
    font-size: 20px;
  }
  .tag-archive-card__description {
    font-size: 13px;
  }
}
.author-template .site-header__nav {
  display: none;
}

.author-template .site-header__main {
  padding-bottom: 55px;
}

.author-template__avatar {
  height: 120px;
  width: 120px;
  border-radius: 6px;
  border: 2px white solid;
  margin: 0 auto 20px;
  border-radius: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.author-template__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-template__name {
  font-size: 31px;
  line-height: 1.5em;
  font-weight: 300;
  font-family: var(--font-headings);
  text-align: center;
  margin: 0 auto;
  text-transform: capitalize;
}

.author-template__bio {
  font-size: 16px;
  line-height: 1.68em;
  color: #868686;
  margin: 20px 0 0;
  text-align: center;
  max-width: 450px;
  margin: 20px auto 0;
}

.author-template__meta {
  margin: 20px 0 0;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.author-template__social-media {
  margin: 0px 0px;
}
.author-template__social-media .link-with-svg {
  margin-right: 4px;
}
.author-template__social-media .link-with-svg .link-svg svg {
  fill: #868686;
  width: 19px;
  height: 19px;
  transition: all 0.2s;
}
.author-template__social-media .link-with-svg .link-svg svg:hover {
  fill: #333333;
}
.author-template__social-media .link-with-svg .rss svg {
  width: 16px;
}
.author-template__social-media .link-with-svg .link-text {
  display: none;
}

.author-template__location,
.author-template__website {
  margin: 0px 0px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #868686;
  transition: all 0.2s;
}
.author-template__location:hover,
.author-template__website:hover {
  color: #333333;
}
.author-template__location svg,
.author-template__website svg {
  width: 19px;
  height: 19px;
  margin-right: 3px;
}
.author-template__location .text,
.author-template__website .text {
  margin-bottom: 3px;
  margin-left: 3px;
  font-size: 15px;
}

.author-template__website a {
  color: #868686;
  border-bottom: 1px solid #868686;
}
.author-template__website a:hover {
  color: #333333;
}

.author-template__separator {
  font-size: 24px;
  margin: 5px 10px;
  color: #868686;
}

.author-template-content {
  margin-top: 55px;
}

.error-page {
  height: 100vh;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.error-page button {
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 14px;
}
.error-page .code {
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 0px;
}
.error-page .message {
  font-size: 16px;
  margin-bottom: 10px;
}

.lds-ripple {
  position: relative;
  width: 64px;
  height: 64px;
  display: none;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #949494;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
.progress {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  border: none;
  color: #868686;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.progress::-webkit-progress-bar {
  background-color: transparent;
}

.progress::-webkit-progress-value {
  background-color: #868686;
}

.progress::-moz-progress-bar {
  background-color: #868686;
}

.progress-container {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: transparent;
}

.progress-bar {
  display: block;
  width: 50%;
  height: inherit;
  background-color: #868686;
}

@media (max-width: 800px) {
  .floating-header-logo {
    margin-left: 10px;
  }
  .floating-header-logo a {
    color: #2e2e2e;
  }
  .floating-header-title,
  .floating-header-divider {
    visibility: hidden;
  }
}
@media (max-width: 450px) {
  .floating-header-share-label {
    display: none;
  }
}
.floating-navigation {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: white;
  color: #868686;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, -120%, 0);
          transform: translate3d(0, -120%, 0);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.floating-navigation .menu-item-wrapper {
  display: inline-block;
  padding: 15px;
}
.floating-navigation .menu-item-wrapper a {
  color: #868686;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  transition: all 0.2s;
  line-height: 1.5em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.floating-navigation .menu-item-wrapper a:hover {
  color: #333333;
}
.floating-navigation .menu-item-wrapper--dropdown {
  position: relative;
}
.floating-navigation .menu-item-wrapper--dropdown > .menu-item .dropdown-icon {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  color: #868686;
}
.floating-navigation .menu-item-wrapper--dropdown:hover > .menu-item .dropdown-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.floating-navigation .menu-item-wrapper--dropdown:hover .nav-dropdown-menu {
  display: block;
}

.floating-navigation.active {
  visibility: visible;
  transition: all 500ms cubic-bezier(0.22, 1, 0.27, 1);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.floating-navigation__desktop {
  text-align: center;
}

.floating-navigation__mobile {
  display: none;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.floating-navigation__blog-title a {
  display: block;
  padding: 17px 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #333333;
  letter-spacing: 0.1em;
}
.floating-navigation__blog-title a:hover {
  color: #333333;
}

.floating-navigation__search button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 17px 20px;
  color: #333333;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.floating-navigation__search button:hover {
  color: #868686;
}
.floating-navigation__search button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 850px) {
  .floating-navigation__desktop {
    display: none;
  }
  .floating-navigation__mobile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.gh-subscribe {
  background-attachment: fixed;
  background-position: bottom center;
  background-size: cover;
}
.gh-subscribe .overlay {
  height: 100%;
  padding: 70px;
  background: rgba(0, 0, 0, 0.15);
}
.gh-subscribe .wrapper-1000 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.gh-subscribe .one {
  padding-right: 30px;
}
.gh-subscribe .one p {
  font-size: 25px;
  color: white;
  max-width: 400px;
  line-height: 1.5em;
}
.gh-subscribe .two {
  width: 100%;
  max-width: 400px;
}
.gh-subscribe .two form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gh-subscribe .two form .form-group {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.gh-subscribe .two form button {
  padding: 10px;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
}
.gh-subscribe .subscribe-email {
  border: none;
  padding: 10px;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.65);
  color: #333333;
  font-size: 14px;
  width: 100%;
}
.gh-subscribe .gh-subscribe-rss {
  display: block;
  padding-top: 11px;
  font-size: 14px;
  color: white;
}
.gh-subscribe .gh-subscribe-rss a {
  color: white;
  border-bottom: 1px solid white;
}

.signup-form .signup-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 37px;
}
.signup-form .signup-box input[type=email] {
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  height: 100%;
  width: 100%;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.signup-form .signup-box input[type=email]::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}
.signup-form .signup-box input[type=email]::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}
.signup-form .signup-box input[type=email]:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}
.signup-form .signup-box input[type=email]::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}
.signup-form .signup-box input[type=email]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}
.signup-form .signup-box input[type=email]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}
.signup-form .signup-box input[type=email]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}
.signup-form .signup-box button {
  margin: 0;
  height: 100%;
  color: #333333;
  background: white;
  border-radius: 0;
  display: block;
  padding: 10px;
  border-radius: 0 4px 4px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}
.signup-form .signup-box .button-loader {
  display: none;
}
.signup-form .signin-link {
  margin: 0 0 30px;
  font-size: 14px;
}
.signup-form .message-success,
.signup-form .message-error {
  display: none;
  margin-top: 10px;
}

.signup-form.loading .signup-box .button-content {
  display: none;
}
.signup-form.loading .signup-box .button-loader {
  display: block;
}

.signup-form.error .message-error {
  display: block;
  color: red;
  font-size: 14px;
}

.signup-form.success .message-success {
  display: block;
  color: #4caf50;
  font-size: 14px;
}

@media (max-width: 850px) {
  .gh-subscribe .overlay {
    padding: 50px 0px;
  }
  .gh-subscribe .one {
    padding-right: 0;
    padding-bottom: 20px;
  }
  .gh-subscribe .one p {
    font-size: 23px;
    text-align: center;
  }
  .gh-subscribe .gh-subscribe-rss {
    text-align: center;
  }
}
.drawer-handle {
  position: relative;
  z-index: 501;
  width: 30px;
  height: 35px;
  cursor: pointer;
  margin: 0 20px -10px 0;
}
.drawer-handle span {
  position: absolute;
  cursor: pointer;
  height: 1px;
  width: 30px;
  background: #333333;
  position: absolute;
  display: block;
  content: "";
  top: 0px;
}
.drawer-handle span:before, .drawer-handle span:after {
  cursor: pointer;
  height: 1px;
  width: 30px;
  background: #333333;
  position: absolute;
  display: block;
  content: "";
  top: 0px;
}
.drawer-handle span.second {
  top: 7px;
}
.drawer-handle span {
  transition: all 0.2s ease;
}
.drawer-handle span:after {
  transition: all 0.2s ease;
  top: 14px;
}
.drawer-handle span:before {
  transition: all 0.2s ease;
  top: 7px;
}

.drawer-handle.open span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  background: #333333;
}
.drawer-handle.open span:before {
  background-color: transparent;
}
.drawer-handle.open span:after {
  background: #333333;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0px;
}

.drawer-menu {
  position: fixed;
  z-index: 101;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  width: 30%;
  padding-top: 40px;
  transition: 400ms;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 400;
  background: white;
  border-bottom: 5px solid black;
  top: 0;
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30vw;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.3);
  visibility: hidden;
}
.drawer-menu ul.nav {
  list-style: none;
  padding: 0;
}
.drawer-menu a {
  color: #333333;
  letter-spacing: 0.1em;
  display: block;
  padding: 18px 20px;
  text-transform: uppercase;
  font-size: 12px;
}
.drawer-menu a:hover {
  color: #333;
}
.drawer-menu .nav-current a {
  border-left: 2px solid #8a8a8a;
  background: #f3f3f3;
}
.drawer-menu .nav-dropdown-menu {
  display: none;
  position: static;
  float: none;
  left: 0;
  top: 0;
  z-index: 1;
  box-shadow: none;
  border: none;
  background: #f9f9f9;
  margin-top: 0;
}
.drawer-menu .nav-dropdown-menu.open {
  display: block;
}
.drawer-menu .nav-dropdown-menu .nav-dropdown-menu-wrapper {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.drawer-menu .nav-dropdown-menu .nav-dropdown-menu-wrapper::before {
  display: none;
}
.drawer-menu .nav-dropdown-menu .nav-dropdown-menu-wrapper a {
  width: 100%;
  padding: 12px 20px 12px 35px;
  text-align: left;
  font-size: 11px;
  border-bottom: 1px solid #eaeaea;
  color: #333333;
}
.drawer-menu .nav-dropdown-menu .nav-dropdown-menu-wrapper a:hover {
  background: #f0f0f0;
  color: #333;
}
.drawer-menu .menu-item-wrapper--dropdown > .menu-item {
  cursor: pointer;
  position: relative;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-menu .menu-item-wrapper--dropdown > .menu-item .dropdown-icon {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  padding: 8px;
  vertical-align: middle;
  color: #868686;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  cursor: pointer;
  border-radius: 4px;
}
.drawer-menu .menu-item-wrapper--dropdown > .menu-item .dropdown-icon:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333333;
}
.drawer-menu .menu-item-wrapper--dropdown > .menu-item .dropdown-icon:active {
  background-color: rgba(0, 0, 0, 0.1);
}
.drawer-menu .menu-item-wrapper--dropdown > .menu-item .dropdown-icon svg {
  width: 12px;
  height: 12px;
  display: block;
}
.drawer-menu .menu-item-wrapper--dropdown.dropdown-open > .menu-item .dropdown-icon {
  color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}
.drawer-menu.open {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
}

@media (max-width: 750px) {
  .drawer-menu {
    width: 70%;
    width: 70vw;
  }
}
.site-header__nav .nav-dropdown-menu,
.floating-navigation__desktop .nav-dropdown-menu,
.home-page-header__navigation .nav-dropdown-menu,
.tag-page-header__navigation .nav-dropdown-menu {
  float: left;
  display: none;
  position: absolute;
  top: 45px;
  left: calc(50% - 87px);
  z-index: 99999;
  min-width: 170px;
}
.site-header__nav .nav-dropdown-menu.dropdown-hidden,
.floating-navigation__desktop .nav-dropdown-menu.dropdown-hidden,
.home-page-header__navigation .nav-dropdown-menu.dropdown-hidden,
.tag-page-header__navigation .nav-dropdown-menu.dropdown-hidden {
  display: none !important;
}
.site-header__nav .nav-dropdown-menu.dropdown-visible,
.floating-navigation__desktop .nav-dropdown-menu.dropdown-visible,
.home-page-header__navigation .nav-dropdown-menu.dropdown-visible,
.tag-page-header__navigation .nav-dropdown-menu.dropdown-visible {
  display: block !important;
}
.site-header__nav .nav-dropdown-menu .nav-dropdown-menu-wrapper,
.floating-navigation__desktop .nav-dropdown-menu .nav-dropdown-menu-wrapper,
.home-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper,
.tag-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper {
  background: #fff;
  border-radius: 6px;
  border: 2px solid #e6e6e6;
  box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.site-header__nav .nav-dropdown-menu .nav-dropdown-menu-wrapper a,
.floating-navigation__desktop .nav-dropdown-menu .nav-dropdown-menu-wrapper a,
.home-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper a,
.tag-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper a {
  display: block;
  padding: 11px 15px;
  line-height: 1.5em;
  width: 170px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #868686;
}
.site-header__nav .nav-dropdown-menu .nav-dropdown-menu-wrapper a:last-child,
.floating-navigation__desktop .nav-dropdown-menu .nav-dropdown-menu-wrapper a:last-child,
.home-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper a:last-child,
.tag-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper a:last-child {
  border-bottom: 0;
}
.site-header__nav .nav-dropdown-menu .nav-dropdown-menu-wrapper a:hover,
.floating-navigation__desktop .nav-dropdown-menu .nav-dropdown-menu-wrapper a:hover,
.home-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper a:hover,
.tag-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper a:hover {
  background: #ececec;
}
.site-header__nav .nav-dropdown-menu .nav-dropdown-menu-wrapper::before,
.floating-navigation__desktop .nav-dropdown-menu .nav-dropdown-menu-wrapper::before,
.home-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper::before,
.tag-page-header__navigation .nav-dropdown-menu .nav-dropdown-menu-wrapper::before {
  top: -21px;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: #e6e6e6;
  border-width: 11px;
  margin-left: -11px;
}
.site-header__nav .menu-item-wrapper:hover .nav-dropdown-menu,
.floating-navigation__desktop .menu-item-wrapper:hover .nav-dropdown-menu,
.home-page-header__navigation .menu-item-wrapper:hover .nav-dropdown-menu,
.tag-page-header__navigation .menu-item-wrapper:hover .nav-dropdown-menu {
  display: block !important;
}
.site-header__nav .menu-item-wrapper--dropdown,
.floating-navigation__desktop .menu-item-wrapper--dropdown,
.home-page-header__navigation .menu-item-wrapper--dropdown,
.tag-page-header__navigation .menu-item-wrapper--dropdown {
  position: relative;
}
.site-header__nav .menu-item-wrapper--dropdown > .menu-item,
.floating-navigation__desktop .menu-item-wrapper--dropdown > .menu-item,
.home-page-header__navigation .menu-item-wrapper--dropdown > .menu-item,
.tag-page-header__navigation .menu-item-wrapper--dropdown > .menu-item {
  position: relative;
}
.site-header__nav .menu-item-wrapper--dropdown > .menu-item .dropdown-icon,
.floating-navigation__desktop .menu-item-wrapper--dropdown > .menu-item .dropdown-icon,
.home-page-header__navigation .menu-item-wrapper--dropdown > .menu-item .dropdown-icon,
.tag-page-header__navigation .menu-item-wrapper--dropdown > .menu-item .dropdown-icon {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  color: #868686;
}
.site-header__nav .menu-item-wrapper--dropdown:hover > .menu-item .dropdown-icon,
.floating-navigation__desktop .menu-item-wrapper--dropdown:hover > .menu-item .dropdown-icon,
.home-page-header__navigation .menu-item-wrapper--dropdown:hover > .menu-item .dropdown-icon,
.tag-page-header__navigation .menu-item-wrapper--dropdown:hover > .menu-item .dropdown-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.floating-navigation__desktop .nav-dropdown-menu {
  top: 40px;
}

.home-page-header__navigation .nav-dropdown-menu {
  top: 40px;
}

/**
 * Lightbox Styles
 */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.lightbox-open {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.lightbox-image-container {
  max-width: 90%;
  max-height: 80vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  opacity: 1 !important;
  visibility: visible !important;
}

.lightbox-caption {
  margin-top: 20px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  max-width: 90%;
  line-height: 1.5;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.lightbox-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
.lightbox-prev:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.lightbox-prev svg {
  width: 24px;
  height: 24px;
}

.lightbox-next {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
.lightbox-next:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 10px;
  }
  .lightbox-content {
    padding: 10px;
  }
  .lightbox-image-container {
    max-height: 70vh;
  }
  .lightbox-image {
    max-height: 70vh;
  }
  .lightbox-caption {
    font-size: 0.9rem;
    margin-top: 15px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev svg,
  .lightbox-next svg {
    width: 20px;
    height: 20px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}
.lightbox-image {
  transition: opacity 0.3s ease;
}
.lightbox-image[src=""] {
  opacity: 0;
}

.lightbox .lightbox-image.lazy-image {
  opacity: 1 !important;
  visibility: visible !important;
}

.table-of-contents {
  background: var(--toc-bg, #fff);
  border: 1px solid var(--toc-border, #e5e5e5);
  border-radius: 8px;
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.table-of-contents:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.toc-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.25rem;
  background: var(--toc-header-bg, #f8f9fa);
  border-bottom: 1px solid var(--toc-border, #e5e5e5);
}

.toc-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--toc-title-color, #333);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toc-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--toc-toggle-color, #666);
  transition: all 0.2s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.toc-toggle:hover {
  color: var(--toc-toggle-hover, #333);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.toc-toggle:focus {
  outline: 2px solid var(--toc-focus, #007bff);
  outline-offset: 2px;
}
.toc-toggle svg {
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.toc-toggle.toc-toggle-active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.toc-content {
  padding: 1rem 1.25rem;
  max-height: 500px;
  overflow-y: auto;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.toc-content.toc-collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.toc-content::-webkit-scrollbar {
  width: 6px;
}
.toc-content::-webkit-scrollbar-track {
  background: var(--toc-scrollbar-track, #f1f1f1);
}
.toc-content::-webkit-scrollbar-thumb {
  background: var(--toc-scrollbar-thumb, #ccc);
  border-radius: 3px;
}
.toc-content::-webkit-scrollbar-thumb:hover {
  background: var(--toc-scrollbar-thumb-hover, #999);
}

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

.toc-item {
  margin: 0.25rem 0;
}

.toc-nested {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0.25rem 0;
}

.toc-link {
  display: block;
  color: var(--toc-link-color, #555);
  text-decoration: none;
  border-bottom: 0px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}
.toc-link:hover {
  color: var(--ghost-accent-color, #333);
}
.toc-level-2 .toc-link {
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 0;
}

.toc-level-3 .toc-link {
  font-size: 0.9rem;
  padding-left: 1.5rem;
}

.toc-level-4 .toc-link {
  font-size: 0.85rem;
  padding-left: 3rem;
}

.toc-level-5 .toc-link {
  font-size: 0.8rem;
  padding-left: 4.5rem;
}

.toc-level-6 .toc-link {
  font-size: 0.8rem;
  padding-left: 6rem;
}

@media (max-width: 768px) {
  .table-of-contents {
    margin: 1.5rem -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .toc-header {
    padding: 0.875rem 1rem;
  }
  .toc-content {
    padding: 0.875rem 1rem;
    max-height: 400px;
  }
  .toc-link {
    padding: 0.4rem 0.6rem;
  }
  .toc-level-2 .toc-link {
    padding-left: 0;
  }
  .toc-level-3 .toc-link {
    padding-left: 1.25rem;
  }
  .toc-level-4 .toc-link {
    padding-left: 2.5rem;
  }
  .toc-level-5 .toc-link {
    padding-left: 3.75rem;
  }
  .toc-level-6 .toc-link {
    padding-left: 5rem;
  }
}
@media (prefers-color-scheme: dark) {
  .table-of-contents {
    background: var(--toc-bg-dark, #1a1a1a);
    border-color: var(--toc-border-dark, #333);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .toc-header {
    background: var(--toc-header-bg-dark, #2a2a2a);
    border-bottom-color: var(--toc-border-dark, #333);
  }
  .toc-title {
    color: var(--toc-title-color-dark, #e0e0e0);
  }
  .toc-toggle {
    color: var(--toc-toggle-color-dark, #999);
  }
  .toc-toggle:hover {
    color: var(--toc-toggle-hover-dark, #fff);
    background: rgba(255, 255, 255, 0.1);
  }
  .toc-link {
    color: var(--toc-link-color-dark, #b0b0b0);
  }
  .toc-link:hover {
    background: var(--toc-link-hover-bg-dark, #333);
    color: var(--toc-link-hover-color-dark, #fff);
  }
  .toc-link.toc-link-active {
    background: var(--toc-active-bg-dark, #1565c0);
    color: var(--toc-active-color-dark, #fff);
    border-left-color: var(--toc-active-border-dark, #42a5f5);
  }
  .toc-content::-webkit-scrollbar-track {
    background: var(--toc-scrollbar-track-dark, #2a2a2a);
  }
  .toc-content::-webkit-scrollbar-thumb {
    background: var(--toc-scrollbar-thumb-dark, #555);
  }
  .toc-content::-webkit-scrollbar-thumb:hover {
    background: var(--toc-scrollbar-thumb-hover-dark, #777);
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
}

a.post-sharing-icon.copy-link svg {
  fill: transparent;
}

button.gh-search.menu-item {
  background: transparent;
}

.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.justify-center {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.items-center {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-feed.featured-post .post-card__wrapper {
  padding: 20px;
  background: #fffafa;
}

.small-section-header {
  font-size: 12px;
  color: #868686;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Post content */
.gh-canvas {
  --gap: max(2vmin,20px);
  --main: min(var(--content-width,720px),100% - var(--gap) * 2);
  --wide: minmax(0,calc((var(--wide-width, 1200px) - var(--content-width, 720px))/2));
  --full: minmax(var(--gap),1fr);
  display: grid;
  grid-template-columns: [full-start] var(--full) [wide-start] var(--wide) [main-start] var(--main) [main-end] var(--wide) [wide-end] var(--full) [full-end];
  max-width: none;
  margin-bottom: 4rem;
  word-break: break-word;
  line-height: 1.6;
}

.gh-canvas > * {
  grid-column: main-start/main-end;
}

.kg-width-wide {
  grid-column: wide-start/wide-end;
}

.kg-width-full {
  grid-column: full-start/full-end;
}

.kg-width-full img {
  width: 100%;
}

.gh-content > * {
  grid-column: main-start/main-end;
}

.gh-content .kg-width-wide {
  grid-column: wide-start/wide-end;
}

.gh-content .kg-width-full {
  grid-column: full-start/full-end;
}

.gh-content .kg-width-regular {
  grid-column: main-start/main-end;
}

.gh-content[data-no-overflow] {
  max-width: 100%;
}

.gh-content[data-no-overflow] .kg-width-wide {
  grid-column: main-start/main-end;
}

.gh-content[data-no-overflow] .kg-width-full {
  grid-column: main-start/main-end;
}

.gh-content blockquote {
  margin: 2rem 0 1rem;
}

.gh-content .kg-card {
  margin: 0 auto 2rem auto !important;
  width: 100%;
}

.gh-content figure.kg-card {
  margin: 3rem 0 1rem;
}

.gh-content .kg-signup-card {
  margin: 3rem 0 0;
}

.gh-content .kg-width-full + .kg-width-full {
  margin-top: 0;
}

.gh-content a:not([class*=kg-], [class*=btn]) {
  text-decoration-thickness: clamp(2px, 0.125em, 5px);
}

.gh-content figure figcaption {
  text-align: center;
  margin: 0 auto;
  margin-top: 0.75rem;
  opacity: 0.85;
}

.gh-content figure figcaption p {
  margin: 0;
}

.gh-content iframe {
  max-width: 100%;
}

.gh-content table {
  display: inline-block;
  overflow-x: scroll;
}

.kg-card img {
  margin: 0;
}

.kg-image-card, .kg-gallery-image {
  position: relative;
}

.kg-image-card img {
  margin: 0 auto;
}

.kg-blockquote-alt {
  border-left: 0;
}

.kg-video-card video {
  margin: 0;
}

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

.gh-content .kg-button-card {
  margin-bottom: 1em;
}

.kg-content-wide .kg-signup-card-content {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.kg-signup-card picture {
  margin: 0;
}

.gh-content .kg-signup-card-input {
  height: 3rem;
}

.gh-content .kg-signup-card-button {
  height: 3rem;
}

.gh-content .kg-signup-card-disclaimer {
  margin: 0.5rem 0 0;
}

.kg-content-wide .kg-header-card-content {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.kg-header-card picture {
  margin: 0;
}

.gh-content .kg-header-card.kg-v2 .kg-header-card-button {
  height: 3rem;
}

.gh-content .kg-bookmark-icon {
  margin-right: 6px;
}

.gh-content > .kg-card:first-child {
  margin-top: 0;
}

.social-icons a {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}