.large-list {
  background: #FFFAEE;

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;

    .boxed-title {
      margin-bottom: 32px;
    }

    h2 {
      margin-bottom: 24px;
      text-align: center;

      @media (max-width: 1024px) {
        margin-bottom: 16px;
      }

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

    .text {
      max-width: 600px;
      margin-bottom: 40px;
      text-align: center;
    }
  }

  .large-list-items {
    width: 100%;
    border-top: 1px solid var(--c-gray-900);
  }

  .large-list-item {
    border-bottom: 1px solid var(--c-gray-900);
    padding: 32px 0;

    .large-list-item-body {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding: 0 20px;

      @media (max-width: 1024px) {
        flex-direction: column;
        gap: 20px;
      }

      .number {
        min-width: 100px;
        font-size: 74px;
        font-weight: 700;
        line-height: 1;
        font-family: var(--ff-secondary);
        text-align: right;
        color: var(--c-gray-900);

        @media (max-width: 1024px) {
          font-size: 60px;
          text-align: left;
        }
      }

      .text {
        h3 {
          font-size: 30px;
          font-weight: 700;
          margin: 0 0 12px 0;
          color: var(--c-gray-900);
          line-height: 1.2;
        }

        p {
          font-size: 18px;
          line-height: 1.5;
          color: var(--c-gray-900);
          margin: 0;
          max-width: 800px;

          @media (max-width: 1024px) {
            font-size: 16px;
          }
        }
      }
    }
  }
}