@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;
}

/* ========================================
  COLORS & FONTS
======================================== */
:root {
  --accent-primary: #d4a853;
  --accent-darkprimary: #b8963f;
  --accent-secondary: #1e3a5e;
  --accent-darkblue: #16213e;
  --accent-navyblue: #1a1a2e;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-nearblack: #0a0a0f;
  --accent-darkergrey: #12121a;
  --accent-darkgrey: #1a1a24;
  --accent-border: #2a2a3a;
  --accent-grey: #9ca3af;
  --font-header: "helvetica-neue-lt-pro";
  --font-body: 'Inter';
  --font-awesome: "Font Awesome 7 Free";
  --font-awesome-brands: "Font Awesome 7 Brands";
  --transition: all .2s ease 0s;
}

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

html.scroll-disabled {
  overflow: hidden;
}

body {
  color: var(--site-text-color);
  background-color: var(--site-background-color);
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
}

h1, h2, h3, h4, h5, h6, .heading {
  font-weight: 700;
  line-height: 1.125em;
  margin: 0;
  padding-bottom: 25px;
}

h1,
.heading.one {
  font-size: 2em;
  font-weight: 800;
}
@media screen and (min-width: 500px) {
  h1,
  .heading.one {
    font-size: 3em;
  }
}
@media screen and (min-width: 768px) {
  h1,
  .heading.one {
    font-size: 3.5em;
  }
}

h2,
.heading.two {
  font-size: 1.5em;
}
@media screen and (min-width: 500px) {
  h2,
  .heading.two {
    font-size: 1.75em;
  }
}
@media screen and (min-width: 768px) {
  h2,
  .heading.two {
    font-size: 2em;
  }
}

h3,
.heading.three {
  font-size: 1.25em;
  line-height: 1.25em;
  padding-bottom: 10px;
}

h4,
.heading.four {
  font-size: 1.125em;
  padding-bottom: 10px;
}

:is(h1, h2, h3, h4, .heading, .subheader):last-child {
  padding-bottom: 0;
}

:is(h1, h2, h3, h4, .heading) strong {
  color: var(--accent-primary);
  font-weight: inherit;
}

:is(p, ul, ol) + :is(h2, h3, h4),
p:last-of-type + :is(ul, ol) {
  padding-top: 25px;
}

a {
  text-decoration: none;
}

a, a::before, a::after,
.transition, .transition *,
button, input, textarea, select {
  transition: var(--transition);
}

p {
  color: var(--site-secondary-text-color);
  padding-bottom: 1em;
}

p:last-of-type {
  padding-bottom: 0;
}

p > a:not(.btn) {
  color: var(--accent-primary);
  font-weight: bold;
}

p > a:not(.btn):is(:hover, :focus) {
  color: #ffffff;
}

.large-paragraph p {
  font-size: 1.25em;
}

strong {
  color: var(--site-text-color);
}

.subheader {
  color: var(--accent-primary);
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.25em;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.box-subheader {
  align-items: center;
  border: 1px solid;
  border-radius: 50px;
  display: inline-flex;
  font-size: 0.875em;
  gap: 5px;
  margin-bottom: 16px;
  line-height: 1.5em;
  padding: 8px 16px;
}

.box-subheader [class*=fa-] {
  color: var(--accent-primary);
  text-shadow: 1px 1px 0 #000000;
}

.hidden-label {
  position: relative;
}

.hidden,
.hidden-label label {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.center-aligned {
  text-align: center;
}

.mobile-centered {
  text-align: center;
}
@media screen and (min-width: 981px) {
  .mobile-centered {
    text-align: left;
  }
}

.case-study-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
}

.case-study-stats .stat {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .case-study-stats .stat {
    width: calc(25% - 37.5px);
  }
}

.case-study-stats .stat .heading.two {
  padding-bottom: 10px;
}

.stat-label {
  color: var(--site-secondary-text-color);
  font-size: 0.875em;
  line-height: 1.25em;
}

.see-all-link {
  color: var(--accent-primary);
  display: flex;
  font-size: 0.875rem;
  font-weight: bold;
  gap: 10px;
  line-height: 1.25em;
  width: max-content;
}

.see-all-link::after {
  content: "\f178";
  font-family: var(--font-awesome), sans-serif;
}

.see-all-link:is(:hover, :focus) {
  color: #ffffff;
}

::selection {
  background: var(--accent-primary); /* WebKit/Blink Browsers */
  color: var(--accent-darkgrey);
}

::-moz-selection {
  background: var(--accent-primary); /* WebKit/Blink Browsers */
  color: var(--accent-darkgrey);
}

/* ======================================== 
  SCROLLBARS
======================================== */
/* ---- Webkit Scrollbar ---- */
::-webkit-scrollbar {
  width: auto;
}

::-webkit-scrollbar-track {
  background-color: var(--accent-darkgrey);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-border);
  border: 2px solid var(--accent-darkgrey);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-grey);
}

::-webkit-scrollbar-corner {
  background-color: var(--accent-nearblack);
}

