/* HEADER STYLES */
/* ========================================================= */

.main-header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#nav-header {
  display: flex;
  padding: 8px 16px 8px 40px;
  width: 100%;
  max-width: 1248px;
  justify-content: space-between;
  align-items: center;
  margin: auto 24px;
  border-radius: 80px;
  outline: 2px solid var(--white-10, rgba(255, 255, 255, 0.1));
  background:
    linear-gradient(
      267deg,
      rgba(128, 0, 255, 0.35) -2.04%,
      rgba(0, 0, 0, 0) 27.07%
    ),
    linear-gradient(
      90deg,
      rgba(27, 3, 56, 0.42) 1.18%,
      rgba(82, 1, 164, 0.42) 22.5%,
      rgba(102, 8, 195, 0.21) 38.44%,
      rgba(0, 0, 0, 0) 63.5%
    ),
    #090c1c;

  box-shadow:
    5px 8px 21px 0px rgba(0, 0, 0, 0.15),
    20px 32px 38px 0px rgba(0, 0, 0, 0.13),
    45px 72px 51px 0px rgba(0, 0, 0, 0.08),
    81px 128px 60px 0px rgba(0, 0, 0, 0.02),
    126px 200px 66px 0px rgba(0, 0, 0, 0);

  overflow: hidden;
}

.nav-logo {
  height: 24px;
  padding-right: 16px;
  /* border-right: 1px solid #583e99;*/
}

.main-header__logo {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-headout-link {
  font-family: "halyard-text-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  color: #edeaf2;
  display: flex;
  align-items: center;
  gap: 2px;
  padding-top: 4px;
}

.nav-headout-link__from {
  font-variation-settings: "wght" 300;
  color: #6c3ab8;
}

.nav-headout-link__text {
  border-bottom: 0.5px solid transparent;
  transition: border 450ms cubic-bezier(0, 0, 0.3, 1);
  color: var(--white);
  text-decoration: none;
  line-height: 100%;
}

.nav-headout-link:hover .nav-headout-link__text {
  border-bottom: 0.5px solid white;
  transition: border 550ms cubic-bezier(0, 0, 0.3, 1);
}

.nav-headout-link__text img {
  width: 0;
  padding-left: 0;
  opacity: 0;
  transition: all 450ms cubic-bezier(0, 0, 0.3, 1);
}

.nav-headout-link:hover .nav-headout-link__text img {
  opacity: 1;
  padding-left: 4px;
  width: 23px;
  transition: all 550ms cubic-bezier(0, 0, 0.3, 1);
}

#nav-header .mweb__navigation {
  display: none;
}

.nav__collapsed {
  display: flex;
  /* gap: min(368px, 30vw); */
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
}

#hamburger {
  display: none;
}

.nav {
  display: flex;
  align-items: flex-start;
  list-style-type: none;
}

.nav a {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: end;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  line-height: 100%;
  font-size: 20px;
}

#nav-header li svg {
  display: none;
}

.nav li.nav-current {
  border-radius: 50px;
  outline: 1px solid #40107e;
  background: #14002a;
  box-shadow: -3px -3px 10.3px 2px #2c095d inset;
}

.nav li.nav-current a {
  font-variation-settings: "wght" 500;
}

.nav li:hover a {
  color: var(--candy);
}
.nav li.nav-current:hover a {
  color: var(--white);
}

