@charset "UTF-8";
/* ======================================== 
  RESET
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

/* ======================================== 
  TYPOGRAPHY
======================================== */
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

html.scroll-disabled {
  overflow: hidden;
}

body {
  font-family: var(--gh-font-body, var(--body-font-family)), "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--site-text-color);
  background-color: var(--site-background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gh-font-heading, var(--heading-font-family)), "Helvetica", "Arial", sans-serif;
  font-weight: var(--heading-font-weight);
  line-height: 1.35;
}

/* ======================================== 
  CONTAINER
======================================== */
.s-container {
  max-width: 1360px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .s-container {
    padding: 0 24px;
  }
}
@media screen and (min-width: 640px) {
  .s-container {
    padding: 0 32px;
  }
}
@media screen and (min-width: 1024px) {
  .s-container {
    padding: 0 40px;
  }
}

/* ======================================== 
  LOGO
======================================== */
.s-logo--image img {
  max-height: 28px;
}
@media screen and (min-width: 1024px) {
  .s-logo--image img {
    max-height: 44px;
  }
}

.s-logo--text {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 700;
  font-size: 28px;
}

/* ======================================== 
  DIVIDER
======================================== */
.s-divider {
  height: 1px;
  width: 100%;
  background: #E8E8E8;
  margin: 48px 0;
}
@media screen and (min-width: 640px) {
  .s-divider {
    margin: 56px 0;
  }
}
@media screen and (min-width: 768px) {
  .s-divider {
    margin: 72px 0;
  }
}
@media screen and (min-width: 1024px) {
  .s-divider {
    margin: 80px 0;
  }
}
@media screen and (min-width: 1280px) {
  .s-divider {
    margin: 96px 0;
  }
}

/* ======================================== 
  BUTTONS
======================================== */
.btn {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.05;
  max-width: max-content;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--ghost-accent-color);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-black);
  border-bottom: 0;
  border: 1px solid;
}

.btn--black {
  color: var(--color-white);
  background-color: var(--color-black);
}

/* ======================================== 
  IMAGES
======================================== */
.s-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--image-aspect-ratio);
  border-radius: var(--image-radius);
}

.s-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.s-image-placeholder {
  background-color: var(--color-gray-200);
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/* ======================================== 
  SOCIAL
======================================== */
.s-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.s-social a {
  color: var(--site-text-color);
}

/* ======================================== 
  SCROLL RESIZING - DISABLE ANIMATION
======================================== */
.s-resizing * {
  animation: none !important;
  transition: none !important;
}

/* ======================================== 
  SCREEN READER TEXT
======================================== */
.sr-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ======================================== 
  ERROR
======================================== */
.s-error {
  margin: 0 1.5rem;
}

.s-error-content {
  margin: 5rem auto;
  max-width: 400px;
  margin: 5rem auto;
  color: var(--site-secondary-text-color);
  background-color: var(--site-secondary-background);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.s-error-content h1 {
  margin-bottom: 1rem;
}

/* ======================================== 
  TAGS
======================================== */
.s-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.s-tags .s-tag {
  line-height: 120%;
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--color-black);
  color: var(--color-white);
}

.s-tags .s-tag--white {
  background-color: var(--color-white);
  color: var(--color-black);
}

.s-tags .s-tag--brand {
  background-color: var(--ghost-accent-color);
  color: var(--color-white);
}

/* ======================================== 
  DATE
======================================== */
.s-date {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-black);
}

.s-date--white {
  color: var(--color-white);
}

*[class*=s-aspect-] {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

*[class*=s-aspect-] img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.s-aspect-1\/1 {
  padding-bottom: 100%;
}

.s-aspect-3\/2 {
  padding-bottom: 66.67%;
}

.s-aspect-4\/3 {
  padding-bottom: 75%;
}

.s-aspect-5\/4 {
  padding-bottom: 80%;
}

.s-aspect-16\/9 {
  padding-bottom: 56.25%;
}

.s-aspect-2\/3 {
  padding-bottom: 150%;
}

.s-aspect-3\/4 {
  padding-bottom: 133.33%;
}

.s-aspect-portrait {
  padding-bottom: 110%;
}

/* ======================================== 
  HEADER
======================================== */
.header a:not(.btn):not(.logo--text) {
  color: var(--site-secondary-text-color);
  text-decoration: none;
}

/* ======================================== 
  HEADER - LAYOUT
======================================== */
.header .s-container {
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .header .s-container {
    height: 112px;
    gap: 3rem;
  }
}

/* ======================================== 
  HEADER - LOGO
======================================== */
.header .logo {
  flex-shrink: 0;
  flex-grow: 0;
}

.header .logo--image img {
  height: calc(var(--logo-height) * 0.66);
  min-height: 20px;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .header .logo--image img {
    height: var(--logo-height);
  }
}

.header .logo--text {
  text-decoration: none;
  color: var(--site-text-color);
  font-weight: 700;
  font-size: 32px;
}

/* ======================================== 
  HEADER - SEARCH BAR
======================================== */
.header .header-search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
  margin-left: auto;
  color: var(--site-secondary-text-color);
}
@media screen and (min-width: 1024px) {
  .header .header-search-bar {
    margin-left: 0;
    width: 100%;
    background-color: var(--site-secondary-background);
    border-radius: 12px;
    padding: 1.25rem;
    order: unset;
  }
}