::-webkit-scrollbar-button:single-button {
  background-color: var(--accent-darkergrey);
  background-repeat: no-repeat;
  background-size: 10px;
  display: block;
}

/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='var(--accent-darkgrey)'><polygon points='50,00 0,50 100,50'/></svg>");
  background-position: center 7px;
  background-size: 7px auto;
}

/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='var(--accent-darkgrey)'><polygon points='0,0 100,0 50,50'/></svg>");
  background-position: center 6px;
  background-size: 7px auto;
}

/* Left */
::-webkit-scrollbar-button:single-button:horizontal:decrement {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='var(--accent-darkgrey)'><polygon points='0,50 50,100 50,0'/></svg>");
  background-position: 7px center;
  background-size: 7px auto;
}

/* Right */
::-webkit-scrollbar-button:single-button:horizontal:increment {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='var(--accent-darkgrey)'><polygon points='0,0 0,100 50,50'/></svg>");
  background-position: 6px center;
  background-size: 7px auto;
}

/* ---- Firefox Scrollbar ---- */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--accent-grey) var(--accent-border);
}

/* ======================================== 
  CONTAINERS
======================================== */
#main-content {
  padding-top: 87px;
  position: relative;
}
@media screen and (min-width: 981px) {
  #main-content {
    padding-top: 75px;
  }
}

.section-container {
  padding: 50px 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-container {
    padding: 75px 85px;
  }
}
@media screen and (min-width: 981px) {
  .section-container {
    padding: 75px 110px;
  }
}

.s-container,
.section-container > * {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  width: 100%;
}

.multi-col-section {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 5.5%;
}

.multi-col-section .section-column {
  width: 100%;
}

section:nth-of-type(2n+1) {
  background-color: var(--site-secondary-background);
}

/* ========================================
  CONTAINER MODIFIERS
======================================== */
.circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

.circle * {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.border-radius {
  border-radius: 12px;
  overflow: hidden;
}

.section-divider {
  background: var(--accent-border);
  height: 1px;
  margin: 50px auto;
  width: 100%;
}
@media screen and (min-width: 981px) {
  .section-divider {
    margin: 75px auto;
  }
}

.gradient-bg {
  background: linear-gradient(135deg, var(--accent-navyblue), var(--accent-darkblue));
}

/* ======================================== 
  BUTTONS
======================================== */
.btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 35px;
}

.btn-container:only-child,
:is(h1, h2, h3, h4) + .btn-container {
  margin-top: 0;
}

.center-aligned .btn-container {
  justify-content: center;
}

.mobile-centered .btn-container {
  justify-content: center;
}
@media screen and (min-width: 981px) {
  .mobile-centered .btn-container {
    justify-content: flex-start;
  }
}

.btn, input[type=submit], button,
#post-pagination li > * {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5em;
  padding: 14px 28px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .btn, input[type=submit], button,
  #post-pagination li > * {
    display: inline-block;
    width: auto;
  }
}

.primary.btn:not(:hover, :focus), input[type=submit] {
  background-color: var(--accent-primary);
  color: var(--accent-nearblack);
}

.grey.btn:not(:hover, :focus) {
  background-color: var(--accent-darkgrey);
  border-color: var(--accent-border);
  color: var(--accent-grey);
}

.outline.btn:not(:hover, :focus) {
  background-color: var(--site-background-color);
  border-color: var(--accent-border);
  color: #ffffff;
}

.btn:is(:hover, :focus),
input[type=submit]:is(:hover, :focus) {
  border-color: var(--accent-grey);
  background-color: var(--accent-darkgrey);
  color: #ffffff;
}

/* ======================================== 
  SOCIAL
======================================== */
.s-social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  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 {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

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

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

/* ========================================
  DEDICATED MEDIA QUERIES
======================================== */
@media screen and (min-width: 641px) {
  .multi-col-section.five-cols {
    justify-content: center;
  }
  .multi-col-section:where(.four-cols, .five-cols) .section-column {
    width: 47.25%;
  }
}
@media screen and (min-width: 981px) {
  .multi-col-section.two-cols .section-column {
    width: 47.25%;
  }
  .multi-col-section.three-cols .section-column {
    width: 29.6667%;
  }
  .multi-col-section.four-cols .section-column {
    width: 20.875%;
  }
  .multi-col-section.five-cols .section-column {
    width: 15.6%;
  }
}
/* ======================================== 
  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
======================================== */
#main-header {
  background-color: var(--site-background-color);
  border-bottom: 1px solid var(--accent-border);
  padding: 25px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000000;
}
@media screen and (min-width: 981px) {
  #main-header {
    padding: 16px 25px;
  }
}

#main-header > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  justify-content: space-between;
  position: static;
}

/* ======================================== 
  HEADER - LOGO
======================================== */
#main-header .logo--image {
  max-width: 250px;
  width: 50%;
}

