:root {
  --font-main-heading: 3.75rem;
  --color-darkmode-bg: #16171b;
}

@media (max-width: 767px) {
  :root {
    --font-main-heading: 3.125rem;
  }
}

.hero {
  padding-top: 4rem;
}

.brand-logo {
  max-height: 30px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.hero-post h1 {
  text-align: center;
}

.post-header {
  margin-top: 4rem;
  padding-bottom: 0;
}

.post-header + .post-image {
  margin-top: 4rem;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.post-content {
  margin-top: 0;
}

.post-content a {
  word-break: break-word;
}

.hero-post .post-content {
  text-align: center;
}

.hero-post .post-content figcaption {
  color: var(--color-secondary)
}

.post-content .kg-signup-card-text {
  padding-top: 0;
  padding-bottom: 0;
}

.post-content .kg-image-card > a > img {
  cursor: pointer;
}

.post-content .kg-image-card > a {
  max-width: max-content;
  margin: 0 auto;
  display: block;
}

/* Footer ****************************************************************************************************************** Footer */

.footer {
  background-color: #15171a;
  color: #fff;
  padding: 100px 0;

  @media (max-width: 1024px) {
    padding-bottom: 200px;
  }

  @media (max-width: 768px) {
    padding: 75px 0 150px;
  }

  a {
    text-decoration: none;
  }

  .wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 7.5vw;
    max-width: 1440px;
    margin: 0 auto;

    @media (min-width: 1500px) {
      column-gap: 100px;
    }

    @media (max-width: 1380px) {
      column-gap: 5vw;
    }

    @media (max-width: 1024px) {
      flex-wrap: wrap;
      row-gap: 100px;
    }

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      justify-content: unset;
      row-gap: 60px;
    }
  }
  .light-logo {
    max-width: 400px;
  }

  .footer__col:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;

    a {
      max-width: 400px;

      @media (max-width: 1380px) {
        max-width: 300px;
      }
    }
  }
  .footer__title {
    margin-top: 50px;

    text-align: center;
    line-height: 1.5;

    @media (max-width: 1380px) {
      margin-top: 30px;
    }
  }
  .footer__row {

    h3 {
      margin-bottom: 5px;

      font-weight: 400;
      font-size: 20px;

      @media (max-width: 768px) {
        font-size: 18px;
      }
    }
  }

  .footer__row:not(:first-child) {
    margin-top: 30px;
  }

  .footer__col:last-child {
    display: flex;
    flex-direction: column;

    @media (max-width: 1024px) {
      margin: 0 auto;
    }
  }

  .footer__author {
    position: relative;
    text-align: center;
    font-size: var(--font-secondary-heading);
  }

  .footer__author span {
    z-index: 1;
    position: relative;
  }

  .footer__signature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: 0;
  }

  .footer__socials {
    margin-top: 10px;
    display: flex;
    align-items: center;
    column-gap: 15px;

    svg {
      width: 40px;
      height: auto;
    }
  }
  .footer__privacy-terms {}
  .footer__signature {}
}


/* Pricing ****************************************************************************************************************** Pricing */

.pricing {
  background-color: #16171b;
  padding: 50px max(4vmin, 20px);

  .pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    column-gap: 40px;
    max-width: 1050px;
    margin: 0 auto;

    @media (max-width: 1080px) {
      display: flex;
      flex-wrap: wrap;
      row-gap: 40px;
    }
  }
}
.pricing-card {
  border-radius: 12px;
  border: 1px solid #27bb27;
  color: #fff;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 30px;

  @media (max-width: 1080px) {
    max-width: 350px;
  }

  .pricing-card__title {
    font-weight: 500;
    color: #27bb27;
  }
  .pricing-card__description {}
  .pricing-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    color: #27bb27;

    span:first-child {
      font-weight: 600;
    }
  }
  .pricing-card__links {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;

    .text-link {
      background-color: #fff;
      color: #16171b;
      display: block;
      aspect-ratio: 2.93 / 1;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    img {
      width: 100%;
    }
  }
  .pricing-card__details {
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 10px;

    li {
      display: flex;
      align-items: center;
      column-gap: 10px;

      svg {
        width: 20px;
        height: auto;
        flex-shrink: 0;

        path {
          fill: #27bb27;
        }
      }
    }
  }
}

.pricing-card:last-child {
  .pricing-card__price {
    visibility: hidden;
  }

  .pricing-card__links {
    grid-template-columns: 1fr 1fr 1fr 1fr;

    a {
      grid-column: 2 / 4;
    }
  }
}

.site-content.site-content--pricing {
  background-color: #16171b;
}