:root {
  --color-white: #fff;
  --color-lighter-gray: rgba(0, 0, 0, 0.05);
  --color-light-gray: #e6e6e6;
  --color-mid-gray: #ccc;
  --color-dark-gray: #444;
  --color-darker-gray: #15171a;
  --color-black: #000;
  --color-primary-text: var(--color-darker-gray);
  --color-secondary-text: rgba(0, 0, 0, 0.55);
  --color-border: rgba(0, 0, 0, 0.08);
  --color-dark-border: rgba(0, 0, 0, 0.55);
  --font-sans:'Gotham Rounded', Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  --font-serif: "EB Garamond", Georgia, Times, serif;
  --font-serif-alt: Georgia, Times, serif;
  --font-mono: "JetBrains Mono", Menlo, Consolas, Monaco, "Liberation Mono",
    "Lucida Console", monospace;
  --container-width: 1320px;
  --container-gap: clamp(24px, 1.7032rem + 1.9355vw, 48px);
  --grid-gap: 42px;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/GothamRounded-Medium.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:is(.gh-navigation, .gh-footer).has-accent-color,
:root.has-light-text {
  --color-lighter-gray: hsla(0, 0%, 100%, 0.1);
  --color-darker-gray: #fff;
  --color-secondary-text: hsla(0, 0%, 100%, 0.64);
  --color-border: hsla(0, 0%, 100%, 0.15);
  --color-dark-border: hsla(0, 0%, 100%, 0.5);
}
*,
:after,
:before {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  font-size: 62.5%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
canvas,
img,
picture,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
}
iframe {
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}
body {
  background-color: var(--background-color);
  color: var(--color-primary-text);
  font-family: var(--gh-font-body, var(--font-sans));
  font-size: 1.6rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gh-font-heading, var(--font-sans));
}
a {
  color: var(--color-darker-gray);
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
.gh-button {
  align-items: center;
  background-color: var(--ghost-accent-color);
  border: 0;
  border-radius: 100px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 600;
  gap: 0.4em;
  justify-content: center;
  letter-spacing: -0.004em;
  line-height: 1;
  padding: 0.8em 1.4em;
}
.gh-button:hover {
  opacity: 0.95;
}
.gh-icon-button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: var(--color-darker-gray);
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  outline: none;
  padding: 0;
  width: 32px;
}
.gh-icon-button:hover :is(svg, span) {
  opacity: 0.8;
}
.gh-icon-button svg {
  height: 20px;
  width: 20px;
}
.gh-form {
  align-items: center;
  background-color: var(--color-lighter-gray);
  border-radius: 40px;
  display: flex;
  font-size: 1.7rem;
  font-weight: 450;
  height: 56px;
  letter-spacing: -0.008em;
  max-width: 560px;
  position: relative;
  transition: background-color 0.2s ease;
  width: 100%;
}
.gh-form.success {
  pointer-events: none;
}
.gh-form.error {
  box-shadow: 0 0 0 1px red;
}
.gh-form:hover {
  background-color: rgba(0, 0, 0, 0.065);
}
.gh-footer.has-accent-color .gh-form:hover,
.has-light-text .gh-form:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
}
.gh-form-input {
  background-color: transparent;
  border: 0;
  border-radius: 40px;
  font-size: inherit;
  height: 100%;
  inset: 0;
  letter-spacing: inherit;
  line-height: 1.1;
  outline: none;
  padding-inline: 26px;
  position: absolute;
  transition: 0.3s ease-in-out;
  width: 100%;
}
.gh-form-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.gh-form-input::placeholder,
button.gh-form-input {
  color: rgba(0, 0, 0, 0.3);
}
:is(.has-serif-title, .has-mono-title):not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-form-input,
body[class*=" gh-font-heading"]:not(.gh-font-heading-fira-sans):not(
    .gh-font-heading-inter
  ):not(.gh-font-heading-manrope):not(.gh-font-heading-noto-sans):not(
    .gh-font-heading-nunito
  ):not(.gh-font-heading-poppins):not(.gh-font-heading-roboto):not(
    .gh-font-heading-space-grotesk
  )
  .gh-form-input {
  padding-inline: 20px;
}
.gh-form.gh-form.success .gh-form-input {
  opacity: 0.5;
}
.gh-footer.has-accent-color .gh-form-input,
.has-light-text .gh-form-input {
  color: #fff;
}
.gh-footer.has-accent-color .gh-form-input::-moz-placeholder,
.has-light-text .gh-form-input::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.55);
}
.gh-footer.has-accent-color .gh-form-input::placeholder,
.has-light-text .gh-form-input::placeholder,
.has-light-text button.gh-form-input {
  color: hsla(0, 0%, 100%, 0.55);
}
.gh-header.is-classic.has-image .gh-form-input {
  color: #15171a;
}
.gh-header.is-classic.has-image .gh-form-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.gh-header.is-classic.has-image .gh-form-input::placeholder,
.gh-header.is-classic.has-image .gh-form > svg,
.gh-header.is-classic.has-image button.gh-form-input {
  color: rgba(0, 0, 0, 0.5);
}
button.gh-form-input {
  -webkit-padding-start: 56px;
  color: var(--color-secondary-text);
  cursor: pointer;
  padding-inline-start: 56px;
  text-align: left;
}
:is(.has-serif-title, .has-mono-title):not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  button.gh-form-input,
body[class*=" gh-font-heading"]:not(.gh-font-heading-fira-sans):not(
    .gh-font-heading-inter
  ):not(.gh-font-heading-manrope):not(.gh-font-heading-noto-sans):not(
    .gh-font-heading-nunito
  ):not(.gh-font-heading-poppins):not(.gh-font-heading-roboto):not(
    .gh-font-heading-space-grotesk
  )
  button.gh-form-input {
  -webkit-padding-start: 50px;
  padding-inline-start: 50px;
}
.gh-form .gh-button {
  font-size: inherit;
  height: 44px;
  padding-inline: 32px;
  position: absolute;
  right: 6px;
}
.gh-form > svg {
  color: var(--color-secondary-text);
  height: 20px;
  left: 22px;
  position: relative;
  width: 20px;
}
:is(.has-serif-title, .has-mono-title):not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-form
  > svg {
  left: 16px;
}
.gh-form .gh-button svg {
  display: none;
  margin-top: 1px;
  position: absolute;
}
.gh-form:is(.loading, .success) .gh-button span {
  visibility: hidden;
}
.gh-form.loading .gh-button svg:first-of-type,
.gh-form.success .gh-button svg:last-of-type {
  display: block;
}
.gh-form [data-members-error] {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
}
@media (max-width: 576px) {
  .gh-form {
    font-size: 1.6rem;
  }
  .gh-form .gh-button {
    padding-inline: 12px;
  }
  .gh-form .gh-button span span {
    display: none;
  }
  .gh-form .gh-button span svg {
    display: inline;
    height: 20px;
    margin-top: 2px;
    position: static;
    width: 20px;
  }
}
.gh-viewport {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
.gh-outer {
  padding: 0 max(4vmin, 20px);
}
.gh-outer .gh-outer {
  padding: 0;
}
.gh-inner {
  margin: 0 auto;
  max-width: var(--container-width);
  width: 100%;
}
.gh-main {
  flex-grow: 1;
}
.gh-canvas,
.kg-width-full.kg-content-wide {
  --main: min(var(--content-width, 720px), 100% - var(--container-gap) * 2);
  --wide: minmax(
    0,
    calc((var(--container-width, 1200px) - var(--content-width, 720px)) / 2)
  );
  --full: minmax(var(--container-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];
}
.gh-canvas > * {
  grid-column: main;
}
.kg-content-wide > div,
.kg-width-wide {
  grid-column: wide;
}
.kg-width-full {
  grid-column: full;
}
.gh-navigation {
  background-color: var(--background-color);
  color: var(--color-darker-gray);
  font-size: 1.5rem;
  font-weight: 550;
  height: 100px;
}
.gh-navigation :is(.gh-navigation-logo, a:not(.gh-button), .gh-icon-button) {
  color: inherit;
}
.gh-navigation-inner {
  align-items: center;
  -moz-column-gap: 24px;
  column-gap: 24px;
  display: grid;
  grid-auto-flow: row dense;
  height: 100%;
}
.gh-navigation-brand {
  line-height: 1;
}
.gh-navigation-logo {
  font-family: var(--gh-font-heading, var(--font-sans));
  font-size: calc(2.4rem * var(--factor, 1));
  font-weight: 725;
  letter-spacing: -0.015em;
  position: relative;
  white-space: nowrap;
}
.gh-navigation-logo img {
  max-height: 40px;
}
.gh-navigation-menu {
  align-items: center;
  display: flex;
  gap: 24px;
}
.gh-navigation .nav {
  align-items: center;
  display: inline-flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.gh-navigation .gh-more-toggle {
  font-size: inherit;
  margin: 0 -6px;
  position: relative;
  text-transform: inherit;
}
.gh-navigation .gh-more-toggle svg {
  height: 24px;
  width: 24px;
}
.gh-navigation-actions {
  align-items: center;
  background-color: var(--background-color);
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.gh-navigation.has-accent-color .gh-navigation-actions {
  background-color: var(--ghost-accent-color);
}
.gh-navigation-members {
  align-items: center;
  display: flex;
  gap: 20px;
  white-space: nowrap;
}
.gh-navigation-members .gh-button {
  font-size: inherit;
  font-weight: 600;
}
.gh-search {
  margin-left: -2px;
  margin-right: -2px;
}
@media (max-width: 767px) {
  .gh-navigation-logo {
    white-space: normal;
  }
  .gh-navigation-members {
    flex-direction: column-reverse;
    gap: 16px;
    width: 100%;
  }
  .gh-navigation-actions .gh-search {
    display: none;
  }
}
@media (min-width: 768px) {
  .gh-navigation-brand .gh-search {
    display: none;
  }
  .gh-navigation:not(.is-dropdown-loaded) .gh-navigation-menu .nav > li {
    opacity: 0;
  }
}
.gh-navigation.has-accent-color {
  background-color: var(--ghost-accent-color);
}
.gh-navigation.has-accent-color .gh-button {
  background-color: #fff;
  color: #15171a;
}
.gh-navigation.is-left-logo .gh-navigation-inner {
  grid-template-columns: auto 1fr auto;
}
@media (min-width: 768px) {
  .gh-navigation.is-left-logo .gh-navigation-logo:not(:has(img)) {
    top: -2px;
  }
}
@media (min-width: 992px) {
  .gh-navigation.is-left-logo .gh-navigation-menu {
    margin-left: 16px;
    margin-right: 100px;
  }
}
.gh-navigation.is-middle-logo .gh-navigation-inner {
  grid-template-columns: 1fr auto 1fr;
}
.gh-navigation.is-middle-logo .gh-navigation-brand {
  grid-column-start: 2;
}
.gh-navigation.is-middle-logo .gh-navigation-actions {
  gap: 28px;
}
@media (min-width: 992px) {
  .gh-navigation.is-middle-logo .gh-navigation-menu {
    margin-right: 64px;
  }
}
.gh-navigation.is-stacked {
  height: auto;
  position: relative;
}
.gh-navigation.is-stacked .gh-navigation-inner {
  grid-template-columns: 1fr auto 1fr;
}
.gh-navigation.is-stacked .gh-navigation-brand {
  align-items: center;
  display: flex;
  grid-column-start: 2;
  grid-row-start: 1;
  min-height: 80px;
}
@media (max-width: 767px) {
  .gh-navigation.is-stacked .gh-navigation-brand {
    min-height: unset;
  }
}
@media (min-width: 992px) {
  .gh-navigation.is-stacked .gh-navigation-inner {
    padding: 0;
  }
  .gh-navigation.is-stacked .gh-navigation-brand {
    align-items: center;
    display: flex;
    height: 80px;
  }
  .gh-navigation.is-stacked .gh-navigation-menu {
    grid-column: 1/4;
    grid-row-start: 2;
    height: 60px;
    justify-content: center;
    margin: 0 48px;
  }
  .gh-navigation.is-stacked .gh-navigation-menu:after,
  .gh-navigation.is-stacked .gh-navigation-menu:before {
    background-color: var(--color-border);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 80px;
    width: 100%;
  }
  .gh-navigation.is-stacked .gh-navigation-menu:after {
    top: 140px;
  }
  .gh-navigation.is-stacked .gh-navigation-actions {
    grid-column: 1/4;
    grid-row-start: 1;
    justify-content: space-between;
  }
  .gh-navigation.is-stacked .gh-navigation-actions .gh-search {
    display: flex;
    gap: 10px;
    width: auto;
  }
}
.gh-dropdown {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 7px 20px -5px rgba(0, 0, 0, 0.15);
  margin-top: 24px;
  opacity: 0;
  padding: 12px 0;
  position: absolute;
  right: -16px;
  text-align: left;
  top: 100%;
  transform: translate3d(0, 6px, 0);
  transition: opacity 0.3s, transform 0.2s;
  visibility: hidden;
  width: 200px;
  z-index: 90;
}
.gh-dropdown.is-left {
  left: -16px;
  right: auto;
}
.is-dropdown-mega .gh-dropdown {
  -moz-column-gap: 40px;
  column-gap: 40px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  padding: 20px 32px;
  width: auto;
}
.is-dropdown-open .gh-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.gh-dropdown li a {
  color: #15171a !important;
  display: block;
  line-height: 1.5;
  padding: 7px 20px;
  white-space: normal;
}
.is-dropdown-mega .gh-dropdown li a {
  padding: 8px 0;
}
.gh-burger {
  align-items: center;
  display: flex;
  display: none;
  justify-content: center;
  margin-left: 4px;
  margin-right: -7px;
  position: relative;
}
.gh-burger svg {
  height: 24px;
  width: 24px;
}
.gh-burger svg:last-child,
.is-open .gh-burger svg:first-child {
  display: none;
}
.is-open .gh-burger svg:last-child {
  display: block;
}
@media (max-width: 767px) {
  .gh-burger {
    display: flex;
  }
  #gh-navigation {
    height: 64px;
  }
  #gh-navigation .gh-navigation-inner {
    gap: 48px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }
  #gh-navigation .gh-navigation-brand {
    align-items: center;
    display: grid;
    grid-column-start: 1;
    grid-template-columns: 1fr auto auto;
    height: 64px;
  }
  #gh-navigation .gh-navigation-logo {
    font-size: 2.2rem;
  }
  #gh-navigation .gh-navigation-actions,
  #gh-navigation .gh-navigation-menu {
    justify-content: center;
    opacity: 0;
    position: fixed;
    visibility: hidden;
  }
  #gh-navigation .gh-navigation-menu {
    transform: translateY(0);
    transition: none;
  }
  #gh-navigation .nav {
    align-items: center;
    gap: 20px;
    line-height: 1.4;
  }
  #gh-navigation .nav a {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: none;
  }
  #gh-navigation .nav li {
    opacity: 0;
    transform: translateY(-4px);
  }
  #gh-navigation .gh-navigation-actions {
    text-align: center;
  }
  #gh-navigation :is(.gh-button, a[data-portal="signin"]) {
    opacity: 0;
    transform: translateY(8px);
  }
  #gh-navigation .gh-button {
    font-size: 1.75rem;
    text-transform: none;
    width: 100%;
  }
  #gh-navigation a[data-portal="signin"] {
    font-size: 1.75rem;
  }
  #gh-main {
    transition: opacity 0.4s;
  }
  .is-open#gh-navigation {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    inset: 0;
    overflow-y: scroll;
    position: fixed;
    z-index: 3999999;
  }
  .is-open#gh-navigation .gh-navigation-actions,
  .is-open#gh-navigation .gh-navigation-menu {
    opacity: 1;
    position: static;
    visibility: visible;
  }
  .is-open#gh-navigation .nav {
    display: flex;
    flex-direction: column;
  }
  .is-open#gh-navigation .nav li {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.2s, opacity 0.2s;
  }
  .is-open#gh-navigation .gh-navigation-actions {
    align-items: center;
    bottom: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    left: 0;
    padding: var(--container-gap) 0;
    position: sticky;
    right: 0;
  }
  .is-open#gh-navigation :is(.gh-button, a[data-portal="signin"]) {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.4s, opacity 0.4s;
    transition-delay: 0.2s;
  }
  .is-open#gh-navigation a[data-portal="signin"] {
    transition-delay: 0.4s;
  }
  .is-open#gh-main {
    opacity: 0;
  }
}
.gh-card {
  position: relative;
}
.gh-card-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gh-card-link:hover {
  opacity: 1;
}
.gh-card-image {
  aspect-ratio: 16/9;
  flex-shrink: 0;
  position: relative;
}
.gh-card-image img {
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.gh-card-wrapper {
  flex-grow: 1;
}
.gh-card-tag {
  display: none;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.gh-card-title {
  font-size: calc(1.9rem * var(--factor, 1));
  font-weight: 725;
  letter-spacing: -0.014em;
  line-height: 1.3;
}
.gh-card-link:hover .gh-card-title {
  opacity: 0.8;
}
.gh-card-excerpt {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.45rem;
  line-height: 1.4;
  margin-top: 8px;
  overflow-y: hidden;
}
.gh-card-meta {
  align-items: center;
  color: var(--color-secondary-text);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.004em;
  line-height: 1.4;
  padding-bottom: 1px;
}
.gh-card-meta svg {
  display: inline-block;
  height: 12px;
  margin-right: 2px;
  position: relative;
  top: 1px;
  width: 12px;
}
.gh-card-meta:not(:empty) {
  margin-top: 8px;
}
.gh-card-author + .gh-card-date:before {
  content: "—";
  margin-right: 4px;
}
.gh-header {
  margin-top: 40px;
  position: relative;
}
.gh-header-inner {
  overflow: hidden;
  position: relative;
}
.gh-header.is-magazine .gh-header-inner {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(16, 1fr);
}
.gh-header.is-magazine .gh-header-inner > div {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  grid-row: 1;
}
.gh-header.is-magazine .gh-header-left {
  grid-column: 1 / span 4;
}
.gh-header.is-magazine .gh-header-inner > .gh-card {
  grid-column: 5 / span 8;
  position: relative;
}
.gh-header.is-magazine .gh-header-right {
  grid-column: 13/-1;
}
.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-link {
  gap: 28px;
}
.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-image {
  aspect-ratio: 1.618033;
}
.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-tag {
  display: block;
  margin-bottom: 12px;
}
.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-title {
  font-size: clamp(2.8rem, 1.36vw + 2.25rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-excerpt {
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-top: clamp(12px, 0.45vw + 10.18px, 16px);
  max-width: 90%;
}
.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-meta:not(:empty) {
  margin-top: 14px;
}
.gh-header.is-magazine
  :is(.gh-header-left, .gh-header-right)
  .gh-card:last-child
  .gh-card-image {
  display: none;
}
.gh-header.is-magazine .gh-header-inner > div .gh-card-excerpt {
  display: none;
}
.gh-header.is-magazine .gh-header-inner > .gh-card:after,
.gh-header.is-magazine .gh-header-inner > .gh-card:before {
  background-color: var(--color-border);
  content: "";
  height: 100%;
  left: calc(var(--grid-gap) / -2);
  position: absolute;
  top: 0;
  width: 1px;
}
.gh-header.is-magazine .gh-header-inner > .gh-card:after {
  left: auto;
  right: calc(var(--grid-gap) / -2);
}
.gh-header.is-magazine .gh-header-inner > div .gh-card + .gh-card:before {
  background-color: var(--color-border);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(var(--grid-gap) / -2);
  width: 100%;
}
@media (max-width: 1199px) {
  .gh-header.is-magazine .gh-header-inner {
    grid-template-columns: repeat(12, 1fr);
  }
  .gh-header.is-magazine .gh-header-inner > .gh-card {
    grid-column: 1 / span 8;
  }
  .gh-header.is-magazine .gh-header-left {
    grid-column: 9/-1;
  }
  .gh-header.is-magazine .gh-header-inner > div.gh-header-right {
    flex-direction: row;
    grid-column: 1/-1;
    grid-row: 2;
  }
  .gh-header.is-magazine .gh-header-right .gh-card {
    flex: 1;
  }
  .gh-header.is-magazine .gh-header-right .gh-card:last-child .gh-card-image {
    display: block;
  }
  .gh-header.is-magazine .gh-header-right {
    position: relative;
  }
  .gh-header.is-magazine .gh-header-right:before {
    background-color: var(--color-border);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: calc(var(--grid-gap) / -2);
    width: 100%;
  }
  .gh-header.is-magazine .gh-header-right .gh-card:before {
    display: none;
  }
  .gh-header.is-magazine .gh-header-right .gh-card:after {
    background-color: var(--color-border);
    content: "";
    height: 100%;
    position: absolute;
    right: calc(var(--grid-gap) / -2);
    top: 0;
    width: 1px;
  }
}
@media (max-width: 991px) {
  .gh-header.is-magazine .gh-header-left .gh-card:nth-child(2) .gh-card-image {
    display: none;
  }
}
@media (max-width: 767px) {
  .gh-header.is-magazine .gh-header-inner {
    display: flex;
    flex-direction: column;
    gap: var(--grid-gap);
  }
  .gh-header.is-magazine .gh-header-inner > div.gh-header-right {
    flex-direction: column;
  }
  .gh-header.is-magazine .gh-card-image {
    display: block !important;
  }
  .gh-header.is-magazine .gh-card:before {
    background-color: var(--color-border);
    content: "";
    display: block !important;
    height: 1px;
    left: 0;
    position: absolute;
    top: calc(var(--grid-gap) / -2);
    width: 100%;
  }
}
.gh-header.is-highlight .gh-header-inner {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(16, 1fr);
}
.gh-header.is-highlight .gh-header-left {
  grid-column: span 8;
  position: relative;
}
.gh-header.is-highlight .gh-header-left .gh-card {
  grid-column: span 8;
  grid-row: span 3;
}
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-link {
  gap: 28px;
}
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-image {
  aspect-ratio: 3/2;
}
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-tag {
  display: block;
  margin-bottom: 12px;
}
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-title {
  font-size: clamp(2.8rem, 1.36vw + 2.25rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-excerpt {
  font-size: 1.8rem;
  margin-top: clamp(12px, 0.45vw + 10.18px, 16px);
}
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-meta:not(:empty) {
  margin-top: 12px;
}
.gh-header.is-highlight .gh-header-middle {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  grid-column: 9 / span 4;
  position: relative;
}
.gh-header.is-highlight .gh-header-middle .gh-card .gh-card-excerpt,
.gh-header.is-highlight .gh-header-middle .gh-card:last-child .gh-card-image {
  display: none;
}
.gh-header.is-highlight .gh-header-right {
  grid-column: 13/-1;
}
.gh-header.is-highlight .gh-featured {
  margin-top: 0;
  padding: 0;
}
.gh-header.is-highlight .gh-featured-feed {
  display: flex;
  flex-direction: column;
}
.gh-header.is-highlight .gh-featured-feed .gh-card-title {
  font-size: clamp(1.4rem, 0.23vw + 1.31rem, 1.6rem);
}
.gh-header.is-highlight .gh-header-left:after,
.gh-header.is-highlight .gh-header-middle:after {
  background-color: var(--color-border);
  content: "";
  height: 100%;
  position: absolute;
  right: calc(var(--grid-gap) / -2);
  top: 0;
  width: 1px;
}
.gh-header.is-highlight .gh-card:before {
  background-color: var(--color-border);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(var(--grid-gap) / -2);
  width: 100%;
}
.gh-header.is-highlight .gh-featured .gh-card:first-child:before {
  display: none;
}
@media (max-width: 1199px) {
  .gh-header.is-highlight .gh-header-inner {
    grid-template-columns: repeat(9, 1fr);
  }
  .gh-header.is-highlight .gh-header-left {
    grid-column: span 6;
  }
  .gh-header.is-highlight .gh-header-middle {
    grid-column: 7/-1;
  }
  .gh-header.is-highlight .gh-header-right {
    grid-column: 1/-1;
  }
  .gh-header.is-highlight .gh-featured-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .gh-header.is-highlight .gh-featured-feed .gh-card:before {
    width: calc(100% + var(--grid-gap));
  }
  .gh-header.is-highlight .gh-featured-feed .gh-card:after {
    background-color: var(--color-border);
    content: "";
    height: 100%;
    left: calc(var(--grid-gap) / -2);
    position: absolute;
    top: 0;
    width: 1px;
  }
}
@media (max-width: 991px) {
  .gh-header.is-highlight
    .gh-header-middle
    .gh-card:nth-child(2)
    .gh-card-image {
    display: none;
  }
}
@media (max-width: 767px) {
  .gh-header.is-highlight .gh-header-inner {
    display: flex;
    flex-direction: column;
  }
  .gh-header.is-highlight .gh-featured-feed {
    display: flex;
  }
  .gh-header.is-highlight .gh-card-image {
    display: block !important;
  }
  .gh-header.is-highlight .gh-header-middle .gh-card .gh-card-excerpt {
    display: -webkit-box;
  }
}
.gh-header.is-classic {
  display: flex;
  margin-top: 0;
  padding-block: 160px;
}
.gh-header.is-classic .gh-header-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: auto;
  max-width: 1020px;
  overflow: unset;
  text-align: center;
}
.gh-header.is-classic .gh-header-title {
  font-size: calc(clamp(3rem, 1.82vw + 2.27rem, 4.6rem) * var(--factor, 1));
  letter-spacing: -0.028em;
  line-height: 1.1;
}
.gh-header.is-classic.has-image {
  margin-top: 0;
}
.gh-header.is-classic.has-image:before {
  background-color: var(--color-black);
  content: "";
  inset: 0;
  opacity: 0.3;
  position: absolute;
  transition: opacity 1.5s ease;
}
.gh-header.is-classic.has-image .gh-header-inner {
  color: #fff;
}
.gh-header.is-classic.has-image .gh-header-image {
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.gh-header.is-classic.has-image .gh-form {
  background-color: #fff;
}
.gh-cta {
  display: none;
  margin-top: max(4vw, 40px);
}
.gh-header:is(.is-highlight, .is-magazine) + .gh-cta {
  display: block;
}
.gh-cta-inner {
  align-items: center;
  background-color: var(--color-lighter-gray);
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow: hidden;
  padding: clamp(48px, 3.64vw + 33.45px, 80px)
    clamp(40px, 2.73vw + 29.09px, 64px);
  position: relative;
  text-align: center;
}
.gh-cta-content {
  max-width: 640px;
}
.gh-cta-title {
  font-size: clamp(2.8rem, 1.36vw + 2.25rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.021em;
  line-height: 1.1;
}
.gh-cta-description {
  font-size: 1.8rem;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-top: 12px;
}
.gh-featured {
  margin-top: 100px;
}
.gh-navigation + .gh-featured {
  margin-top: 64px;
}
.gh-header.is-classic:not(.has-image) + .gh-featured {
  margin-top: 0;
}
.gh-featured-inner {
  overflow: hidden;
}
.gh-featured-title {
  border-bottom: 1px solid var(--color-border);
  font-size: 1.2rem;
  font-weight: 550;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  text-transform: uppercase;
}
.gh-featured-feed {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(4, 1fr);
}
.gh-featured-feed .gh-card {
  container-name: featured-card;
  container-type: inline-size;
}
.gh-featured-feed .gh-card-link {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
}
.gh-featured-feed .gh-card-image {
  aspect-ratio: 1;
  width: 72px;
}
@container featured-card (width < 240px) {
  .gh-featured-feed .gh-card-image {
    display: none;
  }
}
@container featured-card (240px <= width <= 270px) {
  .gh-featured-feed .gh-card-image {
    width: 64px;
  }
}
.gh-featured-feed .gh-card-wrapper {
  container-name: featured-card-wrapper;
  container-type: inline-size;
}
.gh-featured-feed .gh-card-title {
  font-size: 1.6rem;
  font-weight: 650;
  letter-spacing: -0.011em;
}
@container featured-card-wrapper (width < 170px) {
  .gh-featured-feed .gh-card-title {
    font-size: 1.6rem;
  }
}
.gh-featured-feed .gh-card-excerpt {
  display: none;
}
.gh-featured-feed .gh-card-meta:not(:empty) {
  margin-top: 8px;
}
.gh-featured-feed .gh-card:before {
  background-color: var(--color-border);
  content: "";
  height: 100%;
  left: calc(var(--grid-gap) / -2);
  position: absolute;
  top: 0;
  width: 1px;
}
@media (max-width: 1199px) {
  .gh-viewport > .gh-featured .gh-featured-feed {
    grid-template-columns: repeat(3, 1fr);
  }
  .gh-viewport > .gh-featured .gh-featured-feed .gh-card:nth-child(4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .gh-viewport > .gh-featured .gh-featured-feed {
    display: flex;
    flex-direction: column;
  }
}
.gh-container {
  flex-grow: 1;
  margin-top: 64px;
}
.gh-container-inner {
  -moz-column-gap: var(--grid-gap);
  column-gap: var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(16, 1fr);
}
:is(.gh-featured, .gh-cta) + .gh-container {
  margin-top: max(4vw, 40px);
}
.gh-header.is-classic:not(.has-image) + .gh-container {
  margin-top: 0;
}
.gh-navigation + .gh-container .gh-container-title,
:is(.paged, .tag-template, .author-template)
  .gh-container:not(.has-sidebar)
  .gh-container-title {
  display: none;
}
.gh-more {
  display: none;
  font-size: calc(1.9rem * var(--factor, 1));
  font-weight: 725;
  grid-column: 1/-1;
  letter-spacing: -0.014em;
  margin-top: 48px;
}
.gh-container.has-sidebar .gh-more {
  grid-column: span 12;
}
.home-template .gh-feed:has(> :nth-child(12):last-child) ~ .gh-more {
  display: block;
}
.gh-more a {
  align-items: center;
  display: flex;
  gap: 4px;
}
.gh-more svg {
  height: 18px;
  margin-top: -1px;
  width: 18px;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-more
  svg {
  margin-top: 0;
}
.gh-container.has-sidebar .gh-main {
  grid-column: 1 / span 12;
  position: relative;
}
.gh-container.has-sidebar .gh-sidebar {
  grid-column: 13/-1;
}
.gh-container.has-sidebar .gh-main:after {
  background-color: var(--color-border);
  content: "";
  height: 100%;
  position: absolute;
  right: calc(var(--grid-gap) / -2);
  top: 0;
  width: 1px;
}
.gh-container:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
  grid-column: 3 / span 12;
}
.gh-container.is-list.no-image:not(.has-sidebar)
  :is(.gh-container-title, .gh-main, .gh-more) {
  grid-column: 4 / span 10;
}
.gh-header:is(.is-highlight, .is-magazine)
  ~ .gh-container.is-grid:not(.has-sidebar)
  :is(.gh-container-title, .gh-main, .gh-more) {
  grid-column: 1/-1;
}
@media (max-width: 1199px) {
  .gh-container-inner {
    display: block;
    overflow: hidden;
  }
  .gh-container.has-sidebar .gh-sidebar {
    display: none;
  }
}
.gh-container-title {
  border-bottom: 1px solid var(--color-border);
  font-size: 1.2rem;
  font-weight: 550;
  grid-column: 1/-1;
  letter-spacing: 0.025em;
  margin-bottom: calc(var(--grid-gap) / 2);
  padding-bottom: 12px;
  text-transform: uppercase;
}
.gh-container:not(:has(.gh-card)) .gh-container-title {
  display: none;
}
.gh-container .gh-feed {
  gap: var(--grid-gap);
}
.gh-container .gh-card-meta:not(:empty) {
  margin-top: 12px;
}
.gh-container.is-list .gh-feed {
  container-name: list-feed;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
}
.gh-container.is-list .gh-card-link {
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
.gh-container.is-list .no-image .gh-card-link {
  padding-block: 20px;
}
.gh-container.is-list .gh-card-image {
  aspect-ratio: 1.618033;
  flex-shrink: 0;
  width: 220px;
}
@container list-feed (width < 600px) {
  .gh-container.is-list .gh-card-image {
    width: 160px;
  }
}
.gh-container.is-list .gh-card:not(.no-image) .gh-card-wrapper {
  max-width: 600px;
}
.gh-container.is-list .gh-card-title {
  --factor: 1.05;
}
.gh-container.is-list .no-image .gh-card-title {
  --factor: 1.2;
}
.gh-container.is-list .gh-card-excerpt {
  margin-top: 6px;
}
.gh-container.is-list .gh-card + .gh-card:before {
  background-color: var(--color-border);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(var(--grid-gap) / -2);
  width: 100%;
}
.home-template .gh-container.is-list .gh-card:first-child:before {
  display: none;
}
@media (max-width: 767px) {
  .gh-container.is-list .gh-card-link {
    align-items: flex-start;
    flex-direction: column;
  }
  .gh-container.is-list .gh-card-image {
    width: 100%;
  }
}
.gh-container.is-grid .gh-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  overflow: hidden;
  row-gap: calc(var(--grid-gap) * 1.5);
}
.gh-container.is-grid .gh-card:before {
  height: 1px;
  right: calc(var(--grid-gap) / -2);
  top: calc(var(--grid-gap) / -2);
}
.gh-container.is-grid .gh-card:after,
.gh-container.is-grid .gh-card:before {
  background-color: var(--color-border);
  content: "";
  left: calc(var(--grid-gap) / -2);
  position: absolute;
}
.gh-container.is-grid .gh-card:after {
  height: 100%;
  top: 0;
  width: 1px;
}
@media (max-width: 767px) {
  .gh-container.is-grid .gh-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gh-container.is-grid .gh-feed {
    display: flex;
    flex-direction: column;
  }
}
.gh-container.is-list.no-image .gh-card-image {
  display: none;
}
.gh-sidebar-inner {
  position: sticky;
  top: calc(var(--grid-gap) / 2);
}
.gh-sidebar-title {
  border-bottom: 1px solid var(--color-border);
  font-size: 1.2rem;
  font-weight: 550;
  grid-column: 1/-1;
  letter-spacing: 0.025em;
  margin-bottom: calc(var(--grid-gap) / 2);
  padding-bottom: 12px;
  text-transform: uppercase;
}
.gh-about {
  align-items: center;
  background-color: var(--color-lighter-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  padding: 48px 24px;
  text-align: center;
}
.gh-about-icon {
  border-radius: 50%;
  height: 60px;
  margin-bottom: 24px;
  width: 60px;
}
.gh-about-title {
  font-size: calc(2.4rem * var(--factor, 1));
  font-weight: 700;
  letter-spacing: -0.019em;
}
.gh-about-description {
  font-size: 1.45rem;
  line-height: 1.4;
  margin-top: 12px;
}
.gh-about .gh-button {
  margin-top: 32px;
}
.gh-recommendations {
  margin-top: 48px;
}
.gh-recommendations .recommendations {
  display: flex;
  flex-direction: column;
  gap: 26px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.gh-recommendations .recommendation:first-child {
  margin-top: 4px;
}
.gh-recommendations .recommendation a {
  display: grid;
  gap: 4px 12px;
  grid-template-columns: 24px auto;
}
.gh-recommendations .recommendation a:hover {
  opacity: 1;
}
.gh-recommendations .recommendation-favicon {
  border-radius: 4px;
  grid-row: span 2;
  width: 100%;
}
.gh-recommendations .recommendation-title {
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.009em;
  margin-top: -2px;
}
.gh-recommendations .recommendation a:hover .recommendation-title {
  opacity: 0.8;
}
.gh-recommendations .recommendation-url {
  color: var(--color-secondary-text);
  font-size: 1.4rem;
  line-height: 1.25;
  order: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gh-recommendations .recommendation-description {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--color-secondary-text);
  display: -webkit-box;
  display: none;
  font-size: 1.4rem;
  grid-column: 2;
  line-height: 1.4;
  overflow-y: hidden;
}
.gh-recommendations button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: var(--color-darker-gray);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 550;
  gap: 2px;
  letter-spacing: 0.025em;
  margin-top: 24px;
  padding: 0;
  text-transform: uppercase;
}
.gh-recommendations button svg {
  margin-top: -1px;
  width: 12px;
}
.gh-recommendations button:hover {
  opacity: 0.8;
}
.gh-article {
  --container-width: 1120px;
  word-break: break-word;
}
.gh-article-header {
  margin: clamp(40px, 3.64vw + 25.45px, 72px) 0 40px;
}
.gh-article-tag {
  color: var(--ghost-accent-color);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.gh-article-title {
  font-size: calc(clamp(3.4rem, 1.36vw + 2.85rem, 4.6rem) * var(--factor, 1));
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.gh-article-excerpt {
  font-size: clamp(1.7rem, 0.23vw + 1.61rem, 1.9rem);
  letter-spacing: -0.018em;
  line-height: 1.45;
  margin-top: clamp(12px, 0.45vw + 10.18px, 16px);
  max-width: 720px;
}
.gh-article-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-left: 6px;
  margin-top: 20px;
}
.gh-article-author-image {
  display: flex;
  margin-right: 8px;
}
.gh-article-author-image a {
  background-color: var(--color-light-gray);
  border: 3px solid var(--background-color);
  border-radius: 50%;
  height: 56px;
  margin: 0 -8px;
  overflow: hidden;
  position: relative;
  width: 56px;
}
.gh-article-author-image a:first-child {
  z-index: 10;
}
.gh-article-author-image a:nth-child(2) {
  z-index: 9;
}
.gh-article-author-image a:nth-child(3) {
  z-index: 8;
}
.gh-article-author-image :is(img, svg) {
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.gh-article-meta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gh-article-author-name {
  font-size: 1.6rem;
  font-weight: 650;
  letter-spacing: -0.013em;
}
.gh-article-meta-content {
  color: var(--color-secondary-text);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.006em;
  line-height: 1.2;
}
.gh-article-image {
  grid-column: wide;
  margin-top: 40px;
}
.gh-article-image img {
  width: 100%;
}
.page-template .gh-article-header {
  margin-block: 72px 32px;
}
.page-template .gh-content:only-child > :first-child:not(.kg-width-full) {
  margin-top: 64px;
}
.page-template .gh-content > :last-child:not(.kg-width-full) {
  margin-bottom: 6vw;
}
.page-template .gh-footer {
  margin-top: 0;
}
.gh-content {
  font-size: var(--content-font-size, 1.7rem);
  letter-spacing: -0.01em;
}
.gh-content > * + * {
  margin-bottom: 0;
  margin-top: calc(28px * var(--content-spacing-factor, 1));
}
.gh-content
  > .kg-width-full
  + .kg-width-full:not(.kg-width-full.kg-card-hascaption + .kg-width-full) {
  margin-top: 0;
}
.gh-content > [id]:not(:first-child) {
  margin-top: calc(56px * var(--content-spacing-factor, 1));
}
.post-template .gh-content.drop-cap > p:first-of-type:first-letter {
  float: left;
  font-size: 3.1em;
  font-weight: 700;
  line-height: 1;
  margin: 0 0.2em 0 -1px;
}
.has-serif-body.post-template:not([class*=" gh-font-body"]):not(
    [class^="gh-font-body"]
  )
  .gh-content.drop-cap
  > p:first-of-type:first-letter {
  font-size: 3.2em;
}
.gh-content > [id] + p {
  margin-top: calc(12px * var(--content-spacing-factor, 1));
}
.gh-content > :is(hr, blockquote, iframe) {
  margin-top: calc(48px * var(--content-spacing-factor, 1)) !important;
  position: relative;
}
.gh-content > :is(hr, blockquote, iframe) + * {
  margin-top: calc(48px * var(--content-spacing-factor, 1)) !important;
}
.gh-content h1 {
  font-size: calc(2.2em * var(--factor, 1));
  letter-spacing: -0.02em;
}
.gh-content h2 {
  font-size: calc(1.6em * var(--factor, 1));
  letter-spacing: -0.02em;
}
.gh-content h3 {
  font-size: calc(1.3em * var(--factor, 1));
  letter-spacing: -0.017em;
}
.gh-content a {
  color: var(--ghost-accent-color);
  text-decoration: underline;
}
.gh-content .kg-callout-card .kg-callout-text,
.gh-content .kg-toggle-card .kg-toggle-content > :is(ul, ol, p) {
  font-size: 0.95em;
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  .kg-callout-text,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  .kg-toggle-content
  > ol,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  .kg-toggle-content
  > p,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  .kg-toggle-content
  > ul,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  > blockquote,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  > dl,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  > ol,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  > p,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-content
  > ul {
  font-family: var(--font-serif-alt);
}
.gh-content :is(ul, ol) {
  padding-left: 28px;
}
.gh-content :is(li + li, li :is(ul, ol)) {
  margin-top: 8px;
}
.gh-content ol ol li {
  list-style-type: lower-alpha;
}
.gh-content ol ol ol li {
  list-style-type: lower-roman;
}
.gh-content hr {
  background-color: var(--color-border);
  border: 0;
  height: 1px;
  width: 100%;
}
.gh-content .gh-table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}
.gh-content .gh-table table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  vertical-align: top;
  white-space: nowrap;
  width: 100%;
}
.gh-content .gh-table table th {
  color: var(--color-darkgrey);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: left;
  text-transform: uppercase;
}
.gh-content .gh-table table :is(th, td),
.gh-content .gh-table table td {
  border-bottom: 1px solid var(--color-border);
  padding: 6px 12px;
}
.gh-content .gh-table table :is(th, td):first-child {
  padding-left: 0;
}
.gh-content .gh-table table :is(th, td):last-child {
  padding-right: 0;
}
.gh-content pre {
  border-radius: 6px;
  font-size: 1.5rem;
  line-height: 1.5em;
  overflow: auto;
  padding: 16px;
}
.gh-content :not(pre) > code,
.gh-content pre {
  background: var(--color-lighter-gray);
  font-family: var(--font-mono);
}
.gh-content :not(pre) > code {
  border-radius: 0.25em;
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1em;
  padding: 0.15em 0.4em;
  vertical-align: baseline;
}
.gh-content :not(.kg-card):not(table):not([id]) + :is(.kg-card, table) {
  margin-top: calc(48px * var(--content-spacing-factor, 1));
}
.gh-content :is(.kg-card, table) + :not(.kg-card):not(table):not([id]) {
  margin-top: calc(48px * var(--content-spacing-factor, 1));
}
.gh-content .kg-card.kg-width-full + :not(.kg-card):not([id]),
.gh-content :not(.kg-card):not([id]) + .kg-card.kg-width-full {
  margin-top: calc(68px * var(--content-spacing-factor, 1));
}
.kg-image {
  margin-left: auto;
  margin-right: auto;
}
.kg-embed-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.kg-gallery-image,
.kg-image[width][height] {
  cursor: pointer;
}
.kg-gallery-image a:hover,
.kg-image-card a:hover {
  opacity: 1 !important;
}
.kg-card.kg-toggle-card .kg-toggle-heading-text {
  font-size: 2rem;
  font-weight: 700;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .kg-toggle-card
  .kg-toggle-heading-text {
  font-family: var(--font-serif);
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  .kg-toggle-card
  .kg-toggle-heading-text {
  font-family: var(--font-mono);
}
.kg-callout-card.kg-card {
  border-radius: 0.25em;
}
.kg-callout-card-accent a {
  text-decoration: underline;
}
blockquote:not([class]) {
  border-left: 4px solid var(--ghost-accent-color);
  padding-left: 2rem;
}
blockquote.kg-blockquote-alt {
  color: var(--color-secondary-text);
  font-style: normal;
  font-weight: 400;
}
.kg-card.kg-button-card .kg-btn {
  font-size: 1em;
  height: unset;
  line-height: 1.2em;
  padding: 0.6em 1.2em;
  text-align: center;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .kg-card.kg-header-card
  h2.kg-header-card-header {
  font-family: var(--font-serif);
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  .kg-card.kg-header-card
  h2.kg-header-card-header {
  font-family: var(--font-mono);
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .kg-header-card
  h3.kg-header-card-subheader {
  font-family: var(--font-serif);
}
.kg-bookmark-card .kg-bookmark-container {
  border-radius: 0.25em !important;
}
.kg-bookmark-card .kg-bookmark-container:hover {
  opacity: 1;
}
.kg-bookmark-card a.kg-bookmark-container,
.kg-bookmark-card a.kg-bookmark-container:hover {
  background: var(--background-color) !important;
  color: var(--color-darker-gray) !important;
}
.kg-bookmark-card .kg-bookmark-content {
  padding: 1.15em;
}
.kg-bookmark-card .kg-bookmark-title {
  font-size: 0.9em;
}
.kg-bookmark-card .kg-bookmark-description {
  font-size: 0.8em;
  margin-top: 0.3em;
  max-height: none;
}
.kg-bookmark-card .kg-bookmark-metadata {
  font-size: 0.8em;
}
.kg-bookmark-card .kg-bookmark-thumbnail img {
  border-radius: 0 0.2em 0.2em 0;
}
.kg-product-card.kg-card .kg-product-card-image {
  margin-bottom: 12px;
}
.kg-product-card.kg-card a.kg-product-card-button {
  height: 2.8em;
  margin-top: 12px;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .kg-product-card.kg-card
  .kg-product-card-title {
  font-family: var(--font-serif);
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  .kg-product-card.kg-card
  .kg-product-card-title {
  font-family: var(--font-mono);
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .kg-product-card-description
  :is(p, ul, ol) {
  font-family: var(--font-serif-alt);
}
.kg-file-card.kg-card .kg-file-card-container {
  padding: 0.6em;
}
.kg-file-card.kg-card .kg-file-card-contents {
  margin: 4px 8px 6px;
}
.kg-file-card.kg-card .kg-file-card-metadata {
  font-size: 0.9em;
}
.kg-file-card.kg-card .kg-file-card-filesize:before {
  margin-left: 6px;
  margin-right: 6px;
}
figcaption {
  font-size: 1.4rem;
  margin-top: 12px;
  text-align: center;
}
.kg-card.kg-width-full figcaption {
  padding: 0 16px;
}
figcaption a {
  color: var(--ghost-accent-color);
  text-decoration: underline;
}
.gh-comments {
  margin-top: 48px;
}
.post-template .gh-container {
  margin-top: 120px;
}
.post-template .gh-container-inner {
  display: block;
}
.post-template .gh-container.is-grid .gh-feed {
  grid-template-columns: repeat(4, 1fr);
}
.post-template .gh-container .gh-container-title {
  display: block;
}
.gh-archive {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(16, 1fr);
  margin-block: 80px 24px;
}
.gh-archive.has-image {
  margin-top: 48px;
}
.gh-archive-inner {
  border-bottom: 1px solid var(--color-border);
  display: grid;
  gap: var(--grid-gap);
  grid-column: 1/-1;
  grid-template-columns: 1fr 1fr;
  padding-bottom: clamp(40px, 2.73vw + 29.09px, 64px);
}
.gh-archive.has-image .gh-archive-inner {
  align-items: center;
  grid-column: 1/-1;
}
.gh-archive:not(.has-sidebar):not(.has-image) .gh-archive-inner {
  grid-column: 3 / span 12;
}
.gh-archive .gh-article-image {
  grid-column: auto;
  margin-top: 0;
}
:is(.tag-template, .author-template) .gh-container {
  margin-top: 0;
}
.author-template .gh-archive-inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  justify-content: flex-end;
}
.author-template .gh-article-image {
  border-radius: 50%;
  height: 120px;
  margin-top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 120px;
}
.author-template .gh-article-title {
  font-size: 3.6rem;
}
.gh-author-meta {
  color: var(--color-secondary-text);
  display: flex;
  font-size: 1.5rem;
  font-weight: 550;
  gap: 10px;
  margin-top: 14px;
}
.gh-author-meta a {
  color: inherit;
}
.gh-author-social {
  align-items: center;
  display: flex;
  gap: 16px;
  padding-left: 3px;
}
.gh-author-social svg {
  height: 20px;
  width: 20px;
}
@media (max-width: 1199px) {
  .gh-archive {
    display: block;
  }
}
@media (max-width: 767px) {
  .gh-archive-inner {
    align-items: flex-start;
    display: flex;
  }
  .author-template .gh-archive-inner,
  .gh-archive-inner {
    flex-direction: column-reverse;
  }
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  ) {
  --factor: 1.15;
}
.has-mono-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  ) {
  --factor: 1.1;
}
.has-sans-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  :is(.is-title, .gh-content :is(h2, h3)) {
  font-family: var(--gh-font-heading, var(--font-sans));
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  :is(.is-title, .gh-content :is(h2, h3)) {
  font-family: var(--gh-font-heading, var(--font-serif));
  font-weight: 550;
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  :is(.is-title, .gh-content :is(h2, h3)) {
  font-family: var(--gh-font-heading, var(--font-mono));
}
.has-sans-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .is-body {
  font-family: var(--gh-font-body, var(--font-sans));
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .is-body {
  font-family: var(--gh-font-body, var(--font-serif-alt));
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-header.is-classic
  .gh-header-title {
  font-weight: 550;
  letter-spacing: -0.015em;
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  .gh-header.is-classic
  .gh-header-title {
  letter-spacing: -0.01em;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-form {
  border-radius: 0;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-card-title {
  font-size: calc(2rem * var(--factor, 1));
  letter-spacing: -0.006em;
  line-height: 1.15;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-featured-feed
  .gh-card-title {
  font-size: calc(1.6rem * var(--factor, 1));
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  .gh-featured-feed
  .gh-card-title {
  font-size: calc(1.5rem * var(--factor, 1));
  letter-spacing: 0;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-header.is-highlight
  .gh-featured-feed
  .gh-card-title {
  font-size: clamp(1.6rem, 0.23vw + 1.51rem, 1.8rem);
}
.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"])
  .gh-card-title {
  font-size: calc(1.8rem * var(--factor, 1));
  line-height: 1.2;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-about-title {
  letter-spacing: -0.009em;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-article-title,
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-footer-signup-header {
  letter-spacing: -0.019em;
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) {
  --content-font-size: 1.9rem;
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-card-excerpt {
  font-size: 1.65rem;
  letter-spacing: 0.0005em;
  line-height: 1.4;
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-header.is-highlight
  .gh-card:first-child
  .gh-card-excerpt,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-header.is-magazine
  .gh-header-inner
  > .gh-card
  .gh-card-excerpt {
  font-size: 1.8rem;
  letter-spacing: -0.001em;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-header.is-highlight
  .gh-header-left
  .gh-card-title,
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-header.is-magazine
  .gh-header-inner
  > .gh-card
  .gh-card-title {
  font-size: clamp(3.2rem, 1.82vw + 2.47rem, 4.9rem);
  font-weight: 550;
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-about-description {
  font-size: 1.6rem;
}
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-article-excerpt,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"])
  .gh-footer-signup-subhead {
  letter-spacing: 0;
}
:is(.has-serif-title, .has-mono-title):not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  :is(.gh-button, .gh-form, .gh-form-input),
body[class*=" gh-font-heading"]:not(.gh-font-heading-fira-sans):not(
    .gh-font-heading-inter
  ):not(.gh-font-heading-manrope):not(.gh-font-heading-noto-sans):not(
    .gh-font-heading-nunito
  ):not(.gh-font-heading-poppins):not(.gh-font-heading-roboto):not(
    .gh-font-heading-space-grotesk
  )
  :is(.gh-button, .gh-form, .gh-form-input) {
  border-radius: 0;
}
.has-serif-title:not([class*=" gh-font-heading"]):not(
    [class^="gh-font-heading"]
  )
  .gh-cta-title {
  font-size: 4.8rem;
}
.gh-footer {
  color: var(--color-darker-gray);
  font-size: 1.5rem;
  margin-top: 12vw;
}
.gh-footer a:not(.gh-button) {
  color: inherit;
}
.gh-footer.has-accent-color {
  background-color: var(--ghost-accent-color);
}
.gh-footer.has-accent-color .gh-footer-bar {
  border-top: 0;
}
.gh-footer.has-accent-color .gh-button {
  background-color: #fff;
  color: #15171a;
}
.gh-footer-bar {
  align-items: center;
  border-block: 1px solid var(--color-border);
  -moz-column-gap: 32px;
  column-gap: 32px;
  display: grid;
  font-weight: 550;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 100px;
  padding-block: 28px;
}
.gh-footer-logo {
  font-family: var(--gh-font-heading, var(--font-sans));
  font-size: calc(2.4rem * var(--factor, 1));
  font-weight: 725;
  letter-spacing: -0.015em;
  position: relative;
  white-space: nowrap;
}
.gh-footer-logo img {
  max-height: 40px;
}
.gh-footer-menu .nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.gh-footer-copyright {
  text-align: right;
  white-space: nowrap;
}
.gh-footer-copyright a {
  text-decoration: underline;
}
.gh-footer-signup {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 160px;
  text-align: center;
}
.gh-footer-signup-header {
  font-size: calc(clamp(2.8rem, 1.36vw + 2.25rem, 4rem) * var(--factor, 1));
  font-weight: 700;
  letter-spacing: -0.03em;
}
.gh-footer-signup-subhead {
  font-size: 1.8rem;
  font-weight: 450;
  letter-spacing: -0.014em;
  line-height: 1.4;
  margin-top: 12px;
  max-width: 640px;
  opacity: 0.75;
}
.gh-footer-signup .gh-form {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .gh-footer-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.pswp {
  -webkit-text-size-adjust: 100%;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  touch-action: none;
  width: 100%;
  z-index: 3999999;
}
.pswp img {
  max-width: none;
}
.pswp--animate_opacity {
  opacity: 0.001;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  will-change: opacity;
}
.pswp--open {
  display: block;
}
.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
  cursor: grab;
}
.pswp--dragging .pswp__img {
  cursor: grabbing;
}
.pswp__bg {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  will-change: opacity;
}
.pswp__bg,
.pswp__scroll-wrap {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.pswp__scroll-wrap {
  overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
  backface-visibility: hidden;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  touch-action: none;
}
.pswp__container,
.pswp__img {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pswp__zoom-wrap {
  position: absolute;
  transform-origin: left top;
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  width: 100%;
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}
.pswp__item {
  bottom: 0;
  overflow: hidden;
  right: 0;
}
.pswp__img,
.pswp__item {
  left: 0;
  position: absolute;
  top: 0;
}
.pswp__img {
  height: auto;
  width: auto;
}
.pswp__img--placeholder {
  backface-visibility: hidden;
}
.pswp__img--placeholder--blank {
  background: var(--color-black);
}
.pswp--ie .pswp__img {
  height: auto !important;
  left: 0;
  top: 0;
  width: 100% !important;
}
.pswp__error-msg {
  color: var(--color-secondary-text);
  font-size: 14px;
  left: 0;
  line-height: 16px;
  margin-top: -8px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.pswp__error-msg a {
  color: var(--color-secondary-text);
  text-decoration: underline;
}
.pswp__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  float: right;
  height: 44px;
  margin: 0;
  overflow: visible;
  padding: 0;
  position: relative;
  transition: opacity 0.2s;
  width: 44px;
}
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  opacity: 0.9;
  outline: none;
}
.pswp__button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../images/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  height: 44px;
  width: 44px;
}
@media (-webkit-min-device-pixel-ratio: 1.09375),
  (-webkit-min-device-pixel-ratio: 1.1),
  (min-resolution: 1.1dppx),
  (min-resolution: 105dpi) {
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../images/default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}
.pswp__button--share {
  background-position: -44px -44px;
}
.pswp__button--fs {
  display: none;
}
.pswp--supports-fs .pswp__button--fs {
  display: block;
}
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}
.pswp__button--zoom {
  background-position: -88px 0;
  display: none;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  height: 100px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 70px;
}
.pswp__button--arrow--left {
  left: 0;
}
.pswp__button--arrow--right {
  right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  height: 30px;
  position: absolute;
  top: 35px;
  width: 32px;
}
.pswp__button--arrow--left:before {
  background-position: -138px -44px;
  left: 6px;
}
.pswp__button--arrow--right:before {
  background-position: -94px -44px;
  right: 6px;
}
.pswp__counter {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  height: 44px;
  left: 0;
  line-height: 44px;
  padding: 0 15px;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pswp__caption {
  bottom: 0;
  left: 0;
  min-height: 44px;
  position: absolute;
  width: 100%;
}
.pswp__caption__center {
  color: var(--color-white);
  font-size: 11px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 420px;
  padding: 25px 15px 30px;
  text-align: center;
}
.pswp__caption__center .post-caption-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.pswp__caption__center
  .post-caption-meta-item
  + .post-caption-meta-item:before {
  content: "\02022";
  padding: 0 4px;
}
.pswp__caption--empty {
  display: none;
}
.pswp__caption--fake {
  visibility: hidden;
}
.pswp__preloader {
  direction: ltr;
  height: 44px;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease-out;
  width: 44px;
  will-change: opacity;
}
.pswp__preloader__icn {
  height: 20px;
  margin: 12px;
  width: 20px;
}
.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  background: url(../images/preloader.gif) 0 0 no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 0.5s linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1s cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  height: 14px;
  left: 15px;
  margin: 0;
  opacity: 0.75;
  position: absolute;
  top: 15px;
  width: 14px;
}
.pswp--css_animation .pswp__preloader__cut {
  height: 14px;
  overflow: hidden;
  position: relative;
  width: 7px;
}
.pswp--css_animation .pswp__preloader__donut {
  background: none;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: 50%;
  border-right: 2px solid var(--color-white);
  border-top: 2px solid var(--color-white);
  box-sizing: border-box;
  height: 14px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 14px;
}
@media screen and (max-width: 1024px) {
  .pswp__preloader {
    float: right;
    left: auto;
    margin: 0;
    position: relative;
    top: auto;
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  to {
    transform: rotate(0);
  }
}
.pswp__ui {
  -webkit-font-smoothing: auto;
  opacity: 1;
  visibility: visible;
  z-index: 1550;
}
.pswp__top-bar {
  height: 44px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right,
.pswp__caption,
.pswp__top-bar {
  backface-visibility: hidden;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  will-change: opacity;
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right,
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__top-bar {
  opacity: 0.001;
}
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}
.pswp__element--disabled {
  display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}
/*# sourceMappingURL=screen.css.map */
