@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.6;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
    font-size: 1.6em;
  }

  h1,
  h2,
  h3,
  h4 {
    font-optical-sizing: auto;
    font-style: normal;
  }

  p,
  li {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    margin: 1rem 0;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }
}

@layer base {
  :root {
    --black: #020617;
    --dark: #0f172a;
    --white: #fff;
    --light: #fffbf5;
    --primary: #e11d48;
    --primary-strike: #ebe5fc;
    --primary-lighter: color-mix(in srgb, var(--primary) 10%, var(--white));
    --secondary: #06b6d4;
    --secondary-lighter: color-mix(in srgb, var(--secondary) 10%, var(--white));
    --accent: #ff8a3d;
    --accent-lighter: color-mix(in srgb, var(--accent) 10%, var(--white));
    --dark-gray: #475569;
    --gray: #475569;
    --light-gray: #f8fafc;
    --shadow: #f2f2f2;

    --font-display: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
    --font-accent: "Poppins", sans-serif;

    --border-radius-0: 0;
    --border-radius-1: 1rem;
    --border-radius-2: 1.5rem;
    --border-radius-3: 2rem;
    --border-radius-4: 2.5rem;

    --text-xs: 0.75rem; /*metadata, tiny labels*/
    --text-sm: 0.875rem; /*nav, buttons, small UI*/
    --text-base: clamp(
      1rem,
      0.95rem + 0.25vw,
      1.125rem
    ); /*body copy, form text*/
    --text-md: clamp(
      1.125rem,
      1.02rem + 0.45vw,
      1.375rem
    ); /*intro paragraphs, card descriptions*/
    --text-lg: clamp(1.375rem, 1.1rem + 1vw, 1.875rem); /*section titles*/
    --text-xl: clamp(2rem, 1.4rem + 2.2vw, 3.25rem); /*page headings*/
    --text-2xl: clamp(3rem, 2.25rem + 4vw, 4.5625rem); /*hero headlines*/

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
  }

  @view-transition {
    navigation: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }

  body {
    font-family: var(--font-body);
    font-size: 10px;
    line-height: 1.3;
    color: var(--black);
    background: var(--white);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-family: var(--font-display);
    font-size: 4em;
    font-weight: 400;
    margin: 0;

    span {
      color: var(--primary);
    }

    strong {
      font-weight: 500;
    }

    @media screen and (max-width: 767px) {
      font-size: 2.5rem;
    }
  }

  h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 200;
    margin: 0;

    @media screen and (max-width: 767px) {
      font-size: 2rem;
    }

    span {
      color: var(--primary);
    }
  }

  h3 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 300;
    margin: 0;

    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }

  a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
  }

  .btn {
    min-height: 3.25rem;
    margin: 0;
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: 700;
    text-decoration: none;
    transition:
      transform var(--transition-fast),
      background-color var(--transition-fast),
      color var(--transition-fast);

    &:hover {
      transform: translateY(-2px);
    }

    span {
      font-size: 1.4em;
      line-height: 0;
    }

    &.large {
      margin: 0;
      font-size: var(--text-base);
      padding: 1.25rem 3rem;
    }

    &.small {
      margin: 0;
      font-size: var(--text-xs);
      padding: 0.25rem 1rem;
      min-width: auto;
    }

    &.btn-secondary {
      background: var(--white);
      color: var(--black);
      border-radius: var(--border-radius-4);
      border: 1px solid var(--gray);
    }

    &.ghost {
      border-color: var(--dark);
      background: transparent;
      color: var(--dark);

      &:hover,
      &:focus-visible {
        background: var(--dark);
        color: var(--white);
      }
    }

    &.alternate {
      background: transparent;
      color: var(--off-white);
      border: 1px solid var(--off-white);
    }
  }

  .btn-img {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    transition: 0.2s ease-in-out;

    &:hover {
      transform: scale(1.05);
    }
  }

  .subtitle {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.25rem;
    display: block;
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1280px;
    --wrapper-padding: 1rem;

    max-width: var(--wrapper-max-width);
    margin-inline: auto;
    padding-inline: var(--wrapper-padding);

    /* helps to match the Figma file */
    box-sizing: border-box;
    width: 100%;
  }

  .wrapper[data-width="narrow"] {
    --wrapper-max-width: 720px;
  }

  .wrapper[data-width="medium"] {
    --wrapper-max-width: 900px;
  }

  .wrapper[data-width="large"] {
    --wrapper-max-width: 1440px;
  }

  .section {
    padding-block: 4rem;

    @media (max-width: 767px) {
      padding-block: 3rem;
    }

    /* + .section {
      padding-top: 0;
    } */

    &.background-light {
      padding-top: 4rem;

      @media (max-width: 767px) {
        padding-top: 3rem;
      }
    }
  }
}