@media screen and (max-width: 600px) {
  .main-header {
    top: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  #nav-header {
    flex-direction: column;
    width: calc(100% - 32px);
    max-width: 100%;
    height: 64px;
    padding: 17px 20px 18px 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
    background:
      linear-gradient(
        276deg,
        rgba(128, 0, 255, 0.4) -6.9%,
        rgba(0, 0, 0, 0) 81.67%
      ),
      linear-gradient(
        98deg,
        rgba(31, 0, 63, 0.8) 10.82%,
        rgba(0, 0, 0, 0) 46.15%
      ),
      #090c1c;

    box-shadow:
      5px 8px 21px 0px rgba(0, 0, 0, 0.15),
      20px 32px 38px 0px rgba(0, 0, 0, 0.13),
      45px 72px 51px 0px rgba(0, 0, 0, 0.08),
      81px 128px 60px 0px rgba(0, 0, 0, 0.02),
      126px 200px 66px 0px rgba(0, 0, 0, 0);

    transition: all 700ms cubic-bezier(0.94, 0, 0.34, 1.1);
  }

  .nav-headout-link {
    display: none;
  }

  .nav-logo {
    padding-right: 0px;
    border-right: none;
    width: 160px;
  }

  #nav-header.selected {
    border-radius: 20px;
    height: 224px;
    background:
      linear-gradient(
        107deg,
        rgba(128, 0, 255, 0.4) -2.72%,
        rgba(0, 0, 0, 0) 30.78%
      ),
      linear-gradient(
        302deg,
        rgba(128, 0, 255, 0.3) -2.06%,
        rgba(0, 0, 0, 0) 74.12%
      ),
      #090c1c;

    transition: all 700ms cubic-bezier(0.94, 0, 0.34, 1.1);
  }

  #nav-header.selected .mweb__navigation {
    display: block;
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    animation: appear 700ms cubic-bezier(0.94, 0, 0.34, 1.1) forwards;
  }

  @keyframes appear {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .mweb__nav__items {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: var(--16, 16px);
  }

  .mweb__nav {
    text-decoration: none;
    display: flex;
    padding: 16px 16px 40px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 100px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 16px;
    height: 120px;
  }

  .mweb__nav__subtitle {
    font-size: 12px;
    color: var(--white);
    line-height: 120%;
  }

  .nav__collapsed {
    /* gap: 140px; */
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
  }

  #nav-header nav {
    display: none;
  }

  #hamburger {
    display: block;
    all: unset;
    position: relative;
  }

  #hamburger:hover {
    cursor: pointer;
  }

  #ham-top,
  #ham-middle,
  #ham-bottom {
    transition: all 0.35s linear;
    transform: rotate(0deg);
    width: 32px;
  }
  #nav-header.selected #ham-top {
    transform: rotate(40deg);
    transform-origin: 25% 50%;
  }
  #nav-header.selected #ham-bottom {
    transform: rotate(-40deg);
    transform-origin: 25% 50%;
  }
  #nav-header.selected #ham-middle {
    width: 0;
    opacity: 0;
  }

  .nav a {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    line-height: 100%;
    font-size: 20px;
  }

  .nav li.nav-current {
    border-radius: 50px;
    border: 1px solid #d3a8ff;
    background: #14002a;
    box-shadow:
      0px 0px 10.3px 2px #5217aa inset,
      -0.5px 0px 16.1px 0px rgba(78, 24, 126, 0.28);
  }

  .nav li.nav-current a {
    font-variation-settings: "wght" 500;
  }

  .mweb__navigation__headout {
    color: var(--white);
  }

  .mweb__navigation__headout img {
    height: 12px;
  }
}

/* FOOTER STYLES */
/* ========================================================== */

.site-footer {
  position: relative;
  bottom: 0;
  flex-shrink: 0;
  background-color: var(--bg-primary);
}

.footer__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 600px;
}

.footer__bg__sm {
  display: none;
}

.footer__content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.footer__attribution__wrapper {
  display: flex;
  padding: 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px 20px 0px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-dark);
  margin: auto auto 0px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-glow {
  position: absolute;
  bottom: 0px;
}

.footer__attribution {
  display: flex;
  align-items: flex-start;
  gap: min(540px, 45vw);
}

.footer__divider {
  display: none;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 384px;
}

.footer__logo__image {
  width: 280px;
}

.footer__description {
  color: #f8d7db;
  font-family: "halyard-text-variable", sans-serif;
  font-size: 12px;
  font-variation-settings: "wght" 300;
  line-height: 20px;
}

.footer__love {
  color: var(--white);
  font-family: "halyard-text-variable", sans-serif;
  font-variation-settings: "wght" 300;
  font-size: 20px;
  line-height: 100%;
}

.footer__redirect__mweb {
  display: none;
}

.footer__nav {
  margin-top: 6px;
}

.footer__nav ul {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.footer__nav a {
  text-transform: uppercase;
  font-family: "halyard-display-variable", sans-serif;
  font-variation-settings: "wght" 300;
  font-size: 30px;
  line-height: 26px;
  padding: 0px;
}

.footer__nav li {
  border-bottom: 1.286px solid var(--white-100, #fff);
  display: flex;
  padding: 0px 0px 5.143px;
}

.footer__nav li #cta_arrow_white {
  transform-origin: top right;
  margin-left: -30px;
  transform: scale(1);
  transition: all 300ms ease-in-out;
}

.footer__nav li #cta_arrow_candy {
  transform-origin: bottom left;
  transform: scale(0);
  transition: all 300ms ease-in-out;
}