@media screen and (max-width: 1023px) {
  .header .header-search-bar span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}
/* ======================================== 
  Z INDEX
======================================== */
.header .logo,
.header .header-search-bar,
.header .s-nav-toggle,
.header .header-utils-account {
  position: relative;
  z-index: 9999;
}

/* ======================================== 
  HEADER - UTILS
======================================== */
.header .header-utils {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  min-width: max-content;
}

.header .header-utils .header-utils-account {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header .header-utils .header-utils-account {
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .header .header-utils .header-utils-account svg {
    display: none;
  }
}

.header .header-utils .header-utils-account-text {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header .header-utils .header-utils-account-text {
    display: flex;
  }
}

/* ======================================== 
  NAV TOGGLE
======================================== */
.s-nav-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--site-secondary-background);
  color: var(--site-secondary-text-color);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  height: 50px;
  width: 50px;
}

.s-nav-toggle .s-nav-toggle-close {
  opacity: 0;
  transform: scaleY(-1);
}

.s-nav-toggle .s-nav-toggle-open,
.s-nav-toggle .s-nav-toggle-close {
  position: absolute;
  transition: ease all 0.15s;
}

.s-nav.is-open .s-nav-toggle .s-nav-toggle-open {
  transform: scaleY(-1);
  opacity: 0;
}

.s-nav.is-open .s-nav-toggle .s-nav-toggle-close {
  transform: scaleY(1);
  opacity: 1;
}

.s-nav.is-open .s-nav-megamenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.s-nav.is-open .s-nav-megamenu ul {
  opacity: 1;
  transition: ease all 0.3s;
  transition-delay: 0.3s;
}

/* ======================================== 
  MEGAMENU
======================================== */
.s-nav-megamenu {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: ease all 0.3s;
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--menu-background-color);
  color: var(--site-secondary-text-color);
  padding: 70px 20px 0;
}
@media screen and (min-width: 480px) {
  .s-nav-megamenu {
    padding: 70px 24px 0;
  }
}
@media screen and (min-width: 640px) {
  .s-nav-megamenu {
    padding: 70px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .s-nav-megamenu {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    border-radius: 1rem;
    height: auto;
    padding: 140px 40px 48px 40px;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.075);
  }
}

