.employability * {
  font-family: var(--font-outfit);
}

.employability {
  .employability_eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    background: var(--color-aqua-low);
    border-radius: 8px;
    padding: 2px 8px;

    width: max-content;

    span {
      font-size: 17px;
      font-weight: 600;
      line-height: 23.8px;

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

  h2 {
    font-size: 26px;
    font-weight: 600;

    line-height: 32px;
    color: var(--primary-color);

    margin: 16px 0 24px;

    @media (width >=1024px) {
      font-size: 30px;
      line-height: 36px;
    }
  }

  p {
    font-size: 17px;
    font-weight: 500;
    line-height: 23.8px;
    color: var(--primary-color);
  }

  .employability_program {
    margin: 16px 0 0;
    padding: 24px;

    border: 2px solid var(--color-border-low);
    border-radius: 24px;

    .employability_program_list {
      display: grid;
      column-gap: 12px;
      grid-template-rows: repeat(2, auto);

      img {
        display: block;
        grid-row: span 2;
      }

      h3,
      p {
        color: var(--primary-color);
        width: 100%;
      }

      h3 {
        font-size: 22px;
        font-weight: 600;
        line-height: 28px;

        @media (width >=1024px) {
          font-size: 22px;
          line-height: 30px;
        }
      }

      p {
        font-size: 16px;
        font-weight: 400;
        line-height: 22.4px;
        margin-top: 4px;
      }
    }

    ul {
      margin: 24px 0 0;
      padding: 0;
      display: grid;
      gap: 16px;

      @media (width >=1024px) {
        gap: 24px;
      }

      &:has(+ a) {
        margin: 24px 0;
      }

      li {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        padding: 12px;

        background: var(--color-background-low);
        border-radius: 12px;

        @media (width >=1024px) {
          align-items: center;
        }

        img {
          display: block;
        }

        div {
          flex: 1;
          display: grid;

          span {
            font-weight: 600;

            &:first-of-type {
              font-size: 13px;
              line-height: 16px;

              text-transform: uppercase;
              color: var(--bg-secondary-color);
            }

            &:last-of-type {
              font-size: 17px;
              line-height: 23.8px;

              color: var(--primary-color);

              @media (width >=1024px) {
                font-size: 18px;
                line-height: 25.2px;
              }
            }
          }
        }

        >span {
          display: block;
          border-radius: 12px;
          background: var(--color-background-low);

          color: var(--primary-color);

          font-size: 12px;
          font-weight: 400;
          line-height: 18px;

          flex: 0 0 auto;
          padding: 4px 10px;
          align-self: start;
        }
      }
    }

    a {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: center;

      font-size: 16px;
      font-weight: 600;

      text-decoration: none;
      width: 100%;

      @media (width >=385px) {
        font-size: 17px;
      }

      @media (width >=1024px) {
        width: max-content;
      }
    }
  }
}