/* ======================================== 
  HEADER - NAVIGATION & SEARCH
======================================== */
#primary-menu {
  align-items: center;
  background-color: var(--accent-border);
  bottom: 0;
  display: none;
  gap: 32px;
  left: 0;
  max-height: calc(100vh - 87px);
  overflow-y: scroll;
  padding: 25px;
  position: absolute;
  translate: 0 100%;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #primary-menu {
    background-color: transparent;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    overflow-y: visible;
    padding: 0;
    position: static;
    translate: none;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  #primary-menu {
    flex-grow: 0;
  }
}

#primary-menu .btn {
  font-size: 0.875em;
  padding: 10px 20px;
}

#primary-menu .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 32px;
  list-style-type: none;
  margin-bottom: 32px;
  padding: 0;
}
@media screen and (min-width: 981px) {
  #primary-menu .menu {
    flex-wrap: nowrap;
    margin: 0;
  }
}

#primary-menu .menu-item {
  line-height: 1em;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #primary-menu .menu-item {
    width: auto;
  }
}

#primary-menu .menu-item a {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (min-width: 981px) {
  #primary-menu .menu-item a {
    color: var(--site-secondary-text-color);
    font-size: 0.875em;
    font-weight: normal;
  }
}

#primary-menu .menu-item a:is(:hover, :focus) {
  color: #ffffff;
}

#primary-menu .menu-item a.nav-current {
  color: #ffffff;
  font-weight: bold;
}

#primary-menu .btn-container {
  align-items: center;
  gap: 16px;
  margin: 0;
}

#primary-menu .btn {
  display: block;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #primary-menu .btn {
    display: inline-block;
    width: auto;
  }
}

#primary-menu .btn.header-search-bar {
  align-items: center;
  display: flex;
  padding-left: 18px;
}

#primary-menu .btn.header-search-bar svg {
  margin-right: 10px;
  width: 15px;
}

#primary-menu .btn.header-search-bar svg * {
  fill: #ffffff;
}

/* ======================================== 
  NAV TOGGLE & CLOSE
======================================== */
#menu-toggle {
  color: #ffffff;
  display: inline-block;
  font-size: 1.5em;
}
@media screen and (min-width: 981px) {
  #menu-toggle {
    display: none;
  }
}

.close-btn {
  color: #ffffff;
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 25px;
}
@media screen and (min-width: 981px) {
  .close-btn {
    display: none;
  }
}

/* ========================================
  HOLIDAY BANNER
======================================== */
body > div[class*=elfsight-app] {
  position: fixed !important;
  top: 87px;
  width: 100%;
  z-index: 5;
}
@media screen and (min-width: 981px) {
  body > div[class*=elfsight-app] {
    top: 75px;
  }
}

/* ======================================== 
  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);
}

/* ======================================== 
  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
================================================== */
.post-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

h2 + .post-loop {
  margin-top: 25px;
}

.post-card {
  background-color: var(--accent-darkgrey);
  border: 1px solid var(--accent-border);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  width: 100%;
}

:where(.post-card, .post-meta) :where(h2, h3, h4) {
  color: #ffffff;
}

a.post-card:is(:hover, :focus) {
  border-color: var(--accent-primary);
  translate: 0 -5px;
}

.post-card p {
  font-size: 0.875em;
  line-height: 1.5;
}

.post-feat-img {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-darkergrey));
  position: relative;
}

.post-feat-img::before {
  background: url("/assets/img/favicon.svg") center no-repeat;
  background-size: 50% 80%;
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.post-feat-img:has(img)::before {
  background: none;
}

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

.post-feat-img img[src=""] {
  display: none;
}

.post-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
  position: relative;
}

.post-meta h3 {
  flex-grow: 1;
}

.post-meta .subheader {
  font-size: 0.75em;
  font-weight: normal;
  padding-bottom: 10px;
}

.post-meta .subheader span:not(:last-child)::after {
  content: "•";
  display: inline-block;
  padding: 0 3px 0 4px;
}

.post-date {
  color: var(--accent-grey);
  font-size: 0.875em;
  line-height: 1.25em;
  opacity: 0.5;
}

/* ==================================================
  POST PAGINATION
================================================== */
#post-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style-type: none;
  margin-top: 25px;
  padding: 0;
}

#post-pagination li > * {
  margin: 0;
  padding: 10px;
  width: 100%;
}

#post-pagination li > span {
  background-color: var(--accent-border);
  color: #ffffff;
  cursor: auto;
}

#post-pagination li > a {
  background-color: var(--accent-darkgrey);
  color: var(--accent-grey);
}

#post-pagination li > a:is(:hover, :focus) {
  background-color: var(--accent-grey);
  color: var(--accent-darkergrey);
}

/* ==================================================
  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;
}

/* ==================================================
  DEDICATED MEDIA QUERIES
================================================== */
@media screen and (min-width: 641px) {
  .post-loop.four-cols .post-card {
    width: calc(50% - 12.5px);
  }
}
@media screen and (min-width: 981px) {
  .post-loop.two-cols .post-card {
    width: calc(50% - 12.5px);
  }
  .post-loop.three-cols .post-card {
    width: calc(33.33% - 16.67px);
  }
  .post-loop.four-cols .post-card {
    width: calc(25% - 18.75px);
  }
}
/* ======================================== 
  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;
}

/************************************************************************************
 *
 *			Homepage Elements
 *
 ***********************************************************************************/