.s-nav-megamenu-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px 0 32px;
}
@media screen and (min-width: 1024px) {
  .s-nav-megamenu-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.s-nav-megamenu::-webkit-scrollbar {
  display: none;
}

.s-nav-megamenu ul {
  opacity: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.s-nav-megamenu ul:only-child {
  flex-direction: row;
  column-gap: 2rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  align-self: flex-start;
}
@media screen and (min-width: 1024px) {
  .s-nav-megamenu ul:only-child {
    column-gap: 4rem;
  }
}

.s-nav-megamenu ul li a {
  text-decoration: none;
  color: var(--site-secondary-text-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.s-nav-megamenu ul li a svg {
  width: 18px;
  min-width: 18px;
  height: auto;
}

.s-nav-megamenu ul li span {
  color: var(--site-secondary-text-color);
  font-weight: 700;
  pointer-events: none;
}

/* ======================================== 
  DROPDOWN
======================================== */
.s-nav[data-nav=Dropdown] {
  position: relative;
}

.s-nav-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: ease all 0.3s;
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--menu-background-color);
  padding: 70px 20px 0;
}
@media screen and (min-width: 480px) {
  .s-nav-dropdown {
    padding: 70px 24px 0;
  }
}
@media screen and (min-width: 640px) {
  .s-nav-dropdown {
    padding: 70px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .s-nav-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: ease all 0.3s;
    position: absolute;
    z-index: 99999;
    top: calc(100% + 1rem);
    left: auto;
    right: 0;
    background-color: var(--menu-background-color);
    border-radius: 1rem;
    padding: 0;
    width: 200px;
    height: auto;
  }
}

.s-nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px 0 32px;
}
@media screen and (min-width: 1024px) {
  .s-nav-dropdown-inner {
    padding: 0;
  }
}

.s-nav-dropdown::-webkit-scrollbar {
  display: none;
}

.s-nav-dropdown ul {
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .s-nav-dropdown ul {
    padding: 1rem;
  }
}

.s-nav-dropdown li {
  margin: 0.5rem 0;
}

.s-nav.is-open .s-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ======================================== 
  ACCOUNT
======================================== */
.s-nav-account {
  display: block;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .s-nav-account {
    display: none;
  }
}

.s-nav.is-open .s-nav-account {
  opacity: 1;
  visibility: visible;
  transition: ease all 0.3s;
  transition-delay: 0.3s;
}

.s-nav-account .btn {
  min-width: 100%;
}

/* ======================================== 
  FOOTER
======================================== */
.footer {
  padding: 2rem 0;
}

/* ======================================== 
  FOOTER - MAIN
======================================== */
.footer-main {
  background-color: var(--site-secondary-background);
  border-radius: 24px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* ======================================== 
  FOOTER - BRAND
======================================== */
.footer-brand {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand-logo img {
  height: calc(var(--logo-height) * 0.66);
  min-height: 20px;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .footer-brand-logo img {
    height: var(--logo-height);
  }
}

.footer-brand-text {
  text-decoration: none;
  color: var(--site-secondary-text-color);
  font-weight: 700;
  font-size: 32px;
  margin: 0;
}

.footer-brand p {
  line-height: 155%;
}

/* ======================================== 
  FOOTER - NAV
======================================== */
.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.5rem;
  column-gap: 1.5rem;
}

.footer-nav ul li a {
  text-decoration: none;
  color: var(--site-secondary-text-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav ul li a svg {
  width: 18px;
  min-width: 18px;
  height: auto;
}

.footer-nav ul li span {
  font-weight: 700;
  pointer-events: none;
}

/* ======================================== 
  FOOTER - SUBSCRIBE
======================================== */
.s-footer-subscribe form {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .s-footer-subscribe form {
    max-width: 400px;
  }
}

.s-footer-subscribe form input[type=email] {
  font-size: 1rem;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .s-footer-subscribe form input[type=email] {
    font-size: 1.125rem;
  }
}

.s-footer-subscribe form button {
  background-color: var(--ghost-accent-color);
  border-radius: 0.5rem;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  padding: 14px 20px;
}

.s-footer-subscribe form ~ .s-footer-subscribe-messages {
  margin-top: 12px;
}

.s-footer-subscribe form ~ .s-footer-subscribe-messages p {
  font-size: 16px;
  font-style: italic;
}

.s-footer-subscribe form ~ .s-footer-subscribe-messages,
.s-footer-subscribe form ~ .s-footer-subscribe-messages .s-footer-subscribe-success,
.s-footer-subscribe form ~ .s-footer-subscribe-messages .s-footer-subscribe-error {
  display: none;
}

.s-footer-subscribe form.success ~ .s-footer-subscribe-messages,
.s-footer-subscribe form.error ~ .s-footer-subscribe-messages,
.s-footer-subscribe form.success ~ .s-footer-subscribe-messages .s-footer-subscribe-success,
.s-footer-subscribe form.error ~ .s-footer-subscribe-messages .s-footer-subscribe-error {
  display: block;
  line-height: 140%;
  font-weight: 600;
}

/* ======================================== 
  FOOTER - COPYRIGHT
======================================== */
.footer-copyright,
.footer-copyright a {
  color: var(--site-secondary-text-color);
}

/* ======================================== 
  FOOTER - NETWORK
======================================== */
/* --- Footer panel --- */
.footer .s-container > .footer-main {
  background: #2A1B3D;
  border-radius: 28px;
  padding: 2.25rem 2rem 2rem;
}

/* separatore sottile (se lo usi) */
.footer .footer-sep {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

/* blocco rete centrato */
.footer .network-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer .network-copy {
  color: #BFC6DA;
  line-height: 1.55;
  max-width: 900px;
  margin-inline: auto;
}
.footer .network-copy h4 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* CTA come bottone */
.footer .network-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #6C4CFF;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(108, 76, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.footer .network-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(108, 76, 255, 0.45);
}

.footer .network-cta-ico,
.footer .network-cta-arr {
  opacity: 0.95;
}

/* copyright centrato */
.footer .footer-copyright {
  text-align: center;
}
.footer .footer-copyright p {
  margin: 0;
  font-size: 0.98rem;
  color: #B7B2C6;
}

@media (max-width: 920px) {
  .footer .footer-main {
    padding: 1.75rem 1.25rem;
  }
}
/* ======================================== 
  INTRO
======================================== */
.s-intro {
  padding: 2.5rem 0;
}
@media screen and (min-width: 1024px) {
  .s-intro {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 1280px) {
  .s-intro {
    padding: 6rem 0;
  }
}

/* ======================================== 
  INTRO - CONTENT
======================================== */
.s-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.s-intro-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.s-intro h1 {
  font-size: 2.25rem;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 640px) {
  .s-intro h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .s-intro h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1024px) {
  .s-intro h1 {
    font-size: 4rem;
  }
}

.s-intro p {
  line-height: 1.6;
  font-size: 1.125rem;
  max-width: 720px;
}
@media screen and (min-width: 1024px) {
  .s-intro p {
    font-size: 1.25rem;
  }
}

/* ======================================== 
  INTRO - TAGS
======================================== */
.s-intro-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.s-intro-tags li a {
  display: inline-flex;
  background-color: transparent;
  border: 1px solid var(--site-text-color);
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--site-text-color);
  line-height: 120%;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

/* ======================================== 
  SLIDER
======================================== */
.s-hero-slider {
  padding-bottom: 2rem;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .s-hero-slider {
    margin-top: 1.5rem;
  }
}

.s-hero-slider .s-container {
  position: relative;
}

/* ======================================== 
  SLIDE
======================================== */
.s-hero-slide {
  position: relative;
}

/* ======================================== 
  SLIDE - IMAGE
======================================== */
.s-hero-slide-image a {
  display: block;
  padding-bottom: 120%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s-hero-slide-image a {
    padding-bottom: 66.67%;
  }
}
@media screen and (min-width: 1024px) {
  .s-hero-slide-image a {
    padding-bottom: 43.75%;
  }
}

.s-hero-slide-image a img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 1.5rem;
  border: 1rem solid var(--site-secondary-background);
}

/* ======================================== 
  SLIDE - CONTENT
======================================== */
.s-hero-slide-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
}
@media screen and (min-width: 1024px) {
  .s-hero-slide-content {
    bottom: 3rem;
    left: 3rem;
    width: 50%;
    backdrop-filter: blur(10px);
  }
}

.s-hero-slide-content .s-hero-slide-title {
  font-size: 1.25rem;
  line-height: 120%;
}
@media screen and (min-width: 640px) {
  .s-hero-slide-content .s-hero-slide-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .s-hero-slide-content .s-hero-slide-title {
    font-size: 2rem;
  }
}

.s-hero-slide-content .s-hero-slide-title a {
  color: var(--color-white);
  text-decoration: none;
}

.s-hero-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--color-white);
}

.s-hero-meta .s-date {
  font-size: 12px;
  font-weight: 600;
}

.s-hero-meta .s-hero-author {
  display: inline-flex;
  align-items: center;
}

.s-hero-meta .s-hero-author::after {
  content: "•";
  display: inline-flex;
  font-size: 9px;
  margin-left: 6px;
}

.s-hero-meta .s-hero-author a,
.s-hero-meta .s-hero-author span {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
}

/* ======================================== 
  PAGINATION
======================================== */
.s-hero-slider .s-hero-slider-pagination {
  top: auto;
  bottom: -2.5rem;
}

.s-hero-slider .s-hero-slider-pagination .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  transition: ease all 0.3s;
  background-color: var(--site-secondary-background);
  opacity: 1;
}