.footer__nav li:hover a {
  color: var(--text-candy);
}

.footer__nav li:hover {
  border-bottom: 1px solid var(--text-candy);
  cursor: pointer;
}

.footer__nav li:hover #cta_arrow_white {
  transform: scale(0);
  transition: all 300ms ease-in-out;
}

.footer__nav li:hover #cta_arrow_candy {
  transform: scale(1);
  width: auto;
  transition: all 300ms ease-in-out;
}

.footer__nav li.nav-current {
  all: initial;
  pointer-events: none;
}

.footer__nav li.nav-current svg {
  display: none;
}

.footer__nav li.nav-current a {
  font-variation-settings: "wght" 300;
}

.nav__container {
  display: flex;
  margin: 57px auto 162px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.footer__redirect__dweb {
  position: relative;
  border-radius: 20px;
}

.footer__redirect__shine {
  position: absolute;
  fill: rgba(255, 255, 255, 0.73);
  top: -11px;
  mix-blend-mode: soft-light;
  left: -82px;
  transition: all 700ms ease-in-out;
  opacity: 0.4;
  will-change: opacity, transform;
}

.footer__redirect__dweb:hover .footer__redirect__shine {
  transform: translateX(520px);
  opacity: 1;
  transition: all 800ms ease-out;
  will-change: opacity, transform;
}

.headout-link {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 433px;
  padding: 16px 40px 16px 16px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    270deg,
    #150228 0%,
    #2c0257 71.36%,
    #2c0257 80.73%,
    #1a0332 100%
  );
  backdrop-filter: blur(26.149999618530273px);
  text-decoration: none;
  transition: box-shadow 500ms ease-in-out;
}

.headout-link:hover {
  cursor: pointer;
  box-shadow: 0px 8px 15px 0px rgba(128, 0, 255, 0.3);
  backdrop-filter: none;
  transition: box-shadow 800ms ease-in-out;
}

.HO__link__text {
  display: flex;
  flex-direction: column;
  color: var(--candy);
  font-size: 20px;
  line-height: 134.523%; /* 26.905px */
}

.HO__link__text__tagline {
  color: var(--white);
  font-size: 16px;
  font-variation-settings: "wght" 300;
  line-height: 134.523%;
}

.footer__tagline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  color: var(--white);
  max-width: 1200px;
  width: 100%;
  margin: 0px auto auto;
}

.footer__main__tag {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 63.191px;
  line-height: 120%; /* 75.829px */
  overflow: hidden;
}

.footer__tagline__subsection {
  font-size: 28px;
  line-height: 120%; /* 33.6px */
}
.shiny__tag {
  font-size: 63.191px;
  display: inline-block;
  position: relative;
  background: linear-gradient(
    92deg,
    #ff007a 2.38%,
    #ffb2d7 115.73%,
    #f316b0 181.34%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(
    -75deg,
    rgba(0, 0, 0, 0.8) 30%,
    #000 50%,
    rgba(0, 0, 0, 0.8) 70%
  );
  -webkit-mask-image: linear-gradient(
    -75deg,
    rgba(0, 0, 0, 0.8) 30%,
    #000 50%,
    rgba(0, 0, 0, 0.8) 70%
  );
  mask-size: 200%;
  -webkit-mask-size: 200%;
  animation: shine 2s linear infinite;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}