/* ------------------------------ Hero ------------------------------ */
#homepage-hero {
  background: linear-gradient(135deg, var(--accent-nearblack) 0%, var(--accent-navyblue) 40%, transparent 100%), url("/assets/img/homepage-hero-alt-v2.webp") bottom;
  background-size: cover;
}
@media screen and (min-width: 981px) {
  #homepage-hero {
    padding: 100px 110px;
  }
}

#homepage-hero::before {
  background-image: url("/assets/img/homepage-hero-bg.svg");
  background-size: 60px;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  margin-right: 5px;
  opacity: 0.02;
  position: absolute;
  top: 0;
  width: 100%;
}

#homepage-hero-inner {
  max-width: 960px;
}

#homepage-hero h1 {
  background: linear-gradient(135deg, var(--accent-primary), #ffffff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#homepage-hero h1::selection {
  background: var(--accent-primary);
  background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
}

#homepage-hero .section-divider {
  background-color: rgba(255, 255, 255, 0.1);
  margin: 50px 0;
}

#homepage-hero .case-study-stats .stat .heading.two {
  text-shadow: 2px 2px 6px var(--accent-nearblack);
}

/* ------------------------------ Newsletter ------------------------------ */
#newsletter {
  padding-bottom: 40px;
  padding-top: 40px;
}

#newsletter .multi-col-section {
  align-items: center;
  background-color: var(--accent-darkgrey);
  border: 1px solid var(--accent-border);
  padding: 25px;
  row-gap: 25px;
}
@media screen and (min-width: 768px) {
  #newsletter .multi-col-section {
    padding: 32px;
  }
}

#newsletter-info {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

#newsletter-info img {
  margin: 0 auto;
  width: 80px;
}
@media screen and (min-width: 450px) {
  #newsletter-info img {
    margin: 0;
  }
}

.newsletter-meta {
  flex-grow: 1;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .newsletter-meta {
    text-align: left;
    width: 50%;
  }
}

.newsletter-meta h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 25px;
}
@media screen and (min-width: 450px) {
  .newsletter-meta h2 {
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}

.newsletter-meta h2 span {
  background-color: var(--accent-blue);
  border-radius: 4px;
  font-size: 0.75rem;
  padding: 2px 8px;
  text-transform: uppercase;
}

.newsletter-meta p {
  font-size: 0.875em;
  line-height: 1.5em;
  padding-bottom: 8px;
}

.newsletter-meta .stat-label {
  font-size: 0.75em;
  opacity: 0.5;
}

.newsletter-signup-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.newsletter-signup-form input[type=email] {
  background-color: var(--accent-darkergrey);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: var(--accent-grey);
  flex-grow: 1;
  font-family: var(--font-body), sans-serif;
  font-size: 0.875em;
  padding: 12px 16px;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .newsletter-signup-form input[type=email] {
    width: 50%;
  }
}

.newsletter-signup-form div[data-lastpass-icon-root] {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  width: 1px;
}

.newsletter-signup-form button[type=submit] {
  width: 100%;
}
@media screen and (min-width: 450px) {
  .newsletter-signup-form button[type=submit] {
    width: auto;
  }
}

/* ------------------------------ Overview ------------------------------ */
#overview .multi-col-section.two-cols .section-column:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ------------------------------ Featured ------------------------------ */
#featured-posts-loop .post-card:first-child .post-feat-img::after {
  background-color: var(--accent-primary);
  border-radius: 4px;
  color: var(--accent-nearblack);
  content: "Essential";
  font-size: 0.75em;
  font-weight: bold;
  left: 12px;
  line-height: 1.75em;
  padding: 4px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
}

#signature-series .post-card::before {
  content: "";
  display: block;
  padding-bottom: 66%;
}

#signature-series .post-card img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

#signature-series .post-card h3 {
  backdrop-filter: blur(5px);
  background-color: rgba(10, 10, 15, 0.75);
  bottom: 0;
  left: 0;
  padding: 15px 25px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

/* ------------------------------ Latest Articles ------------------------------ */
#latest-articles h2 {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  justify-content: space-between;
}

/* ------------------------------ Podcast ------------------------------ */
#podcast-wrapper {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 25px;
}

#podcast-channels {
  border: 1px solid var(--accent-border);
  order: 1;
  padding: 25px;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #podcast-channels {
    max-width: 300px;
    order: 0;
    width: 33%;
  }
}

#podcast-channels h3 {
  padding-bottom: 10px;
}

#podcast-channels p {
  font-size: 0.875em;
  line-height: 1.5em;
  padding-bottom: 25px;
}

#podcast-channels ul:has(.fa-brands) {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style-type: none;
  padding: 0;
}