.s-hero-slider .s-hero-slider-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 9999px;
  background-color: var(--ghost-accent-color);
}

/* ==================================================
  POST FEED
================================================== */
.s-post-feed {
  margin: 56px 0;
}

/* ==================================================
  POST FEED - INTRO
================================================== */
.s-post-feed-intro h2 {
  font-size: 1.75rem;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .s-post-feed-intro h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }
}
@media screen and (min-width: 1280px) {
  .s-post-feed-intro h2 {
    font-size: 3rem;
  }
}

.s-post-feed-intro h2 span {
  font-weight: 400;
}

/* ==================================================
  POST FEED - AUTHORS/TAGS
================================================== */
.author-template .s-post-feed-intro,
.tag-template .s-post-feed-intro {
  margin-bottom: 32px;
}

.author-template .s-post-feed-intro h2,
.tag-template .s-post-feed-intro h2 {
  font-family: var(--body-font-family);
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 640px) {
  .author-template .s-post-feed-intro h2,
  .tag-template .s-post-feed-intro h2 {
    font-size: 24px;
  }
}

/* ==================================================
  POST FEED - GRID
================================================== */
.s-post-feed-grid {
  display: grid;
  column-gap: 32px;
  row-gap: 56px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .s-post-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .s-post-feed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ==================================================
  POST FEED - LOAD MORE
================================================== */
.post-feed-loader {
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-top: 3.5rem;
}

.post-feed--list + .post-feed-loader {
  border-top: 1px solid var(--color-gray-200);
}

.post-feed--grid + .post-feed-loader {
  padding-top: 5rem;
}

.post-feed #load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 2rem;
}

/* ======================================== 
  AUTHORS/TAGS FEED
======================================== */
.s-authors-feed,
.s-tags-feed {
  padding: 96px 0;
}