@media screen and (max-width: 767px) {
  .site-footer {
    height: auto;
  }

  .footer__bg__sm {
    position: absolute;
    bottom: 0;
  }

  .footer__bg {
    display: none;
  }

  .footer__content {
    padding: 0px 24px;
  }

  .footer__attribution__wrapper {
    border-radius: 20px 20px 0px 0px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    background: var(--bg-dark);
    padding: 40px 20px 20px;
    align-items: flex-start;
    gap: 10px;
    margin: 0px;
    position: relative;
  }

  .footer-bottom-glow {
    right: -180px;
  }

  .footer__attribution {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
  }

  .footer__divider {
    display: block;
    width: 100%;
    height: 2px;
    opacity: 0.1;
    background: var(--white);
  }

  .footer__logo__image {
    width: 167px;
  }

  .footer__love {
    font-size: 16px;
    line-height: 20px; /* 125% */
  }

  .footer__redirect__dweb {
    display: none;
  }

  .footer__redirect__mweb {
    display: flex;
    margin: 75.5px 0px 24px;
  }

  .footer__nav {
    margin: 0px 16px;
  }

  .footer__nav ul {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer__nav a {
    font-variation-settings: "wght" 200;
    font-size: 24px;
    line-height: 24px;
  }

  .footer__nav li {
    padding: 0px 0px 3.71px;
  }

  .footer__nav li.nav-current a {
    font-variation-settings: "wght" 200;
  }

  .footer__nav li #cta_arrow_white {
    width: 29px;
    height: auto;
  }

  .footer__nav li #cta_arrow_candy {
    width: 29px;
    height: auto;
  }

  .nav__container {
    margin: 43px auto 50px;
  }

  .footer__tagline {
    gap: 12px;
    color: var(--white);
    padding: 40px 0px 0px 16px;
    border-top: 1px solid var(--white-10, rgba(255, 255, 255, 0.1));
  }

  .footer__main__tag {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.27px;
    font-size: 28px;
    line-height: 120%; /* 33.6px */
  }

  .footer__tagline__subsection {
    font-size: 15px;
    line-height: 21px; /* 140% */
  }
  .shiny__tag {
    width: 128.368px;
    font-size: 29.933px;
  }
}

/* IMAGE GALLERY STYLES */
/* ========================================================== */

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  margin: 1.5em auto;
  max-width: 1040px;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

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

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

.kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 0.75em;
}
/*Docs can be found here: http://themes.ghost.org/docs/ghost-editor#section-gallery-card
The implementation that Ghost recommends is pretty robust, with one caveat: it needs a few lines of JavaScrpt. Example can be found here:
https://github.com/TryGhost/Casper/pull/475/files#diff-ce5e030f2e2e2a50f18199464f07ea70
*/

/* BOOKMARK CARD STYLES */
/* ============================================================ */

.kg-bookmark-container {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border: 1px solid black none;
  background-color: #eee;
  text-align: center;
}

.kg-bookmark-content {
  padding: 1rem;
  order: 2;
  width: 100%;
}

.kg-bookmark-title {
  font-weight: 500;
}

.kg-bookmark-description,
.kg-bookmark-metadata {
  margin-top: 1rem;
  color: black;
}

.kg-bookmark-thumbnail {
  width: 100%;
}

.kg-bookmark-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: bottom;
}

.kg-bookmark-author:after {
  content: " • ";
}
/*Docs can be found here: https://ghost.org/docs/api/v2/handlebars-themes/editor/#bookmark-card
Want something a bit leaner? You can drop the snippet I used in my premium Weblog theme that right in here! Here it is: https://gist.github.com/curiositry/511c84204f136a97d65cf77a39b230bf
*/

/* SUBSCRIPTION & MEMBERSHIP STYLES */
/* ==================================================== */

.notification-area {
  display: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #99ea02;
  padding: 1rem;
  box-sizing: border-box;
}

.billing-cancel .notification-area {
  background-color: #ccc;
}

.message-success,
.message-error {
  display: none;
}

.message-error,
[data-members-error] {
  color: var(--primary-warning);
}

.message-success {
  color: var(--text-okay-green-3);
}

.loading button span,
.error button span,
.success button span {
  display: none;
}

.loading button::after {
  content: "Loading...";
}

.error button::after {
  content: "Error :(";
}

.success button::after {
  content: "Success :)";
}

.success ~ .message-success,
.invalid ~ .message-error,
.error ~ .message-error {
  display: block;
}

/* AUTHOR PAGE STYLES */
/* ======================================================= */

.author-profile.container {
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  position: relative;
}

.author__banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row-reverse;
  height: 530px;
  gap: 24px;
  max-width: 1248px;
  padding: 0px 24px;
  margin: auto;
  overflow: hidden;
  width: 100%;
}

.breadcrumb-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 150px;
}

.breadcrumb-wrapper.author-breadcrumbs {
  max-width: 1248px;
  margin: auto;
  width: 100%;
  padding: 0px 24px;
}
.author-profile__name {
  line-height: 100%;
}

.author-profile__name span {
  display: flex;
  flex-direction: column;
  gap: 78px;
}

.author-profile__author-name {
  font: var(--display-2);
}

.author-profile__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  flex-basis: 50%;
  margin-bottom: 130px;
}

.author-info__location {
  font-size: 24px;
}