@layer components {
  /* Hero Section */

  .page_hero {
    --hero-content-width: 65%;
    --hero-image-width: 350px;
    --hero-image-height: 350px;

      display: grid;
      grid-template-columns: var(--hero-content-width) 1fr;
      align-items: center;
      gap: clamp(2rem, 5vw, 6rem);
      padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 7vw, 7rem);
      overflow: visible;
      background: var(--light);
      border-radius: 0;
      color: var(--dark);

    .hero-content {
        /* display: flex;
        align-items: flex-start; */
        gap: 0;
        max-width: 600px;
        color: var(--dark);

        .hero-eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
          width: fit-content;
          margin-bottom: 2rem;
          padding: 0.35rem 0.75rem;
          color: var(--primary);
          background: var(--primary-lighter);
          border-radius: 999px;
          font-family: var(--font-accent);
          font-size: var(--text-xs);
          font-weight: 700;
          letter-spacing: 0.08em;
          line-height: 1;
          text-transform: uppercase;

          .hero-eyebrow-dot {
            width: 0.45rem;
            height: 0.45rem;
            flex: 0 0 auto;
            background: var(--primary);
            border-radius: 50%;
          }
        }

        h1 {
          margin: 0;
          color: var(--dark);
          font-family: var(--font-display);
          font-size: var(--text-2xl);
          font-weight: 400;
          letter-spacing: -0.06em;
          line-height: 0.92;

          em {
            color: var(--primary);
            font-size: 1.12em;
            font-weight: 400;
            letter-spacing: -0.08em;
          }
        }

        p {
          max-width: 540px;
          margin: 2rem 0 0;
          color: var(--gray);
          font-family: var(--font-body);
          font-size: var(--text-base);
          line-height: 1.55;
        }

        .hero-actions {
          margin-top: 2.25rem;

          .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
          }
        }
    }

    .hero-visual {
      position: relative;
      justify-self: end;
      width: var(--hero-image-width);
      margin-right: 1rem;

      .hero-image-frame {
        position: relative;
        z-index: 1;
        width: 100%;
        height: var(--hero-image-height);
        overflow: hidden;
        border-radius: var(--border-radius-1);
        background: var(--black);
        box-shadow: 1rem 1rem 0 var(--shadow);

        &::after {
          position: absolute;
          inset: 0;
          content: "";
          background: linear-gradient(
            180deg,
            transparent 60%,
            rgb(2 6 23 / 0.22)
          );
          pointer-events: none;
        }

        .hero-bck {
          position: static;
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          transform: none;
          border-radius: 0;
        }
      }
    }

    @media screen and (max-width: 1199px) {
      gap: clamp(2rem, 4vw, 4rem);
      padding-inline: clamp(1.5rem, 5vw, 4rem);
    }

    @media screen and (max-width: 767px) {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 3.5rem;
      min-height: 0;
      padding: 4rem 1.25rem 5rem;

      .hero-content {
        align-items: flex-start;

        .hero-eyebrow {
          margin-bottom: 1.5rem;
        }

        h1 {
          font-size: clamp(1.8rem, 9vw, 3.5rem);
          width: 100%;
          max-width: 100%;
          overflow-wrap: anywhere;
        }

        p {
          margin-top: 1.5rem;
        }

        .hero-actions {
          align-items: stretch;
          flex-direction: column;
          width: 100%;
          margin-top: 1.75rem;

          .btn {
            width: 100%;
          }
        }
      }

      .hero-visual {
        align-self: center;
        width: calc(100% - 1rem);
        margin-right: 0.5rem;

        .hero-image-frame {
          height: min(125vw, 560px);
        }

        .hero-highlight {
          bottom: -2rem;
          left: -0.75rem;
          width: min(230px, 78%);
          padding: 1.25rem;
        }
      }
    }

    &.login {
      --hero-content-width: 46%;
      --hero-image-width: min(505px, 43vw);
      --hero-image-height: 632px;
      min-height: 720px;

      .hero-highlight {
          position: absolute;
          z-index: 2;
          bottom: -1.25rem;
          left: -1.25rem;
          width: min(230px, 70%);
          padding: 1.5rem 1.7rem;
          background: var(--white);
          border-radius: var(--border-radius-1);
          box-shadow: 0 1rem 2rem rgb(2 6 23 / 0.12);

          .hero-highlight-label {
            display: block;
            margin-bottom: 0.65rem;
            color: #94a3b8;
            font-family: var(--font-accent);
            font-size: var(--text-xs);
            text-transform: uppercase;
          }

          strong {
            display: block;
            color: var(--dark);
            font-family: var(--font-display);
            font-size: var(--text-md);
            font-weight: 400;
          }

          p {
            margin: 0.5rem 0 0;
            color: var(--gray);
            font-family: var(--font-body);
            font-size: var(--text-xs);
            line-height: 1.5;
          }
        }

        @media screen and (max-width: 1199px) {
          --hero-image-height: clamp(480px, 58vw, 620px);
        }
      }
    }
  

  .login-card {
    --card-orange: var(--accent);
    --card-orange-light: color-mix(
      in srgb,
      var(--white) 12%,
      var(--card-orange)
    );
    --card-gap: clamp(1rem, 2vw, 1.5rem);

    position: relative;
    min-height: 318px;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
    background: var(--card-orange);
    border-radius: var(--border-radius-2);
    color: var(--white);

    &::after {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 50%;
      content: "";
      background: var(--card-orange-light);
      pointer-events: none;
    }

    .card-content,
    .card-stats {
      position: relative;
      z-index: 1;
    }

    .card-content {
      flex: 0 1 46%;
      min-width: 280px;

      .card-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin-bottom: 1.25rem;
        padding: 0.35rem 0.7rem;
        background: rgb(255 255 255 / 0.16);
        border-radius: 999px;
        font-family: var(--font-accent);
        font-size: var(--text-xs);
        font-weight: 600;
        letter-spacing: 0.06em;
        line-height: 1;
        text-transform: uppercase;

        span {
          font-size: 0.7rem;
        }
      }

      h3 {
        max-width: 390px;
        margin: 0;
        font-family: var(--font-accent);
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 700;
        letter-spacing: -0.04em;
        line-height: 1.05;
      }

      p {
        max-width: 360px;
        margin: 1.25rem 0 1.5rem;
        color: rgb(255 255 255 / 0.82);
        font-family: var(--font-body);
        font-size: var(--text-sm);
        line-height: 1.45;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        min-height: 2.75rem;
        margin: 0;
        padding: 0.75rem 1.35rem;
        border: 0;
        border-radius: 0.45rem;
        background: var(--dark);
        color: var(--white);
        font-family: var(--font-accent);
        font-size: var(--text-xs);
        font-weight: 700;
        transition:
          transform var(--transition-fast),
          background-color var(--transition-fast);

        &:hover,
        &:focus-visible {
          background: var(--black);
          transform: translateY(-2px);
        }

        span {
          font-size: 1.3rem;
          line-height: 0;
        }
      }
    }

    .card-stats {
      flex: 1 1 50%;
      align-content: center;
      gap: var(--card-gap);

      .stat-box {
        display: flex;
        flex: 1 1 calc(50% - var(--card-gap));
        flex-direction: column;
        justify-content: center;
        min-width: 150px;
        min-height: 112px;
        padding: 1rem;
        background: rgb(255 255 255 / 0.12);
        border: 1px solid rgb(255 255 255 / 0.1);
        border-radius: var(--border-radius-1);
        text-align: center;
        transition:
          background-color var(--transition-fast),
          transform var(--transition-fast);

        &:hover {
          background: rgb(255 255 255 / 0.2);
          transform: translateY(-3px);
        }

        strong {
          font-family: var(--font-accent);
          font-size: clamp(1.75rem, 3vw, 2.5rem);
          font-weight: 700;
          line-height: 1;
        }

        span {
          margin-top: 0.45rem;
          color: rgb(255 255 255 / 0.7);
          font-family: var(--font-accent);
          font-size: 0.55rem;
          font-weight: 500;
          letter-spacing: 0.04em;
          line-height: 1.2;
          text-transform: uppercase;
        }
      }
    }

    @media screen and (max-width: 1199px) {
      gap: 3rem;
      padding-inline: clamp(1.5rem, 4vw, 3rem);

      .card-content {
        flex-basis: 42%;
      }
    }

    @media screen and (max-width: 767px) {
      align-items: stretch;
      gap: 2.5rem;
      min-height: 0;
      padding: 2.5rem 1.25rem 1.5rem;

      &::after {
        top: 50%;
        width: 100%;
      }

      .card-content {
        min-width: 0;

        h3 {
          font-size: clamp(2rem, 9vw, 2.75rem);
        }

        p {
          br {
            display: none;
          }
        }

        .btn {
          width: 100%;
        }
      }

      .card-stats {
        width: 100%;

        .stat-box {
          min-width: calc(50% - var(--card-gap));
          min-height: 105px;
        }
      }
    }
  }

  .learning-areas {
    --learning-card-radius: var(--border-radius-1);
    --learning-icon-size: clamp(13rem, 15vw, 16rem);

    .learning-areas-intro {
      max-width: 760px;
      margin-inline: auto;

      .learning-areas-eyebrow {
        display: block;
        margin-bottom: 1.25rem;
        color: var(--primary);
        font-family: var(--font-accent);
        font-size: var(--text-sm);
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      h2 {
        margin: 0;
        color: var(--dark);
        font-family: var(--font-display);
        font-size: var(--text-xl);
        font-weight: 400;
        letter-spacing: -0.04em;
        line-height: 1.05;
      }

      p {
        max-width: 700px;
        margin: 1.5rem auto 0;
        color: var(--gray);
        font-family: var(--font-body);
        font-size: var(--text-base);
        line-height: 1.45;
      }
    }

    .learning-areas-grid {
      align-items: flex-start;
      justify-content: center;
      margin-top: clamp(3.5rem, 6vw, 6rem);

      .learning-area-card {
        flex: 1 1 0;
        min-width: 0;

        .learning-area-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: var(--learning-icon-size);
          overflow: hidden;
          border-radius: var(--learning-card-radius);

          img {
            width: 4.5rem;
            height: 4.5rem;
            object-fit: contain;
          }
        }

        h3 {
          margin: 1.5rem 0 0;
          color: var(--dark);
          font-family: var(--font-accent);
          font-size: var(--text-md);
          font-weight: 700;
          line-height: 1.15;
        }

        p {
          max-width: 220px;
          margin: 0.7rem 0 0;
          color: var(--gray);
          font-family: var(--font-body);
          font-size: var(--text-sm);
          line-height: 1.45;
        }

        &.learning-area-business,
        &.learning-area-science {
          .learning-area-icon {
            background: #e8f8fc;
          }
        }

        &.learning-area-communication {
          .learning-area-icon {
            background: #fcecef;
          }
        }

        &.learning-area-art {
          .learning-area-icon {
            background: #fff3e7;
          }
        }

        &.learning-area-history {
          .learning-area-icon {
            background: #f1f3f7;
          }
        }
      }
    }

    @media screen and (max-width: 1199px) {
      .learning-areas-grid {
        flex-wrap: wrap;

        .learning-area-card {
          flex: 0 1 calc(50% - 16px);
        }
      }
    }

    @media screen and (max-width: 767px) {
      .desktop-only {
        display: none;
      }

      .learning-areas-intro {
        h2 {
          font-size: clamp(2.25rem, 10vw, 3.5rem);
        }

        p {
          margin-top: 1.25rem;
        }
      }

      .learning-areas-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1rem;
        margin-top: 3rem;

        .learning-area-card {
          width: 100%;

          .learning-area-icon {
            height: clamp(10rem, 42vw, 14rem);

            img {
              width: 3.5rem;
              height: 3.5rem;
            }
          }

          h3 {
            margin-top: 1rem;
            font-size: var(--text-base);
          }

          p {
            margin-top: 0.5rem;
            font-size: var(--text-xs);
          }

          &:last-child {
            grid-column: 1 / -1;
            max-width: calc(50% - 0.5rem);
          }
        }
      }
    }
  }

  .discipline-gallery {
    .discipline-gallery-header {
      gap: 2rem;
      margin-bottom: clamp(2.5rem, 4vw, 4rem);

      .discipline-gallery-heading {
        span {
          display: block;
          margin-bottom: 0.75rem;
          color: #94a3b8;
          font-family: var(--font-accent);
          font-size: var(--text-xs);
          font-weight: 500;
          letter-spacing: 0.08em;
          text-transform: uppercase;
        }

        h2 {
          margin: 0;
          color: var(--dark);
          font-family: var(--font-display);
          font-size: var(--text-lg);
          font-weight: 400;
          letter-spacing: -0.03em;
          line-height: 1.1;
        }
      }

      .discipline-gallery-link {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        margin-left: auto;
        color: var(--primary);
        font-family: var(--font-accent);
        font-size: var(--text-sm);
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        transition:
          color var(--transition-fast),
          transform var(--transition-fast);

        span {
          font-size: 1.35rem;
          line-height: 0;
        }

        &:hover,
        &:focus-visible {
          color: var(--dark);
          transform: translateX(3px);
        }
      }
    }

    .discipline-gallery-grid {
      align-items: stretch;

      .btn-img {
        flex: 1 1 0;
        min-width: 0;
        height: clamp(15rem, 21vw, 20rem);
        border-radius: var(--border-radius-1);
        background: var(--light-gray);
        transition:
          transform var(--transition-fast),
          box-shadow var(--transition-fast);

        &:hover,
        &:focus-visible {
          transform: translateY(-4px);
          box-shadow: var(--shadow-lg);
        }

        img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform var(--transition-base);
        }

        &:hover img,
        &:focus-visible img {
          transform: scale(1.04);
        }
      }
    }

    @media screen and (max-width: 1199px) {
      .discipline-gallery-grid {
        flex-wrap: wrap;

        .btn-img {
          flex: 1 1 calc(50% - 0.625rem);
        }
      }
    }

    @media screen and (max-width: 767px) {
      .discipline-gallery-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 2rem;

        .discipline-gallery-link {
          margin-left: 0;
        }
      }

      .discipline-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;

        .btn-img {
          width: 100%;
          height: clamp(10rem, 45vw, 15rem);
        }
      }
    }
  }

  .split-features {
    .split-feature {
      min-height: 360px;

      & + .split-feature {
        margin-top: clamp(4rem, 8vw, 7rem);
      }

      .split-feature-media {
        flex: 1 1 50%;
        min-width: 0;
        position: relative;

        &::after {
          position: absolute;
          z-index: 0;
          inset: 0 -0.75rem -0.75rem 0.75rem;
          content: "";
          border-radius: var(--border-radius-1);
          background: var(--light-gray);
        }

        img {
          position: relative;
          z-index: 1;
          display: block;
          width: 100%;
          aspect-ratio: 1.35 / 1;
          object-fit: cover;
          border-radius: var(--border-radius-1);
          box-shadow: 1rem 1rem 0 var(--shadow);
        }
      }

      .split-feature-content {
        flex: 1 1 50%;
        min-width: 0;

        .split-feature-eyebrow {
          display: block;
          margin-bottom: 1rem;
          color: var(--secondary-alt, var(--secondary));
          font-family: var(--font-accent);
          font-size: var(--text-xs);
          font-weight: 700;
          letter-spacing: 0.06em;
          text-transform: uppercase;
        }

        h2 {
          margin: 0;
          color: var(--dark);
          font-family: var(--font-display);
          font-size: var(--text-xl);
          font-weight: 400;
          letter-spacing: -0.04em;
          line-height: 1.03;
        }

        p {
          max-width: 500px;
          margin: 1.25rem 0 1.5rem;
          color: var(--gray);
          font-family: var(--font-body);
          font-size: var(--text-base);
          line-height: 1.5;
        }
      }

      .split-feature-list {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin: 0;
        padding: 0;
        list-style: none;

        li {
          display: flex;
          align-items: center;
          gap: 0.65rem;
          color: var(--dark);
          font-family: var(--font-accent);
          font-size: var(--text-sm);
          font-weight: 600;

          span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1rem;
            height: 1rem;
            flex: 0 0 auto;
            border-radius: 50%;
            background: var(--secondary-alt, var(--secondary));
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 700;
          }
        }
      }

      .split-feature-benefits {
        max-width: 500px;

        .split-feature-benefit {
          display: flex;
          flex: 1 1 0;
          flex-direction: column;
          min-width: 0;
          padding: 1.15rem;
          background: var(--white);
          border-radius: var(--border-radius-1);

          .split-feature-benefit-icon {
            margin-bottom: 0.65rem;
            color: #9a3412;
            font-size: 1.2rem;
          }

          strong {
            color: var(--dark);
            font-family: var(--font-accent);
            font-size: var(--text-xs);
          }

          small {
            margin-top: 0.35rem;
            color: var(--gray);
            font-family: var(--font-body);
            font-size: 0.65rem;
            line-height: 1.35;
          }
        }
      }

      &.split-feature-history {
        .split-feature-eyebrow {
          color: #b45309;
        }
      }

      @media screen and (max-width: 1199px) {
        gap: 3rem;
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;

        & + .split-feature {
          margin-top: 4rem;
        }

        .split-feature-media {
          width: 100%;

          img {
            aspect-ratio: 1.25 / 1;
          }
        }

        .split-feature-content {
          h2 {
            font-size: clamp(2.25rem, 10vw, 3.5rem);
          }
        }

        &.split-feature-history {
          flex-direction: column-reverse;
        }

        .split-feature-benefits {
          flex-direction: column;
          width: 100%;
        }
      }
    }
  }

  .page-hero {
   margin-top: 5rem;
  }

  .login-text {
    h2 {
      font-size: 2.5rem;
      font-weight: 200;
      margin: 0 0 30px;

      @media screen and (max-width: 767px) {
        font-size: 2rem;
      }

      span {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: var(--primary);
        text-transform: uppercase;
        display: block;
      }
    }
  }

  .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-top: 30px;

    li {
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid var(--light-gray);
      font-size: 1.25rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin: 0 0 20px;

      span {
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 600;
      }
    }
  }

  .card {
    background: var(--light-gray);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-2);
  }

  .banner {
    padding-block: 8rem;
    background: url(../images/premium/landing-hero-background.png) center
      no-repeat;
    background-size: cover;
    position: relative;

    &::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 0;
      background: rgba(255, 255, 255, 0.75);
    }

    .banner-content {
      position: relative;
      z-index: 1;

      .banner-text {
        text-align: center;
        font-size: 3.25rem;
        font-family: var(--font-display);
        font-weight: 300;

        @media screen and (max-width: 1199px) {
          font-size: 2.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 2rem;
        }

        span {
          display: block;
          font-size: 4rem;
          color: var(--primary);
          font-weight: 200;

          @media screen and (max-width: 1199px) {
            font-size: 3.5rem;
          }

          @media screen and (max-width: 767px) {
            font-size: 3rem;
          }
        }
      }
    }

    &.final-cta {
      position: relative;
      display: grid;
      isolation: isolate;
      overflow: hidden;
      padding: clamp(5rem, 10vw, 8rem) 1.5rem;
      background: var(--dark);
      color: var(--white);

      &::before {
        position: absolute;
        z-index: -2;
        inset: 0;
        content: "";
        background:
          radial-gradient(circle at 13% 45%, rgb(6 182 212 / 0.09), transparent 25%),
          linear-gradient(120deg, rgb(15 23 42 / 0.3), transparent 55%),
          repeating-linear-gradient(135deg, transparent 0 0.65rem, rgb(255 255 255 / 0.018) 0.7rem 0.75rem);
      }

      &::after {
        position: absolute;
        z-index: -1;
        top: -20%;
        left: -10%;
        width: 50%;
        height: 140%;
        content: "";
        background: radial-gradient(ellipse, rgb(6 182 212 / 0.08), transparent 68%);
        transform: rotate(-12deg);
      }

      .banner-content {
        width: min(100%, 820px);
        margin-inline: auto;

        .banner-text {
          max-width: 900px;
          margin: 0;
          color: var(--white);
          font-family: var(--font-display);
          font-size: var(--text-2xl);
          font-weight: 400;
          letter-spacing: -0.055em;
          line-height: 0.98;
        }

        .banner-description {
          max-width: 610px;
          margin: 0;
          color: rgb(203 213 225 / 0.72);
          font-family: var(--font-body);
          font-size: var(--text-md);
          line-height: 1.45;
        }

        .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 0.8rem;
          min-height: 4.25rem;
          margin: 0;
          padding: 1rem 2.8rem;
          border: 0;
          border-radius: 999px;
          background: var(--secondary);
          color: var(--white);
          box-shadow: 0 1rem 2rem rgb(255 138 61 / 0.18);
          font-family: var(--font-accent);
          font-size: var(--text-md);
          font-weight: 700;
          transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);

          &:hover,
          &:focus-visible {
            background: var(--primary);
            box-shadow: 0 1.25rem 2.5rem rgb(225 29 72 / 0.24);
            transform: translateY(-3px);
          }

          span {
            font-size: 1.65rem;
            line-height: 0;
          }
        }
      }

      @media screen and (max-width: 767px) {
        min-height: 520px;
        padding: 5rem 1.25rem;

        .desktop-only {
          display: none;
        }

        .banner-content {
          gap: 1.75rem;

          .banner-text {
            font-size: clamp(2.75rem, 13vw, 4rem);
          }

          .banner-description {
            font-size: var(--text-base);
          }

          .btn {
            width: 100%;
            min-height: 3.75rem;
            padding-inline: 1.5rem;
            font-size: var(--text-base);
          }
        }
      }
    }
  }

  .banner-section {
    background: var(--gradient-secondary);
    padding-block: 8rem;
    position: relative;

    @media screen and (max-width: 767px) {
      padding-block: 5rem 0;
    }

    .banner-content {
      color: var(--black);
      position: relative;
      z-index: 1;

      @media screen and (max-width: 1199px) {
        text-align: center;
        margin-inline: auto;
      }

      span {
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: block;
      }

      h3 {
        font-size: 3rem;
        font-weight: 600;

        @media screen and (max-width: 1199px) {
          font-size: 2.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 1.75rem;
        }
      }

      p {
        font-size: 1.125rem;
        margin-top: 1.5rem;
        max-width: 600px;

        @media screen and (max-width: 1199px) {
          margin-inline: auto;
        }
      }

      .btn {
        border: none;
        background: var(--white);
        font-weight: 600;
        color: var(--secondary);
      }
    }

    img {
      position: absolute;
      z-index: 0;
      right: 0;
      bottom: 0;
      height: 105%;
      width: auto;

      @media screen and (min-width: 767px) and (max-width: 1199px) {
        display: none;
      }

      @media screen and (max-width: 767px) {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 30px;
      }
    }
  }

  /* Hero Payment  */

  .hero_payment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Price Cards Payment  */

    .price_cards {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
      padding: 40px 0 60px;

      h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0px;
        text-transform: uppercase;
      }

      .pricing-toggle {
        display: flex;
        justify-content: center;
        width: 90%;
        max-width: 720px;
        margin: 0 auto;
        overflow: hidden;
        gap: 10px;

        .pricing-option {
          background-color: transparent;
          padding: 20px 30px;
          cursor: pointer;
          transition:
            background-color 0.3s,
            color 0.3s;
          border-radius: 8px;
          border: solid 1px var(--light-gray);
          background: var(--light-gray);
          flex: 1;
          color: var(--black);
          justify-content: space-between;
          gap: 20px;

          @media screen and (max-width: 767px) {
            padding: 15px;
            gap: 30px;
          }

          .pricing-price {
            text-align: right;
          }

          .plan-name {
            font-family: var(--font-accent);
            line-height: 30px;
            text-align: left;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;

            @media screen and (max-width: 767px) {
              font-size: 21px;
            }
          }

          .price {
            font-family: var(--font-accent);
            line-height: 30px;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 5px;

            @media screen and (max-width: 767px) {
              font-size: 24px;
            }
          }

          .duration {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: normal;
            margin-bottom: 0;
          }

          .details {
            font-size: 14px;
            line-height: normal;
            margin-bottom: 0;
          }

          &.active {
            border: solid 1px var(--primary);
            background-color: var(--primary);
            color: var(--white);
          }
        }
      }
    }

    .headpart {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      background-color: var(--light-gray);
      padding: 60px 0;

      h1 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
      }

      .flex-container-col {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .checkbox-group {
        margin-bottom: 15px;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        .checkbox-group input[type="checkbox"] {
          margin-top: 5px;
        }

        label {
          font-size: 14px;
          line-height: 1.5;
          display: block;
          margin-left: 10px;
          position: relative;
        }
      }

      .btn {
        padding: 18px;
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        margin: 30px auto;
        display: block;
        width: 100%;
        max-width: 360px;

        &:disabled {
          border: none;
          cursor: not-allowed;
          box-shadow: none;
          opacity: 0.5;

          &:hover {
            transform: none;
          }
        }
      }
    }
  }

  /* Slider  */

  /* CONTAINER */
  .slider {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2 / 1;
    border-radius: var(--border-radius-3);

    @media (max-width: 767px) {
      min-height: 70vh;
      border-radius: var(--border-radius-2);
    }

    .slides {
      display: flex;
      height: 100%;
      transition: transform 0.8s ease-in-out;

      /* Safari fix */
      will-change: transform;
      transform: translate3d(0, 0, 0);

      .slide {
        flex: 0 0 100%;
        height: 100%;
        position: relative;
        overflow: hidden;

        &::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.3);
          z-index: 1;
        }

        .content {
          position: absolute;
          z-index: 2;
          top: 50%;
          left: 10%;
          transform: translateY(-50%);
          color: white;
          max-width: 600px;
          width: 80%;

          @media (max-width: 767px) {
            left: 5%;
          }

          h1 {
            font-size: 3rem;
            margin-bottom: 10px;

            @media (max-width: 767px) {
              font-size: 2rem;
            }
          }

          p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.5;

            @media (max-width: 1199px) {
              font-size: 1rem;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 3;
              overflow: hidden;
            }
          }

          .btn {
            background: white;
            color: black;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: bold;
          }
        }

        .bg {
          width: 100%;
          height: 100%;
          object-fit: cover;
          /* fills nicely */
          object-position: center;
          display: block;

          /* Safari rendering fix */
          transform: scale(1.01);
        }
      }
    }

    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;

      .dot {
        width: 12px;
        height: 12px;
        background: white;
        opacity: 0.5;
        border-radius: 50%;
        cursor: pointer;

        &.active {
          opacity: 1;
        }
      }
    }
  }

  .home-video-content {
    .home-text-container {
      max-width: 420px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      @media screen and (max-width: 1199px) {
        max-width: 162px;
      }

      &::before {
        content: "";
        background: url(../images/icons/icon-play.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 280px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-audio-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-audio.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-app-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-apps.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-article-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-article.svg) center center
          no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-book-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-book.svg) center center
          no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  /* Fix for category cards layout */

  .audio-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);

    h3 {
      font-size: 1.125rem;
      font-weight: 500;
      margin: 0;
      color: var(--black);
    }
  }

  .audio-image-container {
    max-width: 360px;
    height: auto;

    img {
      border-radius: var(--border-radius-3);
    }
  }

  .article-item {
    max-width: 100%;

    .article-img-container {
      width: 120px;
      min-width: 120px;
      height: 120px;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      @media (max-width: 767px) {
        width: 100%;
      }

      img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    }

    .article-content {
      max-width: 100%;
      min-width: 0;

      h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin: 0;
        color: var(--black);
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        color: var(--primary);
        font-weight: 500;
        font-size: 0.85rem;
        border: none;
        background: var(--light-gray);
        min-width: 180px;
      }
    }

    .excerpt {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

      h1,
      h2,
      h3,
      h4,
      p,
      ul li,
      ol,
      li {
        font-size: 0.9rem;
        color: var(--dark-gray);
        margin: 0;
      }
    }
  }

  .book-item {
    width: calc(25% - 23.3333px);

    @media (max-width: 767px) {
      width: calc(50% - 15px);
    }

    @media (max-width: 374px) {
      width: 100%;
    }

    .book-img-container {
      height: 240px;
      min-width: 100%;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      @media (max-width: 767px) {
        height: 200px;
      }

      img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    }

    .book-content {
      width: 100%;

      h3 {
        font-size: 1.125rem;
        font-weight: 500;
        margin: 0;
        color: var(--white);
        font-family: var(--font-body);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        color: var(--primary);
        font-weight: 500;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        background: var(--black);
        min-width: 180px;
        border: 1px solid var(--dark-gray);
      }
    }

    .excerpt {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

      h1,
      h2,
      h3,
      h4,
      p,
      ul li,
      ol,
      li {
        font-size: 0.9rem;
        color: var(--gray);
        margin: 0;
      }
    }
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .category_card:hover .video-overlay {
    opacity: 1;
  }

  .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Button transition effects */

  .see-more-btn,
  .see-less-btn {
    transition: all 0.3s ease;
    border: 2px solid var(--gray);
    color: var(--primary);
    background: transparent;
    padding: 0.75rem 2rem;
    margin-block: 20px;
  }

  .see-more-btn:hover,
  .see-less-btn:hover {
    transform: translateY(-3px);
  }

  .hidden-items:empty {
    display: none !important;
  }

  /* Item appear animation */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Category Cards */

  .category_card {
    width: 100%;
    min-width: 150px;
    transition: transform 0.3s ease-in-out;
    margin: 0;
    max-width: 162px;

    @media screen and (max-width: 1199px) {
      margin-inline: auto;
    }

    &:hover {
      transform: translateY(-4px);

      img {
        filter: brightness(1) grayscale(0) contrast(1);
      }
    }

    img {
      width: 100%;
      height: 210px;
      overflow: hidden;
      border-radius: var(--border-radius-3);
      object-fit: cover;
      transition: all 0.3s ease-in-out;
      filter: brightness(0.5) grayscale(0.25) contrast(1.1);
    }

    .cardsTitle {
      padding-top: 1rem;
      font-weight: 600;
      color: var(--black);
      width: 80%;
      font-size: 0.8rem;
      z-index: 2;
      margin: 0;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }

  .app-section,
  #app-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 20px;
    flex-wrap: wrap;

    > a {
      flex: 1;
      max-width: fit-content;
    }
  }

  .pic-container {
    max-width: 360px;
    height: auto;

    img {
      border-radius: var(--border-radius-3);
    }
  }

  /* Categorie Pills  */

  .features-bar {
    margin: 0;
    flex-wrap: wrap;

    @media screen and (max-width: 767px) {
      justify-content: center;
    }

    .labels {
      .item-label {
        display: inline-block;
        padding: 5px 10px;
        background: var(--primary);
        color: var(--white);
        font-weight: 600;
        font-family: var(--font-body);
        border-radius: 5px;
        max-height: fit-content;
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;

      > img {
        width: 15px;
      }

      > span {
        font-size: 1.5em;
      }
    }
  }

  /* Scrollbar  */

  /* width */
  ::-webkit-scrollbar {
    width: 15px;
    height: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.329);
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 10px;
  }

  /* Section Picker */

  .section_picker {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 100%;

    @media screen and (max-width: 767px) {
      flex-direction: column;
    }

    button {
      padding: 30px;
      background: transparent;
      width: 100%;
      transition: 0.2s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: all 0.2s ease-out;
      border-radius: var(--border-radius-2);
      text-align: left;
      background: var(--secondary);
      border: none;

      @media screen and (max-width: 767px) {
        background-size: 50% !important;
      }

      &:hover {
        transform: scale(1.05);
        background: var(--primary);
      }

      &.active {
        cursor: default;
        transform: none !important;
      }

      span {
        font-weight: 600;
        font-size: 1.25rem;
      }

      p {
        font-size: 1.5rem;
        font-weight: 100 !important;
        margin: 0 0 10px;
        max-width: 80%;

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

      .btn {
        font-size: 1.25rem;
        background: var(--black);
      }

      &:nth-of-type(1) {
        background: var(--secondary) url(../images/picker-bck-recipes.png)
          no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-recipes.png)
            no-repeat bottom right;
        }
      }

      &:nth-of-type(2) {
        background: var(--secondary) url(../images/picker-bck-videos.png)
          no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-videos.png)
            no-repeat bottom right;
        }
      }

      &:nth-of-type(3) {
        background: var(--secondary) url(../images/picker-bck-tips.png)
          no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-tips.png)
            no-repeat bottom right;
        }
      }
    }
  }

  /* Support pages  */

  .contact__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1.3;

    h2,
    h3 {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 0;
    }

    p,
    ul li {
      margin-bottom: 1rem;
    }

    a {
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 1rem;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
      margin-top: 0;
      gap: 0.5rem;

      label {
        font-size: 0.75rem;
      }
    }
  }

  .title-section {
    margin-top: 3rem;
    background-color: var(--dark);
    h1 {
      padding: 6rem 1rem;
      border-radius: var(--border-radius-3);
      color: var(--white);
      font-size: var(--text-xl);
      font-family: var(--font-display);
      text-transform: capitalize;

      @media screen and (max-width: 767px) {
        padding: 2rem 1rem;
        font-size: 2rem;
      }
    }
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    @media screen and (max-width: 767px) {
      margin-top: 0;
      width: 100%;
    }

    p {
      font-size: 0.875rem;
      text-align: center;
    }

    a {
      color: var(--primary);
    }

    label {
      display: flex;
      flex-direction: column;
    }

    input,
    textarea {
      padding: 0.75rem 1rem;
      border: none;
      border-radius: var(--border-radius-2);
      background: var(--light-gray);
      font-size: 1rem;
      color: var(--black);
    }

    .btn {
      width: 100%;
    }
  }

  /* Single Items  */
  .single-item {
    margin-top: 5rem; /*fixed header-sticky.php issue on top*/
  }

  .single-item,
  .single-movie {
    h1 {
      font-size: 30px;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: left;
      text-wrap: inherit;

      @media screen and (max-width: 767px) {
        font-size: 24px;
        text-align: center;
      }
    }

    h2 {
      font-size: 19px;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .img-radial {
      width: 100%;
      max-width: 150px;
      height: 100%;
      max-height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: var(--border-radius-2);
      overflow: hidden;

      @media screen and (max-width: 767px) {
        max-width: 240px;
        max-height: 240px;
        margin: 0 auto;
      }

      &.large {
        max-width: 100%;

        @media screen and (max-width: 767px) {
          max-height: 200px;
        }
      }

      img {
        width: auto;
        min-height: 150px;
        min-width: 100%;
        border-radius: var(--border-radius-2);
        object-fit: cover;
        filter: brightness(0.7) grayscale(0.5);

        @media screen and (max-width: 767px) {
          min-height: 240px;
        }
      }
    }

    video {
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
    }

    .single-video-player {
      width: 100%;
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
      background: #000;
    }

    .single-item-info {
      width: 100%;
      padding: 0;

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

      p,
      ul li,
      ol li {
        line-height: 24px;
        margin: 0 0 20px !important;
        background: none !important;
        font-size: 16px !important;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        background: none !important;
      }

      h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      video {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      table {
        width: 100% !important;
        font-size: 15px;
        margin: 20px 0;

        @media screen and (max-width: 767px) {
          display: block;
          /* allows overflow */
          overflow-x: auto;
          /* enable horizontal scroll */
          white-space: nowrap;
          /* prevent cells from breaking */
          width: 100%;
          /* make it responsive */
          -webkit-overflow-scrolling: touch;
          /* smooth scroll on iOS */
        }

        tr {
          td {
            padding: 0.5rem 1rem;
            text-align: left !important;
          }
        }
      }
    }

    .btn {
      @media screen and (max-width: 767px) {
        margin: 0 auto;
      }
    }
  }

  .blog,
  article {
    .single-item,
    .single-movie {
      .img-radial {
        max-width: 100%;
        min-height: 300px;

        img {
          width: 100%;
          object-fit: cover;
        }
      }
    }
  }

  .single-movie .single-item-info {
    width: 100%;
  }

  .unsub-container {
    border: 2px solid var(--primary);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: var(--border-radius-2);
    margin: 0 auto;

    @media screen and (max-width: 767px) {
      width: 100%;
      padding: 2rem 1rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      max-width: 420px;

      .form-group {
        padding: 0;
      }

      input {
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
        width: 100%;
        background: var(--light-gray);
        color: var(--black);
      }

      .btn {
        width: 100%;
      }
    }

    #errorMsg {
      color: var(--gray);
      font-size: 0.875rem;
    }
  }

  .h-captcha {
    overflow: auto;
    max-width: 100%;
  }

  /* Alert styles */
  .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
  }

  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }

  .alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }

  .alert p {
    margin: 0;
  }

  /* Support page */

  .support-page {
    .wrapper[data-width="medium"] {
      --wrapper-max-width: 900px;
      margin-top: 5rem;
    }

    h3 {
      color: var(--primary);
      font-size: 1.25rem;
      margin: 0;

      @media (max-width: 767px) {
        text-align: center;
      }
    }

    h2 {
      font-size: 3rem;
      font-weight: 200;
      margin: 0;

      @media (max-width: 767px) {
        font-size: 2rem;
      }
    }

    a {
      color: var(--white);
      text-decoration: underline;
      font-weight: 600;
      overflow: hidden;
      white-space: nowrap;
      /* Don't forget this one */
      text-overflow: ellipsis;
    }

    .text-large {
      color: var(--gray);
      font-size: 1.55rem;
      font-weight: 300;
      line-height: 1.3;

      @media (max-width: 767px) {
        font-size: 1.75rem;
        text-align: center;
      }
    }

    .tablet-column {
      @media (max-width: 1199px) {
        flex-direction: column;
      }
    }

    .support-video {
      width: 100%;
      height: 100%;
      border-radius: 25px;
    }

    .support-container {
      background: var(--accent);
      position: relative;
      padding: 50px;
      border-radius: 25px;

      @media (max-width: 767px) {
        padding: 30px 20px;
        text-align: center !important;
      }

      &.email-frame {
        text-align: left;
        max-width: 680px;

        img {
          left: auto;
          right: 0;
          top: -20px;
        }

        a {
          font-size: 1.5rem;
          color: var(--white);
          line-height: normal;
          text-decoration: none;
        }
      }

      > .d-flex {
        position: relative;
        z-index: 1;
      }

      > img {
        position: absolute;
        left: 0;
        top: -40px;
        height: 100%;
        width: auto;
        z-index: 0;
        object-fit: contain;
        object-position: top;
        max-width: 280px;
        filter: grayscale(0.75) brightness(1.5);

        @media (max-width: 767px) {
          display: none;
        }
      }

      .support-number {
        font-size: 4rem;
        line-height: 1.25;
        font-weight: 800;
        display: block;
        color: var(--white);
        text-decoration: none;

        @media (max-width: 767px) {
          font-size: 7vw;
        }
      }

      @supports (-webkit-touch-callout: none) {
        @media screen and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
          .support-number {
            color: var(--white) !important;
            text-decoration: none !important;

            a {
              color: var(--white) !important;
              text-decoration: none !important;
            }
          }
        }
      }

      .support-text {
        color: var(--gray);
        display: block;
        font-size: 0.9rem;
      }
    }

    .contact_form {
      padding: 0;
      background: transparent;
      max-width: 100%;

      .form-group {
        width: 100%;
        margin: 0;

        input,
        textarea {
          padding: 15px;
          color: var(--white);
          border: none !important;
          border-radius: 25px;
          font-family: var(--font-body);

          &::placeholder {
            color: var(--dark-gray);
          }
        }
      }
    }

    .accordion {
      width: 100%;
      margin: auto;
      overflow: hidden;

      .accordion-item {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--gray);
        border-radius: 0 !important;

        .accordion-header {
          cursor: pointer;
          padding: 25px 0 10px;
          font-weight: bold;
          display: flex;
          justify-content: space-between;
          align-items: center;

          .arrow {
            color: var(--white);
            transition: transform 0.3s ease;
            margin-right: 10px;
            font-size: 18px;
          }

          span {
            font-size: 1.5rem;
            line-height: 1.3;
            color: var(--white);
            font-weight: 600;
            flex-grow: 1;
            padding-right: 20px;

            @media (max-width: 767px) {
              font-size: 1.25rem;
            }
          }
        }

        .accordion-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          padding: 0 0 15px;
          color: var(--gray);

          p {
            margin: 15px 0;
          }
        }

        &.active {
          .accordion-content {
            max-height: 450px;
            /* adjust if answers are long */
            overflow-y: auto;
          }

          .arrow {
            transform: rotate(90deg);
            /* arrow points down when open */
          }
        }
      }
    }
  }

  /* Footer  */

  .backToTopBtn {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--black);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px var(--primary);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
  }

  #backToTop {
    opacity: 0;
    visibility: hidden;

    &.visible {
      opacity: 1;
      visibility: visible;
    }
  }

  .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
  }

  .svgIcon path {
    fill: var(--white);
  }

  .backToTopBtn:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: var(--black);
    align-items: center;
  }

  .backToTopBtn:hover .svgIcon {
    transition-duration: 0.3s;
    transform: translateY(-200%);
  }

  .backToTopBtn::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: var(--white);
    font-size: 0px;
  }

  .backToTopBtn:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    transition-duration: 0.3s;
  }

  .site_footer {
    padding-block: 3.125rem;

    a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.25s ease-out;

      &:hover,
      &:focus-visible {
        color: var(--primary);
      }
    }

    p {
      font-size: 15px;
      line-height: 18px;
      text-align: center;
      margin-bottom: 1rem;
    }

    @media screen and (max-width: 767px) {
      .footer_link ul {
        flex-direction: column;
        gap: 0.8rem !important;
      }

      .copyrights {
        font-size: 0.875rem;
      }
    }

    .logo_footer {
      max-width: 60px;
      height: auto;
    }

    .disclaimer {
      font-size: 15px;
      line-height: 1.4;
    }
  }

  .logos img {
    width: 100%;
    height: 25px;
    object-fit: contain;
  }

  /* Modals  */
  .otp-modal,
  .login-modal,
  .unsub-modal,
  .sign-up-modal {
    position: fixed;
    inset: 0;
    background: url("../images/modal_background.jpg") center / cover no-repeat;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;

    @media screen and (max-width: 767px) {
      padding: 1rem;
    }

    .close {
      position: absolute;
      right: 1.25rem;
      top: 1.25rem;
      font-size: 2rem;
      cursor: pointer;
      color: var(--primary);
      line-height: 20px;

      @media screen and (max-width: 767px) {
        right: 1rem;
        top: 1rem;
      }
    }

     .logo_header {
      width: auto;
      overflow: hidden;
      padding: 0 !important;

      .logo-desktop {
        height: 35px;
        width: auto;
        max-inline-size: none;

        @media screen and (max-width: 991px) {
          display: none;
        }
      }
      .logo-mob {
        display: none;

        @media screen and (max-width: 991px) {
          display: block;
          height: 25px;
          width: auto;
        }
      }
    }

    form {
      width: 100%;

      .checkbox-group {
        label {
          font-size: 0.875rem;
          display: inline;
        }

        input[type="checkbox"] {
          accent-color: var(--primary);
          min-height: auto !important;
        }
      }

      .checkbox-group {
        &:first-of-type {
          margin-top: 10px;
        }

        label {
          display: inline;
          font-size: 0.875rem;
        }
      }

      input {
        padding: 0.5rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
      }

      .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 0.75rem;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 3rem 6rem;

        p {
          font-size: 0.875rem;
          text-align: center;

          &:empty {
            display: none;
          }
        }

        a {
          color: var(--primary);
        }

        @media screen and (max-width: 767px) {
          margin-top: 0;
          padding: 2rem 1rem;
          max-width: 100%;

          label {
            font-size: 0.75rem;
          }
        }
      }
    }

    h2 {
      @media screen and (max-width: 767px) {
        font-size: 1.5rem;
        text-align: center;
        margin: 10px auto;
      }
    }

    .modal-content {
      background: var(--white);
      border-radius: var(--border-radius-2);
      width: 100%;
      overflow: auto;
      max-inline-size: 600px;
      position: relative;
      box-shadow: 0 18px 40px rgba(28, 25, 23, 0.90);

      @media screen and (max-width: 767px) {
        width: 100%;
        margin-top: 2rem;
      }

      .form-group input {
        background: var(--light-gray);
        border: 2px solid var(--gray) !important;
        border: none;
        padding: 0.5rem 1rem;
        min-height: 50px;
        color: var(--black);

        &:focus-visible {
          outline: none;
          border: 2px solid var(--primary) !important;
        }

        &::placeholder {
          color: var(--dark-gray);
        }
      }
    }

    .modal-bck {
      background: url(../images/modal-image.jpg) center no-repeat;
      background-size: cover;
      height: 100%;
      width: 100%;

      @media (max-width: 767px) {
        display: none;
      }
    }
  }

  /* Payment modal  */

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: url("../images/modal_background.jpg") center / cover no-repeat;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
  }

  /* Payment Modal Styles */

  #paymentModal .modal-content {
    background: var(--white);
    border-radius: var(--border-radius-2);
    padding: 40px 20px 20px 20px;
    max-width: 480px;
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    box-shadow: 0 18px 40px rgba(28, 25, 23, 0.90);

    @media screen and (max-width: 479px) {
      height: 90%;
      overflow-y: scroll;
    }

    h2 {
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
      gap: 8px;

      @media screen and (max-width: 767px) {
        padding: 0;
      }
    }

    label {
      display: block;
      margin-bottom: 0;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-gray);
    }

    input {
      width: 100%;
      padding: 8px 15px;
      font-size: 16px;
      transition: border-color 0.3s ease;
      color: var(--black);

      &:focus {
        border-color: var(--primary);
        outline: none;
      }
    }

    .d-flex {
      display: flex;
      gap: 15px;

      .form-group {
        flex: 1;
      }
    }

    button[type="submit"] {
      width: 100%;
      padding: 14px;
      background: var(--primary);
      border: none;
      border-radius: 30px;
      color: white;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;

      &:hover {
        background: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(26, 47, 163, 0.2);
      }
    }

    .close {
      position: absolute;
      right: 20px;
      top: 10px;
      font-size: 2rem;
      color: var(--primary);
      cursor: pointer;
      transition: color 0.3s ease;

      @media screen and (max-width: 479px) {
        right: 10px;
        top: 10px;
      }

      &:hover {
        color: var(--primary);
      }
    }
  }

  /* Input placeholder styling */
  input::placeholder {
    color: var(--dark-gray);
  }

  /* Error state */
  input.error {
    border-color: #dc3545;
  }

  /* Success state */
  input.success {
    border-color: #28a745;
  }

  /* Custom Audio Player Styling */
  audio {
    width: 100%;
    height: 50px;
    border-radius: var(--border-radius-3);
  }

  audio::-webkit-media-controls-panel {
    background-color: #f4f4f4;
    border-radius: var(--border-radius-3);
  }

  audio::-webkit-media-controls-play-button {
    background-color: #dfdfdf;
    border-radius: 50%;
    color: var(--black);
  }

  audio::-webkit-media-controls-play-button:hover {
    background-color: var(--light-primary);
  }

  audio::-webkit-media-controls-timeline {
    background-color: #f4f4f4;
    border-radius: 25px;
    margin: 0 10px;
  }

  audio::-webkit-media-controls-volume-slider {
    background-color: #f4f4f4;
    border-radius: 25px;
  }

  .audio-player-container {
    background: #f4f4f4;
    border: 1px solid var(--gray);
    padding: 0.5rem;
    border-radius: var(--border-radius-2);
    box-shadow: 0px 0px 1rem rgba(192, 192, 192, 0.19);
    margin: 1rem 0;
    width: 100%;
  }

  .custom-audio-player {
    width: 100%;
    height: 54px;
    border-radius: 30px;
  }

  .custom-audio-player::-webkit-media-controls-panel {
    background: #f4f4f4;
    border-radius: 30px;
    padding: 0 5px;
  }

  .custom-audio-player::-webkit-media-controls-play-button {
    background-color: #dfdfdf;
    border-radius: 50%;
    padding: 8px;
  }

  .custom-audio-player::-webkit-media-controls-play-button:hover {
    background-color: var(--primary);
  }

  .custom-audio-player::-webkit-media-controls-volume-slider {
    margin-left: 10px;
  }

  .custom-audio-player::-webkit-media-controls-volume-control-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
  }

  .custom-audio-player::-webkit-media-controls-mute-button {
    background-color: transparent;
    border-radius: 50%;
  }

  .custom-audio-player::-webkit-media-controls-current-time-display,
  .custom-audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--black);
    font-size: 12px;
  }

  /* dots */
  .custom-audio-player::-webkit-media-controls-overflow-button {
    margin-left: 10px;
  }

  @media (max-width: 768px) {
    .custom-audio-player::-webkit-media-controls-volume-control-container {
      display: none !important;
      width: 0 !important;
    }

    .custom-audio-player::-webkit-media-controls-volume-slider {
      display: none !important;
      width: 0 !important;
    }

    .custom-audio-player::-webkit-media-controls-mute-button {
      display: none !important;
    }
  }

  /* Table  */

  .blog table {
    width: 100% !important;
    margin: 20px auto;
    font-size: 0.875rem;

    td {
      padding: 10px 5px;
    }
  }

  .blog table tr:first-child th,
  .blog table tr:first-child td {
    background: var(--primary);
    color: var(--white);
  }

  /* Legals Pages  */

  .legals {
    font-size: 16px;
    line-height: 1.4;

    h2 {
      font-size: 2rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h4 {
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    ul {
      list-style: disc;
      padding-left: 20px;

      li {
        margin-bottom: 0.5rem;
      }
    }
  }

  /* Content grid */
  .content-grid__heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 1.5rem;
    color: var(--black);
  }

  .content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;

    @media screen and (max-width: 1199px) {
      grid-template-columns: repeat(3, 1fr);
    }

    @media screen and (max-width: 767px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
  }

  .content-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    background: var(--primary);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
    }
  }

  .content-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.15);
      transition: background 0.3s ease;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-inline-size: none;
      transition: transform 0.4s ease;
    }
  }

  .content-card:hover .content-card__image {
    &::after {
      background: rgba(0, 0, 0, 0.3);
    }

    img {
      transform: scale(1.06);
    }
  }

  .content-card__body {
    padding: 0.75rem 0.875rem 1rem;
    background: var(--primary);
    flex: 1;
  }

  .content-card__title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.45;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* Hashtag filter */
  .hashtag-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;

    @media screen and (max-width: 767px) {
      gap: 0.375rem;
    }
  }

  .hashtag-btn {
    background: transparent;
    border: 1.5px solid var(--dark-gray);
    border-radius: var(--border-radius-1);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
    white-space: nowrap;
    color: var(--dark-gray);

    &:hover {
      background-color: var(--dark-gray);
      color: var(--white);
    }

    &.active {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--white);
    }
  }

  .hashtag-section {
    display: none;

    &.active {
      display: block;
    }
  }
}