#podcast-channels ul li .fa-brands {
  background-color: var(--accent-border);
  border-radius: 50px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  font-family: inherit;
  font-size: 0.875em;
  font-weight: bold;
  gap: 10px;
  justify-content: center;
  padding: 12px;
  text-transform: uppercase;
  width: 100%;
}

#podcast-channels ul li .fa-brands::before {
  font-family: var(--font-awesome-brands), sans-serif;
}

#podcast-channels ul li .fa-brands:is(:hover, :focus) {
  background-color: #ffffff;
  color: var(--accent-nearblack);
}

#podcast-channels ul li .fa-youtube:not(:hover, :focus) {
  background-color: #ff0033;
}

#podcast-channels ul li .fa-spotify:not(:hover, :focus) {
  background-color: #1ed760;
}

#podcast-channels ul li .fa-apple:not(:hover, :focus) {
  background-color: #7224d8;
}

#podcast-channels ul li .fa-soundcloud:not(:hover, :focus) {
  background-color: #ff5a17;
}

#podcast-channel-img {
  margin: 0 auto 25px;
  max-width: 180px;
  width: 75%;
}

#podcast-episodes {
  flex-grow: 1;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #podcast-episodes {
    width: 50%;
  }
}

#podcast-episodes h3 {
  padding-bottom: 25px;
}

#podcast-post-loop {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}

.podcast {
  align-items: center;
  background-color: var(--accent-darkgrey);
  border: 1px solid var(--accent-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
@media screen and (min-width: 450px) {
  .podcast {
    flex-direction: row;
  }
}

.podcast:is(:hover, :focus) {
  background-color: var(--accent-border);
  border-color: var(--accent-primary);
}

.podcast h4 {
  padding-bottom: 5px;
}

.podcast-episode-number {
  aspect-ratio: 1/1;
  background-color: var(--accent-darkergrey);
  border-radius: 8px;
  color: var(--accent-primary);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  justify-content: center;
  text-align: center;
  width: 50px;
}

.podcast .post-meta {
  padding: 0;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .podcast .post-meta {
    text-align: left;
    width: 50%;
  }
}

.podcast-play {
  background-color: var(--accent-primary);
  transition: var(--transition);
  width: 40px;
}

.podcast-play span {
  border-color: transparent transparent transparent var(--accent-nearblack);
  border-style: solid;
  border-width: 7px 0 7px 13px;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: rotate(0deg) translate(-50%, -50%);
  transition: var(--transition);
  width: 0;
}

.podcast-play:is(:hover, :focus) {
  background-color: var(--accent-darkergrey);
}

.podcast-play:is(:hover, :focus) span {
  border-color: transparent transparent transparent var(--accent-grey);
}

/* ------------------------------ Browse by Topic ------------------------------ */
.category.post-card {
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .category.post-card {
    padding: 32px;
  }
}

.category.post-card p {
  padding-bottom: 12px;
}

.category.post-card .stat-label {
  font-size: 0.75em;
  opacity: 0.5;
}

.category-icon {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--accent-darkergrey);
  border-radius: 16px;
  color: var(--accent-primary);
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
  justify-content: center;
  margin: 0 auto 16px;
  width: 64px;
}

/* ------------------------------ Meet the Team ------------------------------ */
.hosts-feed {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.hosts-feed-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.hosts-feed-page {
  display: flex;
  flex: 0 0 100%;
  gap: 50px;
  justify-content: center;
  min-width: 100%;
  width: 100%;
}
@media screen and (min-width: 981px) {
  .hosts-feed-page {
    gap: 35px;
  }
}

.host {
  flex: 1 1 auto;
  max-width: 100%;
  width: auto;
}
@media screen and (min-width: 641px) {
  .host {
    max-width: calc(50% - 17.5px);
  }
}
@media screen and (min-width: 981px) {
  .host {
    max-width: calc(20% - 28px);
  }
}

.host h3 {
  color: #ffffff;
}

.host p {
  font-size: 0.75em;
  line-height: 1.75em;
  opacity: 0.5;
}

.host .stat-label {
  line-height: 1.5em;
  padding-bottom: 10px;
}

.host .stat-label strong {
  color: var(--accent-primary);
  display: block;
}

.host-portrait {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-darkergrey));
  border: 3px solid var(--accent-border);
  container-type: inline-size;
  margin: 0 auto 16px;
  max-width: 120px;
  transition: var(--transition);
}

a.host:is(:hover, :focus) .host-portrait {
  border-color: var(--accent-primary);
}

.host-portrait:has(img[src=""])::before {
  color: var(--accent-grey);
  content: "\f007";
  font-family: var(--font-awesome), sans-serif;
  font-size: 64cqw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
}

.host-portrait img[src=""] {
  display: none;
}

.article-number {
  color: var(--accent-primary);
  font-size: 0.75em;
}

.hosts-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hosts-dots button {
  background-color: var(--accent-border);
  border-radius: 50%;
  height: 10px;
  padding: 0;
  width: 10px;
}