/* ======================================== 
  AUTHORS/TAGS FEED - CONTAINER
======================================== */
.s-authors-feed .s-container,
.s-tags-feed .s-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (min-width: 640px) {
  .s-authors-feed .s-container,
  .s-tags-feed .s-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .s-authors-feed .s-container,
  .s-tags-feed .s-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .s-authors-feed .s-container,
  .s-tags-feed .s-container {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* ======================================== 
  AUTHORS/TAGS FEED - CARD
======================================== */
.s-author-card,
.s-tags-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.s-author-card .s-author-card-image,
.s-tags-card .s-tags-card-image {
  display: block;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.s-author-card .s-author-card-image img,
.s-tags-card .s-tags-card-image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.s-author-card .s-author-card-content,
.s-tags-card .s-tags-card-content {
  text-align: center;
}

.s-author-card .s-author-card-content h2,
.s-tags-card .s-tags-card-content h2 {
  font-family: var(--body-font-family);
  font-weight: 600;
  font-size: 20px;
}

.s-tag-header {
  margin: 40px 0;
}

.s-tag-header-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 8rem 4rem;
}

.s-tag-header-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.s-tag-header-image::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.s-tag-header-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.s-tag-header-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
}

/* ======================================== 
  ARCHIVE HEADER - CONTENT
======================================== */
.s-page-header {
  padding: 24px 0 0;
  position: relative;
}

/* ======================================== 
  ARCHIVE HEADER - CONTENT
======================================== */
.s-page-header-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .s-page-header-content {
    flex-direction: row;
    align-items: center;
  }
}

/* ======================================== 
  ARCHIVE HEADER - CONTENT IMAGE
======================================== */
.s-page-header-image {
  min-width: 270px;
}

.s-page-header-image img {
  border-radius: 2rem;
  border: 0.75rem solid var(--site-secondary-background);
}

/* ======================================== 
  ARCHIVE HEADER - CONTENT TEXT
======================================== */
.s-page-header-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 732px;
}

.s-page-header-text .s-page-header-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.s-page-header--custom .s-page-header-text h1 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .s-page-header--custom .s-page-header-text h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

.s-page-header-text p {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .s-page-header-text p {
    font-size: 1.25rem;
  }
}

.s-page-header-text p + .s-social svg {
  height: 20px;
  width: auto;
}

.s-page-header-count {
  display: inline-flex;
  line-height: 1;
  padding: 6px 12px;
  background-color: var(--site-secondary-background);
  color: var(--site-secondary-text-color);
  border-radius: 4px;
  max-width: max-content;
}

/* ======================================== 
  POST HEADER
======================================== */
.post-header {
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .post-header {
    padding: 56px 0;
  }
}

/* ======================================== 
  POST HEADER - CONTAINER
======================================== */
.post-header .s-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .post-header .s-container {
    gap: 4rem;
  }
}

.post-header--no-image .s-container {
  width: 100%;
  max-width: 842px;
  padding-left: 24px;
  padding-right: 24px;
}

.post-header--no-image .s-container::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

/* ======================================== 
  POST HEADER - CONTENT
======================================== */
.post-header .post-header-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .post-header .post-header-content {
    align-items: center;
    text-align: center;
  }
}

.post-header .post-header-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .post-header .post-header-heading {
    align-items: center;
  }
}

/* ======================================== 
  POST HEADER - TAGS
======================================== */
.post-header .s-tags .s-tag {
  font-size: 0.875rem;
}

/* ======================================== 
  POST HEADER - TITLE
======================================== */
.post-header h1 {
  font-size: 2.25rem;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 640px) {
  .post-header h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .post-header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1024px) {
  .post-header h1 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .post-header--no-image h1 {
    font-size: 60px;
  }
}

/* ======================================== 
  POST HEADER - EXCERPT
======================================== */
.post-header .post-excerpt {
  line-height: 1.6;
  font-size: 1.125rem;
  max-width: 720px;
}
@media screen and (min-width: 1024px) {
  .post-header .post-excerpt {
    font-size: 1.25rem;
  }
}

/* ======================================== 
  POST HEADER - META
======================================== */
.post-header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--site-secondary-background);
  padding: 4px 16px;
  border-radius: 6px;
  max-width: max-content;
}

.post-header-meta,
.post-header-meta .post-header-author a {
  color: var(--site-secondary-text-color);
}

/* ======================================== 
  POST HEADER - DATE
======================================== */
.post-header-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}