.author-profile__image-container {
  width: min(60vw, 450px);
  height: min(60vw, 550px);
  transform: translateY(100px);
}

.author-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author__info__wrapper {
  display: flex;
  padding: 50px 0px;
  background: var(--background-floating-purps, #f8f6ff);
}

.author__info {
  display: flex;
  max-width: 1248px;
  padding: 0px 24px;
  justify-content: center;
  align-items: flex-start;
  gap: 33px;
  margin: auto;
}

.author-page__bio {
  display: flex;
  padding-right: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-right: 1px solid var(--purps-level-20, #e6ccff);
}

.intro__title {
  font: var(--display-28-36);
  margin: 0px;
}

.author-profile__bio {
  font: var(--para-1);
  font-size: var(--heading-2-font-size);
}

.author-page__socials {
  display: flex;
  min-width: 408px;
  padding-right: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 408px;
}

.author__candy__website {
  padding-bottom: 2px;
  align-self: stretch;
}

.socials__title {
  font: var(--display-28-36);
  margin: 0px;
}

.socials__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.socials__container a.display-300 {
  font-size: 24px;
  line-height: 140%;
}

.socials__container a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  color: var(--purps-dark-tone, #306);
  text-decoration: none;
  line-height: 110%;
}

.socials__container a:hover {
  color: var(--text-candy);
}

.socials__container a:hover::after {
  content: none;
}

.author__posts-title {
  font: var(--display-3);
  margin: 60px auto 40px auto;
  max-width: 1248px;
  padding: 0px 24px;
}

@media screen and (max-width: 400px) {
  a.breadcrumb,
  p.breadcrumb {
    max-width: 160px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .breadcrumbs a.breadcrumb span {
    max-width: 160px;
  }
}

@media screen and (max-width: 767px) {
  .author__banner {
    height: 100%;
    justify-content: flex-start;
    flex-direction: column-reverse;
    padding: 40px var(--side-margin) 0px;
    gap: 0px;
    transform: translateY(60px);
  }

  .author-profile__author-name {
    font: var(--display-3);
    line-height: 100%;
    font-size: 44px;
    gap: 16px;
  }
  .author-profile__name span {
    gap: 32px;
  }

  .author-info__location {
    font-size: 20px;
  }
  .author-profile__image-container {
    width: 100%;
    height: 60%;
    transform: translateY(0px);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
  }
  .author-profile__image {
    object-fit: cover;
    transform: scale(1.1);
  }
  .author-profile__meta {
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 20px;
  }
  .author__info__wrapper {
    padding: 24px var(--side-margin);
    z-index: 1;
  }
  .author__info {
    flex-direction: column;
    width: 100%;
    gap: 24px;
    padding: 0px;
  }
  .author-page__bio {
    padding-right: 0px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--purps-level-20, #e6ccff);
    border-right: none;
  }
  .intro__title {
    font: var(--heading-2);
    font-size: 24px;
  }
  .author-profile__bio {
    font-family: "halyard-text" !important;
    font-size: 17px !important;
    font-weight: 300;
    line-height: 28px !important;
  }
  .author-page__socials {
    min-width: 100%;
    padding-right: 0px;
    flex: 0 0 100%;
  }
  .socials__title {
    font: var(--heading-2-mweb);
  }
  .socials__container a {
    line-height: 130%;
  }
  .socials__container a.display-300 {
    font-size: 20px;
  }

  .author__posts-title {
    font: var(--heading-2-mweb);
    margin: 40px auto 24px auto;
    padding: 0px 24px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 375px) and (max-width: 480px) {
  .author__posts-title {
    margin: 40px 24px 24px;
    padding: 0px;
    display: inline-flex;
    width: calc(100vw - 48px);
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 481px) and (max-width: 1199px) {
  .author__posts-title {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/*TAG PAGE STYLES
========================*/
.tag__content {
  display: flex;
  flex-direction: column;
  max-width: 1248px;
  margin: auto;
  gap: 60px;
}

.tag__intro {
  max-width: 1248px;
  padding: 0 24px;
  width: 100%;
  display: inline-flex;
  align-self: center;
  font-size: 36px;
  line-height: 54%; /* 19.44px */
}

.tag__page__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.tag-image-wrapper {
  display: flex;
  max-width: 1248px;
  padding: 0 var(--side-margin);
  width: 100%;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: flex-end;
}

.tag-image {
  width: auto;
  height: 400px;
  padding-top: 100px;
}

.tag-info {
  min-height: 375px;
  max-height: 400px;
  flex-shrink: 0;
  box-shadow: 0px -3px 12.3px 0px rgba(0, 0, 0, 0.19) inset;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: relative;
}

.tag-bg {
  width: 100%;
}
.tag-bg-mweb {
  display: none;
}

.tag-title {
  position: absolute;
  color: var(--white);
  font: var(--display-2);
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1248px;
  padding: 0 24px 76px;
  margin: auto;
}

.tag-breadcrumbs {
  position: absolute;
  top: 30%;
}

@media screen and (max-width: 767px) {
  .tag__page__container {
    gap: 40px;
  }
  .tag__content {
    gap: 24px;
  }
  .tag__intro {
    font-size: 28px;
    line-height: 120%; /* 19.44px */
    padding: 0px 24px;
  }
  .tag-title {
    font: var(--display-2);
    font-size: 28px;
    line-height: 100%;
    gap: 16px;
    padding: 120px var(--side-margin) 0px;
    height: 100%;
  }

  .tag-bg {
    display: none;
  }
  .tag-bg-mweb {
    display: block;
    width: 100%;
  }
  .tag-info {
    min-height: 247px;
    max-height: 450px;
  }

  .tag-image-wrapper {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .tag-image {
    width: 100%;
    height: auto;
    padding-top: 184px;
    max-width: 400px;
  }
}

/*JOIN US SECTION STYLES
========================*/
.join__us__container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: auto;
  background-color: var(--purps-surface-bg);
}
.join__us__inner__container {
  max-width: 1248px;
  width: 100%;
  display: flex;
  gap: 94px;
  justify-content: space-between;
  align-items: center;
  padding: 50px 24px;
}
.work-with-us {
  width: 509px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .work-with-us {
    padding-top: 24px;
  }
}
.join__us__text__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.join__us__title {
  color: var(--purps-dark-tone);
  font-size: var(--display-3-font-size);
  line-height: 100%;
}

.join__us__subtitle {
  color: #625b79;
  font-size: 28px;
  line-height: 140%;
}

.join__us__cta {
  font-size: 30px;
  line-height: 34px;
  color: var(--purps-dark-tone);
  text-decoration: none;
  border-bottom: 1px solid var(--purps-dark-tone);
  display: flex;
  overflow: hidden;
  padding-top: 20px;
}
#cta_arrow_blue {
  transform-origin: top right;
  margin-left: -30px;
}

#cta_arrow_candy {
  transform-origin: bottom left;
}

.join__us__cta #cta_arrow_blue {
  transform: scale(1);
  transition: all 300ms ease-in-out;
}
.join__us__cta #cta_arrow_candy {
  transform: scale(0);
  transition: all 300ms ease-in-out;
}

.join__us__cta:hover {
  color: var(--text-candy);
  border-bottom: 1px solid var(--text-candy);
}

.join__us__cta:hover #cta_arrow_blue {
  transform: scale(0);
  transition: all 300ms ease-in-out;
}

.join__us__cta:hover #cta_arrow_candy {
  transform: scale(1);
  width: auto;
  transition: all 300ms ease-in-out;
}

.join__us__people__wrapper {
  width: 258.722px;
  height: 73.706px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.person {
  display: flex;
  width: 74px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 4.5px solid #f8f6ff;
  background: var(--candy, #ff007a);
  flex-shrink: 0;
  margin-left: -27px;
  overflow: hidden;
}

.person-border {
  transform: translateX(235px);
  height: 74px;
  animation: personborder 5s ease infinite alternate;
}

.person:first-child {
  background: #e6ccff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--purps-dark-tone);
  font-size: 30px;
  line-height: 30px;
  animation: add 5s ease infinite alternate;
}

.person:first-child::after {
  content: "+";
  animation: textcontent 5s ease infinite alternate;
}

@keyframes add {
  from {
    background: #e6ccff;
    color: var(--purps-dark-tone);
  }
  50% {
    background: #e6ccff;
    color: var(--purps-dark-tone);
  }
  to {
    background: var(--purps-dark-tone);
    color: var(--white);
  }
}

@keyframes textcontent {
  from {
    content: " +";
    font-size: 35px;
  }
  50% {
    content: " +";
    font-size: 35px;
  }
  to {
    content: ". +1";
    font-size: 25px;
  }
}

@keyframes personborder {
  from {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.join-us-container-wrapper {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .join__us__inner__container {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    padding: 40px var(--side-margin) 0px;
  }
  .join__us__text__wrapper {
    gap: 16px;
  }
  .join__us__title {
    font-size: 36px;
  }
  .join__us__subtitle {
    font-size: 24px;
  }
  .join__us__cta.display-300 {
    font-size: 24px;
    font-variation-settings: "wght" 200;
  }
  .join-us-container-wrapper {
    margin-top: 60px;
  }
}

/*PAGINATION
=========================*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  gap: 12px;
}

.chevron__wrapper {
  --button-size: 2rem;
  --icon-size: 1.6rem;
  cursor: pointer;
  width: var(--button-size);
  height: var(--button-size);
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid var(--gray-g6);
  border-radius: 50%;
  color: var(--gray-g2);
}

.chevron__wrapper:hover {
  cursor: pointer;
  background-color: var(--gray-g7);
}

.page-number {
  font: var(--heading-4);
  padding-bottom: 2px;
}

/* FOOTNOTE
=========================*/
.footnote-item::marker {
  content: none;
}

.footnotes-sep {
  display: none;
}

.footnote-item {
  border-radius: 26px;
  background: #d2f260;
  width: 210px;
  height: 200px;
  position: absolute;
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post__content ol.footnotes-list {
  padding: 0px;
}

.footnotes:nth-of-type(odd) .footnote-item {
  transform: translateX(-230px);
}
.footnotes:nth-of-type(even) .footnote-item {
  transform: translateX(820px);
}

.footnote-item p {
  font-family: "halyard-display-variable", sans-serif;
  font-variation-settings: "wght" 600;
  color: #285e1b;
  font-size: 28px;
  line-height: 100%;
}

@media screen and (max-width: 800px) {
  .footnote-item {
    border-radius: 19px;
    width: 157px;
    height: 150px;
    position: relative;
    padding: 16px;
  }

  .footnotes:nth-of-type(odd) .footnote-item {
    margin: 12px 0px;
    transform: translateX(0px);
  }
  .footnotes:nth-of-type(even) .footnote-item {
    margin: 12px 0px;
    transform: translateX(0px);
  }
  .footnote-item p {
    font-size: 21px;
  }
}

/* HEADOUT FOOTER STYLES
========================*/
.footer-logo img {
  height: 28px;
}

.footer-content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1248px;
  margin: 64px auto 24px;
  padding: 0 var(--side-margin);
  gap: 40px;
  color: var(--gray-g6);
}

.footer-content-wrapper a:hover {
  color: var(--white);
}

.footer-link-wrapper {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  /* grid-template-columns: 1fr 2fr 1fr; */
}

.footer-link-wrapper ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-wrapper ul li {
  font-size: 15px;
  line-height: 20px;
}

.footer-link-wrapper a {
  text-decoration: none;
  color: var(--gray-g6);
}

.footer-get-help {
  min-width: 240px;
}

.footer-cities-company {
  display: grid;
  gap: 44px;
  flex: 2;
  grid-template-columns: repeat(2, 1fr);
}

.footer-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.footer-link-title {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  padding-bottom: 8px;
  max-width: 120px;
  color: var(--white);
}

.footer-link a {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-link a > img {
  padding-top: 3px;
  width: 16px;
  height: 16px;
}

.footer-payment-modes {
  width: 172px;
}

.footer-partners-cards {
  display: flex;
  flex-direction: column;
  gap: 44px;
  flex: 1;
}

.footer-attribution {
  border-top: 1px solid var(--gray-g3);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-attribution-separator {
  width: 3px;
  height: 3px;
  margin-top: 4px;
  display: block;
  border-radius: 50%;
  background: white;
}

.footer-attribution-address {
  display: flex;
  gap: 12px;
}

.footer-attribution-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-attribution a,
.footer-attribution div {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  color: var(--gray-g6);
  text-decoration: none;
}

.footer-attribution a:hover {
  color: var(--white);
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 16px;
}

iframe#launcher {
  width: 64px;
  height: 64px;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .footer-link-wrapper {
    display: grid;
  }

  .footer-attribution {
    flex-direction: column-reverse;
    border: none;
    align-items: start;
    gap: 16px;
  }

  .footer-attribution-address {
    flex-direction: column-reverse;
  }

  .footer-attribution-separator:first-of-type {
    display: none;
  }

  .footer-socials {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-g3);
    width: 100%;
  }
}