@layer pages {
  .page {
    p {
      margin: 15px 0;
    }

    h1,
    h2 {
      margin-top: 30px;
    }

    .info-frame {
      background: var(--secondary);
      background-size: cover;
      padding: 30px;
      border-radius: var(--border-radius-2);
      gap: 10px;

      h2 {
        color: var(--white);
        margin: 0;
      }

      p {
        margin: 0;
      }

      .text-xl {
        font-size: 1.5rem;
        font-weight: 700;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

        @media screen and (max-width: 991px) {
          font-size: 1.2rem;
        }
      }
    }

    ul,
    ol {
      li {
        margin: 15px;
      }
    }
  }

  .btn.primary {
    padding: 12px 40px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: 0.25s ease-out;

    &:hover {
      transform: scale(1.1);
    }
  }

  .account_page {
    @media screen and (max-width: 750px) {
      flex-direction: column;
    }
  }
}

@layer utilites {
  .background-dark {
    background-color: var(--dark);
  }

  .background-primary {
    background-color: var(--primary);
  }

  .background-light {
    background-color: var(--light-gray);
  }

  .background-cream {
    background-color: var(--light);
  }

  .background-secondary-lighter {
    background-color: var(--secondary-lighter);
  }

  .background-accent-lighter {
    background-color: var(--accent-lighter);
  }

  .intro-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.8em;
    line-height: normal;
  }

  .d-none,
  .hidden {
    display: none !important;
  }

  .d-flex {
    display: flex;

    .flex-1 {
      flex: 1;
      min-width: 0;
    }
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .flex-column {
    flex-direction: column;
  }

  .flex-row {
    flex-direction: row;
  }

  .d-flex .column {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .align-center {
    align-items: center;
  }

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

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

  .text-black {
    color: var(--black);
  }

  .m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ml-auto {
    margin-left: auto !important;
  }

  .xs-hide {
    @media screen and (max-width: 767px) {
      display: none;
    }
  }

  .md-hide {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      display: none;
    }
  }

  .arrow-right {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
  }

  .border-top {
    border-top: 1px solid gray;
  }

  .height-100 {
    height: 100%;
  }

  .mt-auto {
    margin-top: auto;
  }

  .mt-0 {
    margin-top: 0 !important;
  }

  .mt-1 {
    margin-top: 1rem;
  }

  .mt-2 {
    margin-top: 1.25rem;
  }

  .mt-3 {
    margin-top: 1.5rem;
  }

  .mt-4 {
    margin-top: 2rem;
  }

  .mt-5 {
    margin-top: 2.5rem;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .mb-1 {
    margin-bottom: 1rem;
  }

  .mb-2 {
    margin-bottom: 1.25rem;
  }

  .mb-3 {
    margin-bottom: 1.5rem;
  }

  .mb-4 {
    margin-bottom: 2rem;
  }

  .mb-5 {
    margin-bottom: 2.5rem;
  }

  .pt-0 {
    padding-top: 0 !important;
  }

  .pt-1 {
    padding-top: 1rem;
  }

  .pt-2 {
    padding-top: 1.25rem;
  }

  .pt-3 {
    padding-top: 1.5rem;
  }

  .pt-4 {
    padding-top: 2rem;
  }

  .pt-5 {
    padding-top: 2.5rem;
  }

  .pb-1 {
    padding-bottom: 1rem;
  }

  .pb-2 {
    padding-bottom: 1.25rem;
  }

  .pb-3 {
    padding-bottom: 1.5rem;
  }

  .pb-4 {
    padding-bottom: 2rem;
  }

  .pb-5 {
    padding-bottom: 2.5rem;
  }

  .p-all {
    padding: 3rem;

    @media (max-width: 767px) {
      padding: 1.5rem;
    }
  }

  .no-padding-top {
    padding-top: 0 !important;
  }

  .no-padding-bottom {
    padding-bottom: 0 !important;
  }

  .col-4 {
    width: 35%;

    @media screen and (min-width: 768px) and (max-width: 1199px) {
      width: 45%;
    }

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

  .col-7 {
    width: 60%;

    @media screen and (min-width: 768px) and (max-width: 1199px) {
      width: 50%;
    }

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

  .col-6 {
    width: 50%;

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

  .gap-1 {
    gap: 0.5rem;
  }

  .gap-2 {
    gap: 0.625rem;
  }

  .gap-3 {
    gap: 1rem;
  }

  .gap-20 {
    gap: 20px;
  }

  .gap-30 {
    gap: 30px;
  }

  .gap-50 {
    gap: 50px;
  }

  .gap-100 {
    gap: 100px;

    @media screen and (max-width: 1199px) {
      gap: 50px;
    }
  }

  .w-100 {
    width: 100%;
  }

  .border-bottom {
    border-bottom: 1px solid var(--light-gray);
  }

  .mobile-column {
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
  }

  .mobile-column-reverse {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }

  .tablet-column {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      flex-direction: column;
    }
  }

  .reverse-mobile {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }
}