.hosts-dots button.active {
  background-color: var(--accent-grey);
  border-radius: 20px;
  width: 25px;
}

/* ------------------------------ Members Only ------------------------------ */
#members-only::before {
  background-image: url("/assets/img/membership-bg.svg");
  background-size: 40px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.02;
  position: absolute;
  top: 0;
  width: 100%;
}

#members-only .box-subheader {
  background-color: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple);
}

#members-only :has(+ p) {
  padding-bottom: 15px;
}

#members-only p:last-of-type {
  padding-bottom: 50px;
}

#members-only .post-meta .subheader {
  color: var(--accent-purple);
  display: flex;
  flex-wrap: wrap;
}

#members-only .post-meta .subheader::before {
  color: var(--accent-primary);
  content: "\f023";
  display: inline-block;
  font-family: var(--font-awesome), sans-serif;
  font-weight: bold;
  margin-right: 8px;
}

/* ------------------------------ Resources ------------------------------ */
.post-card.resource {
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .post-card.resource {
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
  }
}

.post-card.resource h3 {
  padding-bottom: 5px;
}

.post-card.resource p:last-of-type {
  flex-grow: 1;
  padding-bottom: 10px;
}

.post-card.resource .category-icon {
  border-radius: 12px;
  margin: 0;
  width: 48px;
}

.post-card.resource .subheader {
  font-size: 0.75em;
  font-weight: normal;
}

.resource-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .resource-meta {
    height: 100%;
    width: 50%;
  }
}

/* ------------------------------ Testimonials ------------------------------ */
.post-card.testimonial {
  padding: 25px;
}

.post-card.testimonial p {
  font-size: 1em;
  font-style: italic;
}

.post-card.testimonial p:last-of-type {
  flex-grow: 1;
  padding-bottom: 20px;
}

.post-card.testimonial p:first-of-type::before {
  content: "“";
}

.post-card.testimonial p:last-of-type::after {
  content: "”";
}

.testimonial-rating {
  color: rgba(156, 163, 175, 0.25);
  display: flex;
  font-size: 0.5em;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-rating.one-stars .fa-star:first-child,
.testimonial-rating.two-stars .fa-star:is(:first-child, :nth-child(2)),
.testimonial-rating:where(.five-stars, .four-stars .fa-star:not(:last-child), .three-stars .fa-star:not(:nth-last-child(2), :last-child)) {
  color: var(--accent-primary);
}

.testimonial-author {
  align-items: center;
  display: flex;
  gap: 12px;
}

.testimonial-author .circle {
  background-color: var(--accent-darkergrey);
  width: 40px;
}

.testimonial-author .circle strong {
  color: var(--accent-nearblack);
  display: none;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: auto;
}

.testimonial-author .circle img[src=""] {
  display: none;
}

.testimonial-author .circle:has(img[src=""]) {
  background-color: var(--accent-primary);
}

.testimonial-author .circle:has(img[src=""]) strong {
  display: inline-block;
}

.author-meta {
  flex-grow: 1;
  width: 50%;
}

.author-meta .heading {
  padding-bottom: 5px;
}

.author-meta .stat-label {
  font-size: 0.75em;
  opacity: 0.75;
}

/* ------------------------------ Call to Action ------------------------------ */
#call-to-action p:last-of-type {
  padding-bottom: 32px;
}

#call-to-action .newsletter-signup-form {
  margin: 0 auto;
  max-width: 500px;
}

/************************************************************************************
 *
 *			Post Archives
 *
 ***********************************************************************************/
#blog-archive-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 50px;
}

body.paged #blog-archive-feat-posts {
  display: none;
}

#blog-archive-feat-posts .post-card::after {
  background: linear-gradient(135deg, rgba(18, 18, 26, 0.25), rgba(18, 18, 26, 0.75) 33%, rgba(18, 18, 26, 0.95) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#blog-archive-feat-posts .post-card:is(:hover, :focus)::after {
  backdrop-filter: blur(5px);
  background-color: rgba(18, 18, 26, 0.85);
}

#blog-archive-feat-posts .post-card img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

#blog-archive-feat-posts .post-meta {
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 75px;
  z-index: 5;
}

#blog-archive-feat-posts .post-meta h2 {
  flex-grow: 0;
}

#blog-archive-feat-posts .post-meta p {
  font-size: 0.875em;
  line-height: 1.5em;
}

#blog-archive-feat-posts .post-meta p:last-of-type {
  padding-bottom: 20px;
}

/* --- Archive Parent Wrappers --- */
#blog-archive-parent {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

#blog-archive-internal {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 25px;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #blog-archive-internal {
    width: calc(66.66% - 25px);
  }
}

#blog-archive-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #blog-archive-sidebar {
    max-width: 320px;
    width: calc(33.33% - 25px);
  }
}

/* --- Filters --- */
#blog-archive-filters {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

#blog-archive-filters h1 {
  padding: 0;
  text-transform: capitalize;
}

