.loyalty-member-tiers {
  p {
    font-family: var(--hh-font-avenir-book);
  }

  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  justify-content: center;
  align-items: center;
  margin-top: var(--gw-section-spacing-fluid-xl);
  margin-bottom: var(--gw-section-spacing-fluid-xl);
  background-color: var(--hh-bg-color, transparent);

  .loyalty-member-tiers--title {
    text-align: center;
    padding: 0 30px;

    .title__heading {
      font-family: var(--hh-font-canela-light);
      font-size: clamp(2.8rem, 0.49383vw + 2.60741rem, 3.2rem);
      margin-bottom: 10px;
      line-height: 1;
    }

    .title__subheading {
      font-family: var(--hh-font-avenir-book);
      font-size: clamp(1.2rem, 0.37037vw + 1.05556rem, 1.5rem);
      font-weight: 100;
      letter-spacing: 0.1rem;
    }

    > * {
      margin: 0;
    }
  }

  .loyalty-member-tiers--content {
    display: grid;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    grid-gap: 20px;
    gap: 20px;
    max-width: 960px;
    padding: 0 50px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    .content-column {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      width: 100%;
      height: 100%;

      &:first-of-type .content-column__header {
        background-color: var(--hh-header-color, #f2f3f5);
      }

      .content-column__header {
        padding: 25px;
        width: 100%;
        background-color: var(--hh-header-color, #e5e6ea);

        h3 {
          font-family: var(--hh-font-canela-light);
          font-size: clamp(2.6rem, 0.49383vw + 2.40741rem, 3rem);
          line-height: 1;
          margin: 0;
        }

        span {
          font-size: 11px;
          line-height: 1;
        }
      }

      .content-column__title {
        font-family: var(--hh-font-gotham-book);
        font-size: 20px;
        line-height: 1;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.3rem;
      }

      .content-column__description {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        background-color: var(--hh-bg-color, #fdf8f2);
        padding-top: 30px;
        padding-bottom: 35px;
        height: 100%;

        p {
          font-size: 12px;
          line-height: 1.3;
          margin: 8px 0 0;
          max-width: 250px;

          &:first-child {
            margin-top: 0;
          }
        }
      }

      @media screen and (max-width: 749.9px) {
        width: 100%;
      }
    }

    @media screen and (max-width: 749.9px) {
      gap: 35px;
      max-width: 100vw;
      flex-direction: column;
      align-items: center;
    }
  }
}