/* ======================================== 
  POST HEADER - AUTHOR
======================================== */
.post-header-author {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.post-header-author::after {
  content: "•";
  display: inline-flex;
  font-size: 9px;
  margin-left: 8px;
}

.post-header-author a {
  display: inline-flex;
  align-items: center;
  color: var(--site-text-color);
  text-decoration: none;
}

/* ======================================== 
  POST HEADER - IMAGE
======================================== */
.post-header .post-image img {
  border-radius: 1.5rem;
}

.post-header .post-image figcaption {
  font-size: 14px;
  margin-top: 0.5rem;
}

.post-header .post-image figcaption a {
  color: var(--site-text-color);
}

.post-header .post-image-aspect {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding-bottom: 66.67%;
}

.post-header .post-image-aspect img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================================================
  POST ENTRY
================================================== */
.post-entry {
  padding: 0 20px;
  font-size: 1rem;
  margin-bottom: 96px;
}
@media screen and (min-width: 480px) {
  .post-entry {
    padding: 0 24px;
  }
}
@media screen and (min-width: 640px) {
  .post-entry {
    font-size: 1.125rem;
    padding: 0 32px;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry {
    padding: 0 40px;
  }
}
.post-entry > *:not(.kg-width-full) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.post-entry *:first-child {
  margin-top: 0 !important;
}
.post-entry h1, .post-entry h2, .post-entry h3, .post-entry h4, .post-entry h5 {
  line-height: 1.3;
  font-weight: var(--heading-font-weight) !important;
  margin-top: 3rem;
  margin-bottom: 0.625rem;
}
.post-entry h1 + *, .post-entry h2 + *, .post-entry h3 + *, .post-entry h4 + *, .post-entry h5 + * {
  margin-top: 0.625rem;
}
.post-entry ul {
  list-style: disc;
  padding-left: 1.125rem;
}
.post-entry ol {
  list-style: decimal;
  padding-left: 1.125rem;
}
.post-entry h1 {
  margin-top: 0;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .post-entry h1 {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry h1 {
    font-size: 3rem;
  }
}
.post-entry h2 {
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .post-entry h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry h2 {
    font-size: 2.5rem;
  }
}
.post-entry h3 {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .post-entry h3 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry h3 {
    font-size: 2rem;
  }
}
.post-entry h4 {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .post-entry h4 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry h4 {
    font-size: 1.5rem;
  }
}
.post-entry h5 {
  font-size: 1rem;
}
.post-entry small {
  font-size: 0.8rem;
}
.post-entry strong {
  font-weight: 700;
}
.post-entry em {
  font-style: italic;
}
.post-entry a {
  color: var(--ghost-accent-color);
}
.post-entry hr {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 3rem 0;
}
.post-entry blockquote {
  line-height: 1.35;
}
.post-entry blockquote:not(.kg-blockquote-alt) {
  font-size: 1.5rem;
  padding-left: 2rem;
  border-left: 5px solid var(--ghost-accent-color);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .post-entry blockquote:not(.kg-blockquote-alt) {
    font-size: 2rem;
  }
}
.post-entry blockquote.kg-blockquote-alt {
  display: flex;
  gap: 2.5rem;
  text-align: left;
}
.post-entry blockquote.kg-blockquote-alt::before {
  font-family: Georgia, "Times New Roman", Times, serif;
  content: "“";
  color: var(--ghost-accent-color);
  font-size: 4em;
  line-height: 1;
}
.post-entry > * {
  margin: 28px 0;
}
@media screen and (min-width: 1024px) {
  .post-entry > * {
    margin: 40px 0;
  }
}
@media screen and (min-width: 1280px) {
  .post-entry > * {
    margin: 48px 0;
  }
}
.post-entry figcaption {
  font-size: 14px;
  margin-top: 0.5rem;
}
.post-entry > .kg-width-wide {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.post-entry > .kg-width-wide img {
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 1024px) {
  .post-entry > .kg-width-wide {
    padding: 0 40px;
  }
}
.post-entry > .kg-width-full {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 480px) {
  .post-entry > .kg-width-full {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media screen and (min-width: 640px) {
  .post-entry > .kg-width-full {
    margin-left: -32px;
    margin-right: -32px;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry > .kg-width-full {
    margin-left: -40px;
    margin-right: -40px;
  }
}

/* ======================================== 
  CARDS - FULL & WIDE WIDTH
======================================== */
@media screen and (min-width: 1024px) {
  .content-layout .post-entry > .kg-width-wide {
    margin: 4rem calc(-50vw + 512px - 2rem) !important;
  }
  .content-layout .post-entry > .kg-width-full {
    margin: 4rem calc(-50vw + 50% - 2rem) !important;
  }
}
@media screen and (min-width: 1440px) {
  .content-layout .post-entry > .kg-width-wide {
    margin: 4rem -300px !important;
  }
}
.content-layout .post-entry > .kg-width-full {
  margin: 4rem -2rem;
}
@media screen and (min-width: 1024px) {
  .content-layout .post-entry > .kg-width-full {
    margin: 4rem calc(-50vw + 50% - 2rem) !important;
  }
}

.content-layout .post-entry > .kg-width-wide img,
.content-layout .post-entry > .kg-width-full img {
  width: 100%;
  height: auto;
}

/* ======================================== 
  CARDS
======================================== */
.post-entry .kg-video-container,
.post-entry .kg-signup-card:not(.kg-width-full),
.post-entry .kg-header-card:not(.kg-width-full),
.post-entry .kg-image-card:not(.kg-width-full) .kg-image,
.post-entry .kg-gallery-image img {
  border-radius: 24px;
  overflow: hidden;
}

.post-entry .kg-image-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-entry .kg-image-card.kg-width-full {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
}
@supports not (aspect-ratio: 4/3) {
  .post-entry .kg-image-card.kg-width-full::before {
    content: "";
    float: left;
    padding-top: 75%;
  }
  .post-entry .kg-image-card.kg-width-full::after {
    clear: left;
    content: "";
    display: block;
  }
}

.post-entry .kg-image-card.kg-width-full > .kg-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.post-entry .kg-button-card a.kg-btn,
.post-entry .kg-header-card a.kg-header-card-button,
.post-entry .kg-header-card.kg-size-small a.kg-header-card-button,
.post-entry .kg-header-card.kg-size-large a.kg-header-card-button {
  display: inline-flex;
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.05;
  max-width: max-content;
  height: auto;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--ghost-accent-color);
  font-family: inherit;
}

.post-entry .kg-header-card.kg-style-accent a.kg-header-card-button,
.post-entry .kg-header-card.kg-style-dark a.kg-header-card-button,
.post-entry .kg-header-card.kg-style-image a.kg-header-card-button {
  background: var(--color-white);
  color: #000;
}

.post-entry .kg-header-card h3.kg-header-card-subheader {
  font-family: var(--body-font-family);
  font-weight: 400;
  font-style: normal;
  margin: 1.25rem 0 0.75rem;
}

.post-entry .kg-toggle-card .kg-toggle-content p:first-of-type {
  margin-top: 1rem !important;
}

.post-entry .kg-toggle-card,
.post-entry .kg-toggle-card + .kg-toggle-card {
  margin: 0.625rem auto;
}

.post-entry .kg-toggle-card h4.kg-toggle-heading-text {
  font-family: var(--heading-body-family);
  font-weight: 700;
  font-style: normal;
}

.post-entry .kg-callout-card {
  font-weight: 500;
  border-radius: 1rem;
}

.post-entry .content-layout .kg-width-wide.kg-video-card video,
.post-entry .content-layout .kg-width-full.kg-video-card video {
  width: 100%;
  height: 100%;
}

.post-entry .kg-embed-card {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@supports not (aspect-ratio: 16/9) {
  .post-entry .kg-embed-card::before {
    content: "";
    float: left;
    padding-top: 56.25%;
  }
  .post-entry .kg-embed-card::after {
    clear: left;
    content: "";
    display: block;
  }
}

.post-entry .kg-embed-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
}

.post-entry #ghost-comments-root iframe {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5em;
}

/* ========================================
  ARTICLE SINGLE - HEADER & SIGNUP CARDS
======================================== */
.post-entry .kg-width-full .kg-header-card-text,
.post-entry .kg-width-full .kg-signup-card-text {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.post-entry .kg-header-card.kg-width-regular h2.kg-header-card-heading,
.post-entry .kg-signup-card.kg-width-regular h2.kg-signup-card-heading,
.post-entry .kg-header-card.kg-width-wide h2.kg-header-card-heading,
.post-entry .kg-signup-card.kg-width-wide h2.kg-signup-card-heading,
.post-entry .kg-header-card.kg-width-full h2.kg-header-card-heading,
.post-entry .kg-signup-card.kg-width-full h2.kg-signup-card-heading {
  font-weight: var(--heading-font-weight);
}

.post-entry .kg-header-card.kg-width-regular h2.kg-header-card-heading,
.post-entry .kg-signup-card.kg-width-regular h2.kg-signup-card-heading {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .post-entry .kg-header-card.kg-width-regular h2.kg-header-card-heading,
  .post-entry .kg-signup-card.kg-width-regular h2.kg-signup-card-heading {
    font-size: 48px;
  }
}

.post-entry .kg-header-card.kg-width-wide h2.kg-header-card-heading,
.post-entry .kg-signup-card.kg-width-wide h2.kg-signup-card-heading {
  font-weight: var(--heading-font-weight);
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .post-entry .kg-header-card.kg-width-wide h2.kg-header-card-heading,
  .post-entry .kg-signup-card.kg-width-wide h2.kg-signup-card-heading {
    font-size: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry .kg-header-card.kg-width-wide h2.kg-header-card-heading,
  .post-entry .kg-signup-card.kg-width-wide h2.kg-signup-card-heading {
    font-size: 60px;
  }
}

.post-entry .kg-header-card.kg-width-full h2.kg-header-card-heading,
.post-entry .kg-signup-card.kg-width-full h2.kg-signup-card-heading {
  font-weight: var(--heading-font-weight);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .post-entry .kg-header-card.kg-width-full h2.kg-header-card-heading,
  .post-entry .kg-signup-card.kg-width-full h2.kg-signup-card-heading {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry .kg-header-card.kg-width-full h2.kg-header-card-heading,
  .post-entry .kg-signup-card.kg-width-full h2.kg-signup-card-heading {
    font-size: 3rem;
  }
}

.post-entry .kg-header-card .kg-header-card-subheading,
.post-entry .kg-signup-card .kg-signup-card-subheading {
  font-size: 1.125rem !important;
}
@media screen and (min-width: 768px) {
  .post-entry .kg-header-card .kg-header-card-subheading,
  .post-entry .kg-signup-card .kg-signup-card-subheading {
    font-size: 1.25rem !important;
  }
}
@media screen and (min-width: 1024px) {
  .post-entry .kg-header-card .kg-header-card-subheading,
  .post-entry .kg-signup-card .kg-signup-card-subheading {
    font-size: 1.5rem !important;
  }
}

.kg-header-card.kg-v2 .kg-header-card-button {
  font-size: 1rem !important;
}

.post-entry .kg-header-card:not(.kg-layout-split) picture img,
.post-entry .kg-signup-card:not(.kg-layout-split) picture img {
  opacity: 0.6;
}

.post-entry .kg-header-card:not(.kg-layout-split) picture + .kg-header-card-content,
.post-entry .kg-signup-card:not(.kg-layout-split) picture + .kg-signup-card-content {
  background-color: var(--site-secondary-background);
}

/* ======================================== 
  POST ENTRY - COMMENT
======================================== */
.post-entry #ghost-comments-root {
  margin-top: 4rem;
}

/* ======================================== 
  POST ENTRY - COMMENT
======================================== */
.gh-post-upgrade-cta {
  margin-bottom: 4rem;
}

/* ======================================== 
  CARD
======================================== */
.s-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--site-secondary-background);
  border-radius: 1rem;
  padding: 1rem;
}

/* ======================================== 
  CARD - IMAGE
======================================== */
.s-card-image {
  position: relative;
}

.s-card-image a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--image-radius);
}
@media screen and (min-width: 1024px) {
  .s-card-image a:hover img {
    transform: scale(1.025);
  }
}

.s-card-image a img {
  transition: ease all 0.2s;
}

.s-card-image-placeholder {
  background-color: var(--color-gray-200);
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/* ======================================== 
  CARD - CONTENT
======================================== */
.s-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 4px 12px 12px 12px;
}

/* ======================================== 
  CARD - TITLE
======================================== */
.s-card-title {
  font-size: 1.5rem;
}
.s-card-title--md {
  font-size: 1.25rem;
}
.s-card-title--lg {
  font-size: 1.375rem;
}
.s-card-title--xl {
  font-size: 1.5rem;
}
.s-card-title--2xl {
  font-size: 1.75rem;
}
.s-card-title--3xl {
  font-size: 2rem;
}
.s-card-title--4xl {
  font-size: 2.25rem;
}

.s-card-title a {
  color: var(--site-secondary-text-color);
  text-decoration: none;
}

/* ======================================== 
  CARD - EXCERPT
======================================== */
.s-card-excerpt {
  display: none;
  font-size: 18px;
  line-height: 30px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ======================================== 
  CARD - DATE
======================================== */
.s-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.s-card-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-secondary-text-color);
}

.s-card-author {
  display: inline-flex;
  align-items: center;
}

.s-card-author::after {
  content: "•";
  display: inline-flex;
  font-size: 9px;
  margin-left: 6px;
}

.s-card-author a,
.s-card-author span {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--site-secondary-text-color);
}

/* ======================================== 
  CONTACT
======================================== */
.s-contact {
  padding: 56px 0;
}
@media screen and (min-width: 1024px) {
  .s-contact {
    padding: 96px 0;
  }
}

/* ======================================== 
  CONTACT - CONTENT
======================================== */
.s-contact-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media screen and (min-width: 1024px) {
  .s-contact-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ======================================== 
  CONTACT - FORM
======================================== */
.s-contact-input {
  margin: 0 0 1.5rem;
}

.s-contact-input input,
.s-contact-input textarea {
  padding: 0.5rem 1rem;
  border: 0;
  background-color: #F9F9F9;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
}

.s-contact-input textarea {
  border-radius: 1rem;
  min-height: 220px;
  max-width: 100%;
}

/* ======================================== 
  CONTACT - IMAGE
======================================== */
.s-contact-image {
  display: none;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .s-contact-image {
    display: block;
  }
}

.s-contact-image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

/*# sourceMappingURL=main.css.map */