#filter-controls {
  align-items: center;
  display: none;
  gap: 15px;
}
@media screen and (min-width: 981px) {
  #filter-controls {
    display: flex;
  }
}

#filter-sort-order {
  position: relative;
}

#filter-sort-order::after {
  color: var(--accent-grey);
  content: "\f107";
  font-family: var(--font-awesome), sans-serif;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}

#filter-sort-order select {
  background-color: var(--accent-darkgrey);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: #ffffff;
  line-height: 1.5em;
  min-width: 150px;
  padding: 8px 30px 9px 10px;
  -webkit-appearance: none;
}

#filter-controls a {
  aspect-ratio: 1/1;
  background-color: var(--accent-darkgrey);
  border-radius: 50%;
  color: #ffffff;
  display: none;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 43px;
}
@media screen and (min-width: 981px) {
  #filter-controls a {
    display: flex;
  }
}

#filter-controls a.fa-solid:is(:hover, :focus) {
  background-color: var(--accent-grey);
  color: var(--accent-darkgrey);
}

/* --- List Layout --- */
#blog-archive-loop.list-layout .post-card {
  flex-direction: row;
  width: 100%;
}

#blog-archive-loop.list-layout .post-card .post-feat-img {
  width: 33.33%;
}

#blog-archive-loop.list-layout .post-card .post-meta {
  width: 66.66%;
}

/* --- Sidebar --- */
#blog-archive-sidebar .sidebar-widget {
  background-color: var(--accent-darkgrey);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  padding: 20px;
}

#blog-archive-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style-type: none;
  padding: 0;
}

#blog-archive-sidebar ul li {
  margin: 0;
}

#blog-archive-sidebar ul li a {
  color: var(--accent-grey);
}

#blog-archive-sidebar ul li a:is(:hover, :focus) {
  color: var(--accent-primary);
}

#blog-archive-sidebar #podcast-channels {
  max-width: none;
  width: 100%;
}

#blog-tag-filters ul li a {
  text-transform: capitalize;
}

#author-page {
  padding-bottom: 50px;
  padding-top: 50px;
}

#author-page .s-page-header-content {
  padding: 0;
}

#author-page .s-page-header-image img {
  border-color: var(--accent-border);
}

/************************************************************************************
 *
 *			Single Post Page
 *
 ***********************************************************************************/
#single-post-body {
  background-color: transparent;
  padding-bottom: 0;
  padding-top: 50px;
}

#single-post-body > div {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

#blog-post-author {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

#blog-post-author .post-author-portrait {
  line-height: 0;
  width: 50px;
}

#blog-post-author .post-author-portrait img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

#blog-post-author .post-meta {
  color: var(--accent-gray);
  font-size: 0.875em;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
}

#blog-post-author .post-meta strong {
  display: block;
  font-size: 1rem;
}

#blog-post-share {
  margin: 0 0 25px;
}

#blog-post-share .btn {
  align-items: center;
  display: flex;
  font-family: inherit;
  gap: 10px;
  padding: 14px 20px;
  width: auto;
}

#blog-post-share .btn::before {
  font-family: var(--font-awesome-brands), sans-serif;
}

#blog-post-share .btn:not(:hover, :focus) {
  color: #ffffff;
}

#blog-post-share .btn.fa-x-twitter:not(:hover, :focus) {
  background-color: #000000;
}

#blog-post-share .btn.fa-facebook:not(:hover, :focus) {
  background-color: #0866ff;
}

#blog-post-share .btn.fa-linkedin:not(:hover, :focus) {
  background-color: #0a66c2;
}

#single-post-content {
  flex-grow: 1;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #single-post-content {
    width: calc(66.66% - 25px);
  }
}

#single-post-content p:not(:last-child) {
  padding-bottom: 1em;
}

#single-post-content p > a:not(.btn) {
  color: var(--accent-primary);
  font-weight: bold;
}

#single-post-content p > a:not(.btn):is(:hover, :focus) {
  color: #ffffff;
}

#single-post-content .post-feat-img {
  background: none;
  line-height: 0;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 0;
}

#single-post-content .post-feat-img::before {
  content: none;
}

#single-post-content .post-feat-img img {
  position: static;
}

#single-post-content .subheader {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75em;
  font-weight: normal;
  gap: 10px;
  padding-bottom: 20px;
}

#single-post-content .subheader a {
  background-color: var(--accent-darkgrey);
  border-radius: 25px;
  color: var(--accent-grey);
  padding: 5px 10px;
}

#single-post-content .subheader a:is(:hover, :focus) {
  background-color: var(--accent-grey);
  color: var(--accent-darkergrey);
}

#single-post-content table {
  display: block;
  margin: 0;
  overflow-x: scroll;
}

#single-post-content table tbody {
  display: table;
  width: 100%;
}

#single-post-content table tr,
#single-post-content :where(th, td) {
  border: 1px solid #000000;
  padding: 10px;
}

#single-post-content table p:last-of-type {
  padding-bottom: 0;
}

#single-post-content table tr:nth-of-type(odd) td {
  background-color: var(--accent-offwhite);
}

#single-post-content table tr:first-of-type :is(th, td) {
  background: var(--accent-darkgrey) linear-gradient(var(--accent-secondary), var(--accent-darkgrey));
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

#single-post-content .call-to-action + :is(h2, h3) {
  padding-top: 25px;
}

#single-post-content ol {
  list-style-type: decimal;
  padding: 0 0 25px 1em;
}

#single-post-content ol::marker {
  font-weight: bold;
}

#single-post-content .gh-post-upgrade-cta {
  margin: 25px 0 0;
}

#single-post-content .gh-post-upgrade-cta .gh-post-upgrade-cta-content {
  background-color: var(--accent-border) !important;
}

.sidebar-widget > h3 {
  padding-bottom: 20px;
}

#related-articles-loop {
  gap: 40px;
}

#related-articles-loop .post-card {
  border: 0;
  border-radius: 0;
}

#related-articles-loop .post-card:is(:hover, :focus) {
  translate: 0;
}

#related-articles-loop .post-feat-img {
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

#related-articles-loop .post-meta {
  padding: 0;
}

/************************************************************************************
 *
 *			Footer Area
 *
 ***********************************************************************************/
#footer-area {
  padding-bottom: 25px;
}

#footer-area .multi-col-section {
  gap: 50px;
}

#footer-branding {
  width: 100%;
}
@media screen and (min-width: 981px) {
  #footer-branding {
    max-width: 400px;
    width: calc(33.33% - 25px);
  }
}

#footer-branding .logo {
  margin-bottom: 16px;
  max-width: 300px;
  width: 100%;
}

#footer-branding p {
  font-size: 0.875em;
  line-height: 1.5em;
}

#footer-branding p:last-of-type {
  padding-bottom: 25px;
}

#footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

#footer-socials a {
  aspect-ratio: 1/1;
  background-color: var(--accent-darkergrey);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: var(--accent-primary);
  display: flex;
  flex-direction: column;
  font-size: 1.25em;
  justify-content: center;
  width: 40px;
}

#footer-socials a:is(:hover, :focus) {
  border-color: transparent;
  color: #ffffff;
}

#footer-socials a:is(:hover, :focus).fa-facebook-f {
  background-color: #0866ff;
}

#footer-socials a:is(:hover, :focus).fa-x-twitter {
  background-color: #00acee;
}

#footer-socials a:is(:hover, :focus).fa-instagram {
  background-color: #e1306c;
}

#footer-socials a:is(:hover, :focus).fa-youtube {
  background-color: #ff0000;
}

#footer-socials a:is(:hover, :focus).fa-linkedin-in {
  background-color: #0077b5;
}

#footer-nav {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}
@media screen and (min-width: 981px) {
  #footer-nav {
    width: calc(66.66% - 25px);
  }
}

#footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: none;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 641px) {
  #footer-nav ul {
    width: calc(33.33% - 33.33px);
  }
}

#footer-nav ul li:first-child {
  margin-bottom: 8px;
}

#footer-nav ul li a {
  color: var(--accent-grey);
  font-size: 0.875em;
}

#footer-nav ul li a:is(:hover, :focus) {
  color: var(--accent-primary);
}

#footer-area .section-divider {
  margin: 50px auto 25px;
}

#footer-copyright {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875em;
  gap: 16px 25px;
  justify-content: space-between;
}

#footer-copyright * {
  color: var(--accent-grey);
  opacity: 0.5;
}

#footer-copyright a:is(:hover, :focus) {
  color: var(--accent-primary);
  opacity: 1;
}

/* ------------------------------ Numeratus Shield ------------------------------ */
.numeratus-shield {
  align-items: center;
  background: rgba(15, 114, 255, 0.08);
  border-radius: 50px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  line-height: 1.25em;
  padding: 8px 14px;
}

.numeratus-shield__icon img {
  display: block;
  width: 32px;
}

/************************************************************************************
 *
 *			Dedicated Media Queries
 *
 ***********************************************************************************/
@media screen and (min-width: 500px) {
  #single-post-content h1 {
    font-size: 2.5em;
  }
}
@media screen and (min-width: 641px) {
  #featured-posts-loop .post-card:not(:first-child) {
    width: calc(50% - 12.5px);
  }
}
@media screen and (min-width: 981px) {
  /* ------------------------------ Homepage ------------------------------ */
  #homepage-hero .case-study-stats .stat {
    width: calc(20% - 40px);
  }
  #featured-posts-loop {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #featured-posts-loop .post-feat-img::before {
    padding-bottom: 33%;
  }
  #featured-posts-loop .post-card:not(:first-child) {
    width: auto;
  }
  #featured-posts-loop .post-card:first-child {
    grid-row: span 2;
  }
  #featured-posts-loop .post-card:first-child .post-feat-img {
    flex-grow: 1;
  }
  #featured-posts-loop .post-card:first-child .post-meta {
    flex-grow: 0;
  }
  #call-to-action {
    padding: 100px 110px;
  }
}

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