@keyframes highlightBorder {
  0%,
  100% {
    color: #000;
  }
  5%,
  30% {
    color: #e60012;
    text-shadow: 0 0 2px #e60012;
  }
  35% {
    color: #000;
    text-shadow: none;
  }
}

.editor {
  .page-subTabs {
    display: block;
    width: 100%;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;

    &.fixed {
      position: fixed;
      box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
    }

    .item {
      display: inline-flex;
      padding: 20px;
      color: #8c8c8c;
      position: relative;
      align-items: center;
      column-gap: 14px;

      @media (min-width: 1025px) {
        &:hover {
          color: #e60012;

          &::before {
            background: #e60012;
            border-color: #e60012;
          }
        }
      }

      @media (max-width: 480px) {
        padding: 10px;
      }

      &.active {
        color: #e60012;
        pointer-events: none;

        &::before {
          background: #e60012;
          border-color: #e60012;
        }
      }

      &::before {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        box-sizing: border-box;
        border: 2px solid #ccc;
        content: '';

        transition:
          background 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95),
          border-color 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
      }
    }
  }

  .color-title {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    justify-content: center;

    &::before,
    &::after {
      width: 20px;
      height: 1px;
      background: #c49c65;
      content: '';
    }

    span {
      color: #c49c65;
      font-weight: 600;
      font-size: 18px;

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

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

      @media (max-width: 430px) {
        font-size: 14px;
      }
    }
  }

  section.paperlibrary-sustainability {
    .m-container {
      hgroup {
        @media (max-width: 768px) {
          padding-bottom: 1rem;
        }
      }
    }
  }

  section.paperlibrary-core {
    padding-top: 6.5%;
    position: relative;
    overflow: hidden;

    @media (max-width: 1280px) {
      padding-bottom: 6%;
    }

    @media (max-width: 768px) {
      padding-top: 60px;
    }

    .bg-img {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -10;
      max-width: none;

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

    .float-img-1 {
      position: absolute;
      top: 11.5%;
      left: 10%;
      z-index: -1;

      @media (max-width: 768px) {
        top: 10px;
        left: 10px;
      }

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

    .container {
      max-width: 1230px;
      padding-left: 15px;
      padding-right: 15px;
      row-gap: 1rem;

      .core-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 12%;
        margin: 0 auto;
        max-width: 620px;

        @media (max-width: 640px) {
          column-gap: 6%;
        }

        .item {
          @media (min-width: 1025px) {
            &:hover {
              .icon {
                opacity: 1;
                transform: scale(1.1);
              }
            }
          }

          &.color-red {
            @media (min-width: 1025px) {
              &:hover {
                .info {
                  h3,
                  p {
                    color: #c7161d;
                  }
                }
              }
            }

            .icon {
              background: #c7161d;
            }
          }

          &.color-yellow {
            @media (min-width: 1025px) {
              &:hover {
                .info {
                  h3,
                  p {
                    color: #e58000;
                  }
                }
              }
            }

            .icon {
              background: #e58000;
            }
          }

          &.color-green {
            @media (min-width: 1025px) {
              &:hover {
                .info {
                  h3,
                  p {
                    color: #72961a;
                  }
                }
              }
            }

            .icon {
              background: #72961a;
            }
          }

          &.color-blue {
            @media (min-width: 1025px) {
              &:hover {
                .info {
                  h3,
                  p {
                    color: #1fb6ea;
                  }
                }
              }
            }

            .icon {
              background: #1fb6ea;
            }
          }

          & + .item {
            position: relative;

            &::before {
              position: absolute;
              width: 73%;
              top: 25%;
              right: 100%;
              height: 1px;
              border-top: 2px dashed #666666;
              content: '';

              @media (max-width: 640px) {
                width: 32%;
              }
            }
          }

          .icon {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0.75;
            margin-bottom: 23px;
            position: relative;
            z-index: 10;

            transition:
              opacity 0.3s ease,
              transform 0.3s ease;
          }

          .info {
            text-align: center;

            h3 {
              font-size: 22px;
              font-weight: 700;
              transition: color 0.3s ease;

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

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

            p {
              transition: color 0.3s ease;
            }
          }
        }
      }
    }
  }

  section.eco-pulp {
    padding-top: 40px;
    margin-top: 60px;

    @media (max-width: 768px) {
      padding-top: 30px;
      margin-top: 20px;
    }

    .subtitle,
    .color-title {
      position: relative;
      z-index: 40;
    }

    .eco-pulp-content {
      min-height: 720px;
      position: relative;
      overflow: hidden;
      margin-top: -35px;

      @media (max-width: 1440px) {
        min-height: 620px;
      }

      @media (max-width: 1024px) {
        margin-top: -17px;
      }

      @media (max-width: 768px) {
        min-height: 0;
        margin-top: 0;
      }

      .eco-pulp-content__overlay {
        position: absolute;
        z-index: 30;
        top: 0;
        left: 0;
        right: 0;

        .float-img-1 {
          position: absolute;
          top: 34%;
          left: 15%;
          z-index: 40;

          @media (max-width: 1440px) {
            top: 27%;
            left: 10%;
          }

          @media (max-width: 1024px) {
            top: 15%;
            left: 7%;
          }

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

          @media (max-width: 430px) {
            top: -3%;
            left: 0%;
          }
        }

        .float-img-2 {
          position: absolute;
          top: 4%;
          right: 24%;

          @media (max-width: 1440px) {
            top: 0%;
            right: 16%;
          }

          @media (max-width: 1024px) {
            top: -7%;
            right: 8%;
          }

          @media (max-width: 768px) {
            max-width: 65px;
          }

          @media (max-width: 430px) {
            max-width: 60px;
            top: -15%;
            right: 2%;
          }
        }
      }

      .eco-pulp-content__list-wrapper {
        z-index: 30;
        position: absolute;
        bottom: 14.3%;
        width: 100%;
        display: flex;
        justify-content: center;

        @media (max-width: 768px) {
          position: static;
          background: rgba(88, 53, 18, 0.6);
          padding: 1.5rem 0;
        }

        .eco-pulp-content__list {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          max-width: 1430px;
          padding-left: 15px;
          padding-right: 15px;
          margin: 0 auto;
          gap: 3.6vw;

          @media (max-width: 768px) {
            grid-template-columns: 1fr 1fr;
          }

          .eco-pulp-content__item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;

            @media (min-width: 1025px) {
              &:hover {
                transform: translateY(-10px);

                p::before {
                  width: 100%;
                }
              }
            }

            .icon {
              aspect-ratio: 1/1;
              max-width: 62px;
              width: 100%;
              display: flex;
              justify-content: center;
              align-items: center;

              @media (max-width: 480px) {
                max-height: 53px;
              }

              img {
                display: block;

                @media (max-width: 480px) {
                  max-width: none;
                  height: 100%;
                }
              }
            }

            h5 {
              color: #fff;
              font-weight: 600;
              font-size: 1.5rem;
              margin-bottom: 24px;

              @media (max-width: 768px) {
                /* color: #525252; */
                margin-bottom: 10px;
                font-size: 1.3rem;
              }

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

            p {
              font-weight: 400;
              font-size: 18px;
              color: #fff;
              padding-top: 1.5rem;
              position: relative;

              @media (max-width: 768px) {
                padding-top: 0;
                text-align: center;
                font-size: 1rem;
              }

              @media (max-width: 480px) {
                font-size: 13px;
              }

              &::before {
                width: 50px;
                height: 1px;
                background: #fff;
                position: absolute;
                left: 50%;
                top: 0;
                transform: translateX(-50%);
                content: '';
                transition: width 0.3s ease;

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

      .eco-pulp-content__bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 10;

        @media (max-width: 768px) {
          position: relative;
          aspect-ratio: 1920/720;
          width: 1000px;
          left: 50%;
          transform: translateX(-50%);
        }

        @media (max-width: 480px) {
          width: 750px;
          transform: translateX(-59%);
        }

        &::before {
          position: absolute;
          z-index: 20;
          inset: 0;
          background: linear-gradient(
            180deg,
            rgba(88, 53, 18, 0) 0%,
            rgba(88, 53, 18, 0.7) 100%
          );
          content: '';
        }

        img {
          position: absolute;
          opacity: 0;
          width: 100%;
          height: 100%;
          transition: opacity 0.3s ease;
          object-fit: cover;
          object-position: center;

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

          &.is-active {
            opacity: 1;

            @media (max-width: 768px) {
              display: block;
            }
          }
        }
      }
    }
  }

  section.paperlibrary-esg {
    padding-top: 110px;

    @media (max-width: 1024px) {
      padding-top: 70px;
    }

    .esg-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding-top: 126px;
      column-gap: 4%;
      position: relative;

      @media (max-width: 1024px) {
        display: flex;
        flex-direction: column;
        row-gap: 3.5rem;
        padding-top: 0;
      }

      @media (max-width: 768px) {
        row-gap: 3rem;
      }

      &:not(:hover) {
        .item {
          &::before {
            animation: highlightBorder 4s var(--animation-delay)
              cubic-bezier(0.4, 0, 0.2, 1) infinite;
          }
        }
      }

      .float-img-1 {
        position: absolute;
        bottom: 9%;
        left: 0;
        transform: translateX(-100%);
      }

      .float-img-2 {
        position: absolute;
        top: 38%;
        right: 0.3%;
        transform: translateX(100%);

        @media (max-width: 1440px) {
          transform: translateX(35%);
          right: 0;
        }

        @media (max-width: 1024px) {
          top: 0;
          transform: translate(15%, -100%);
        }

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

      .item {
        box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.08);
        border-radius: 100px 100px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 1.9vw;
        padding-right: 1.9vw;
        padding-bottom: 1.9vw;
        transition: box-shadow 0.3s ease;
        position: relative;

        @media (min-width: 1025px) {
          &:hover {
            box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.2);

            .img {
              img {
                transform: scale(1.1);
              }
            }
          }
        }

        @media (max-width: 1024px) {
          flex-direction: row;
          border-radius: 20px;
          padding: 1.5rem 1rem;
          column-gap: 1.5rem;
        }

        & + .item {
          &::before {
            position: absolute;
            left: 0;
            top: 50%;
            border-top: 11.5px solid transparent;
            border-bottom: 11.5px solid transparent;
            border-left: 16px solid currentColor;
            content: '';
            color: #000;
            will-change: color;
            transform: translate(-216%, 50%);
          }

          @media (max-width: 1280px) {
            &::before {
              transform: translate(-145%, 50%);
            }
          }

          @media (max-width: 1024px) {
            &::before {
              left: 50%;
              top: 0;
              transform: translate(-50%, -200%);
              border-top: 16px solid currentColor;
              border-bottom: none;
              border-left: 11.5px solid transparent;
              border-right: 11.5px solid transparent;
            }
          }

          @media (max-width: 768px) {
            &::before {
              border-top: 13px solid currentColor;
              border-left: 9px solid transparent;
              border-right: 9px solid transparent;
            }
          }
        }

        .img {
          max-width: 200px;
          width: 100%;
          aspect-ratio: 1/1;
          border-radius: 50%;
          position: relative;
          overflow: hidden;
          margin-bottom: 30px;
          margin-top: -126px;

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

          @media (max-width: 430px) {
            flex-shrink: 0;
            max-width: 120px;
          }

          &::before {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.1);
            content: '';
            z-index: 10;
          }

          img {
            transition: transform 0.3s ease;
          }
        }

        .info {
          h3 {
            padding-bottom: 20px;
            text-align: center;
            margin: 0;

            @media (max-width: 1024px) {
              padding-bottom: 10px;
              text-align: start;
            }
          }

          p {
            padding-top: 20px;
            border-top: 2px dashed #dadada;
            margin: 0;

            @media (max-width: 1024px) {
              padding-top: 10px;
            }
          }
        }
      }
    }
  }

  section.paperlibrary-read {
    margin-top: 30px;
    padding-top: 127px;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;

    .bg-img {
      position: absolute;
      top: 127px;
      left: 0;
      z-index: -10;
      max-width: none;

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

    .paperlibrary-read__overlay {
      position: absolute;
      top: 127px;
      right: 0;
      z-index: 10;
    }

    .float-img-1 {
      position: absolute;
      z-index: 20;
      top: 14%;
      left: 30%;

      @media (max-width: 1024px) {
        left: 18%;
        max-width: 47px;
        top: 11%;
      }

      @media (max-width: 768px) {
        top: 10%;
      }

      @media (max-width: 430px) {
        left: 10%;
      }
    }

    .container-custom {
      width: 100%;
      max-width: 1180px;
      padding-left: 15px;
      padding-right: 15px;
      margin: 0 auto;
      position: relative;
      z-index: 20;

      @media (max-width: 1680px) {
        width: 95%;
      }

      @media (max-width: 640px) {
        width: 100%;
        column-gap: 1rem;
      }

      .title {
        transform: translateY(-75px);
      }

      .stats-list {
        margin-top: 150px;
        display: flex;
        justify-content: space-between;
        column-gap: 0.5rem;

        @media (max-width: 1024px) {
          margin-top: 50px;
        }

        @media (max-width: 768px) {
          margin-top: 20px;
        }

        @media (max-width: 640px) {
          display: grid;
          grid-template-columns: 1fr 1fr;
          row-gap: 2.5rem;
          column-gap: 0.5rem;
          margin-bottom: 3rem;
        }

        .line {
          display: block;
          width: 1px;
          background: #999999;

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

        .item {
          display: flex;
          flex-direction: column;
          row-gap: 1rem;

          @media (max-width: 768px) {
            row-gap: 0.5rem;
          }

          @media (max-width: 640px) {
            align-items: center;
          }

          &:nth-of-type(1) {
            @media (max-width: 640px) {
              border-right: 1px solid #999999;
            }
          }

          &:nth-of-type(3),
          &:nth-of-type(4) {
            @media (max-width: 640px) {
              grid-column: span 2;
            }
          }

          .wrap {
            display: flex;
            flex-direction: column;
            row-gap: 27px;

            @media (max-width: 1024px) {
              row-gap: 20px;
            }

            @media (max-width: 640px) {
              align-items: center;
              column-gap: 1rem;
              flex-direction: row;
            }

            p {
              font-weight: 600;

              @media (max-width: 640px) {
                display: flex;
                align-items: center;
              }

              strong {
                font-size: 56px;
                color: #e60012;
                margin-right: 1rem;

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

                @media (max-width: 768px) {
                  font-size: 35px;
                  margin-right: 0.5rem;
                }
              }
            }
          }
        }
      }
    }

    .col-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      margin-top: 60px;

      @media (max-width: 1024px) {
        grid-template-columns: 1fr;
        row-gap: 1rem;
      }

      .video {
        border-radius: 20px;
        overflow: hidden;
        margin-right: -50px;
        position: relative;
        z-index: 10;

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

        iframe {
          display: block;
          aspect-ratio: 16/9;
        }
      }

      .info {
        background: #fff;
        border-radius: 40px;
        box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
        padding-top: 70px;
        padding-bottom: 64px;
        padding-left: 5rem;
        padding-right: 2rem;
        position: relative;

        @media (max-width: 1024px) {
          order: -1;
          background: transparent;
          box-shadow: none;
          padding: 0;
        }

        .float-img-3 {
          position: absolute;
          top: -3%;
          right: 3%;

          @media (max-width: 1024px) {
            top: -11%;
            right: -4%;
            max-width: 75px;
          }
        }

        .wrap {
          max-width: 520px;
          margin-left: auto;
          margin-right: calc(90px - 1.5rem);

          @media (max-width: 1440px) {
            max-width: none;
            margin-right: 0;
          }

          h3 {
            font-size: clamp(1.1875rem, 0.6319rem + 1.1574vw, 1.5rem);
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
          }
        }
      }
    }
  }

  section.paperlibrary-practice {
    margin-top: 110px;

    @media (max-width: 768px) {
      margin-top: 70px;
    }

    .m-container {
      max-width: 1560px;

      /* 防抖：在 slick 初始化前，只顯示第一張圖 */
      .slider-wrapper:not(.slick-initialized) .slide:not(:first-child),
      .background:not(.slick-initialized) .pic:not(:first-child) {
        display: none;
      }

      .paperlibrary-slider {
        position: relative;
        margin-top: 40px;

        max-width: 100%;
        height: auto;
        display: block;

        .float-img-2 {
          position: absolute;
          right: 30px;
          bottom: 2%;
          z-index: 10;
          transform: rotate(2deg);

          @media (max-width: 1280px) {
            bottom: 4%;
          }

          @media (max-width: 1024px) {
            max-width: 70px;
            bottom: 20px;
          }
        }

        .dots-1 {
          display: flex;
          align-items: center;
          column-gap: 15px;
          position: absolute;
          bottom: 11%;
          left: 105px;
          z-index: 10;

          @media (max-width: 1024px) {
            bottom: auto;
            top: 4%;
            left: auto;
            right: 0;
          }

          @media (max-width: 768px) {
            column-gap: 0;
          }

          .slick-prev,
          .slick-next {
            background: linear-gradient(
              to right bottom,
              #d25400 0%,
              #b6000e 100%
            );
            color: #fff;
            height: auto !important;
            width: 150px;
            line-height: normal !important;
            font-size: unset !important;
            transform: translate(0);
            padding: 0.9375rem 1rem;
            display: flex;
            align-items: center;
            column-gap: 15px;
            justify-content: center;

            @media (min-width: 1025px) {
              &:hover {
                background: rgba(195, 0, 16, 1);
              }
            }

            @media (max-width: 768px) {
              width: auto;
            }

            &::before {
              display: none;
            }

            img {
              max-width: 8px;
            }

            span {
              display: block;
              font-weight: 500;
              font-size: 18px;

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

          .slick-prev {
            position: static;
          }

          .slick-next {
            position: static;
          }
        }

        .slider-wrapper {
          opacity: 0;
          margin-bottom: -1000px;

          &.slick-initialized {
            opacity: 1;
            margin-bottom: 0px;
          }

          .slide {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding-top: 30px;
            padding-left: 30px;
            padding-right: 30px;
            padding-bottom: 53px;

            @media (max-width: 1024px) {
              display: flex;
              flex-direction: column;
              row-gap: 3rem;
              padding: 50px 0;
            }

            .info {
              border-radius: 40px;
              background: #fff;
              box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
              min-height: 404px;
              padding-top: 60px;
              padding-bottom: 60px;
              padding-left: 75px;
              padding-right: 75px;
              position: relative;

              @media (max-width: 1440px) {
                padding-left: 40px;
              }

              @media (max-width: 1024px) {
                box-shadow: none;
                border-radius: 0;
                min-height: 0;
                padding: 0;
              }

              .float-img-1 {
                position: absolute;
                top: -5.6%;
                left: 7%;

                @media (max-width: 1024px) {
                  top: -21%;
                  left: 0%;
                  max-width: 90px;
                }
              }

              .info-wrap {
                max-width: 550px;

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

                h3 {
                  font-size: clamp(1.1875rem, 0.6319rem + 1.1574vw, 1.5rem);
                  font-weight: 700;
                  color: #000;
                  margin-top: 0;
                  margin-bottom: 30px;
                }

                span {
                  color: #999;
                  margin-top: 20px;
                  display: block;
                }
              }
            }

            .paperlibrary-slider__sub {
              position: relative;
              border-radius: 20px;
              overflow: hidden;
              margin-left: -50px;
              z-index: 10;
              max-width: 800px;

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

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

              .dots-2 {
                position: absolute;
                bottom: 5%;
                left: 6%;
                z-index: 10;
                display: flex;
                align-items: center;

                @media (max-width: 640px) {
                  bottom: 3%;
                  left: 2%;
                }

                .slick-prev {
                  background: url(images/svg/left-arrow.svg) center no-repeat;
                  background-size: contain;
                  flex-shrink: 0;
                  position: relative;
                  left: auto;
                  right: auto;
                  display: inline-block;
                  vertical-align: top;
                  width: 35px;
                  height: 35px;
                  margin: 0 5px;
                  transform: translate(0);

                  &::before {
                    display: none;
                  }
                }

                .slick-next {
                  background: url(images/svg/right-arrow.svg) center no-repeat;
                  background-size: contain;
                  flex-shrink: 0;
                  position: relative;
                  left: auto;
                  right: auto;
                  display: inline-block;
                  vertical-align: top;
                  width: 35px;
                  height: 35px;
                  margin: 0 5px;
                  transform: translate(0);

                  &::before {
                    display: none;
                  }
                }

                .slick-dots {
                  position: static;
                  margin-left: 20px;

                  li {
                    margin: 0;

                    &.slick-active {
                      button:before {
                        background: #fff;
                      }
                    }

                    button {
                      &::before {
                        display: block;
                        position: static;
                        background: transparent;
                        border: 1px solid #fff;
                        box-sizing: border-box;
                        width: 8px;
                        height: 8px;
                        border-radius: 50%;
                        opacity: 1;
                        content: '';
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }

  section.paperlibrary-green {
    padding-top: 40px;
    margin-top: 50px;

    .col-2 {
      display: grid;
      grid-template-columns: 1fr 0.4fr;

      @media (max-width: 1024px) {
        grid-template-columns: 1fr;
        row-gap: 32px;
      }

      .table-wrapper {
        table {
          min-width: 545px;

          thead {
            tr {
              td {
                &:first-child {
                  width: 16.5%;
                  min-width: 147px;

                  @media (max-width: 480px) {
                    min-width: 110px;
                  }
                }
              }
            }
          }
        }
      }

      .img {
        padding-left: 24px;
        display: flex;
        justify-content: end;
        align-items: start;

        @media (max-width: 1024px) {
          justify-content: center;
          padding-left: 0;
        }

        img {
          @media (max-width: 768px) {
            max-width: 300px;
          }
        }
      }
    }
  }

  section.paperlibrary-join {
    padding-top: 60px;
    margin-top: 50px;

    .col-2 {
      display: grid;
      grid-template-columns: 0.88fr 1fr;
      align-items: center;

      @media (max-width: 1440px) {
        grid-template-columns: 1fr 1fr;
      }

      @media (max-width: 1024px) {
        display: flex;
        flex-direction: column;
        row-gap: 4rem;
      }

      .img {
        border-radius: 60px 0 60px 0;
        overflow: hidden;
        position: relative;
        z-index: 10;

        @media (max-width: 1024px) {
          border-radius: 60px;
        }

        img {
          display: block;
        }
      }

      .info {
        border-radius: 40px;
        box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
        padding-top: 4.8vw;
        padding-bottom: 4.8vw;
        padding-right: 8.5vw;
        padding-left: 27vw;
        margin-left: -369px;
        position: relative;

        @media (max-width: 1440px) {
          padding-right: 70px;
          padding-left: 437px;
        }

        @media (max-width: 1024px) {
          order: -1;
          box-shadow: none;
          border-radius: none;
          margin-left: 0;
          padding: 0;
        }

        .float-img-1 {
          position: absolute;
          top: -8%;
          right: 4.8%;
          z-index: 10;

          @media (max-width: 1280px) {
            top: -18%;
            right: 3%;
          }

          @media (max-width: 1024px) {
            top: -38%;
            right: -8.2%;
          }

          @media (max-width: 430px) {
            right: -2%;
          }
        }

        .info-wrap {
          max-width: 480px;
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-left: auto;

          .subtitle {
            margin-top: 0;
            margin-bottom: 30px;
            text-align: center;

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

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

          .alink {
            margin-top: 2.5vw;
            background: linear-gradient(
              to right bottom,
              #d25400 0%,
              #b6000e 100%
            );
            color: #fff;
            padding: 9.82px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            width: 220px;

            @media (min-width: 1100px) {
              font-size: 18px;
              padding: 9.82px 36.5px;
            }

            &:hover {
              background: rgba(195, 0, 16, 1);
              color: #fff;
            }
          }
        }
      }
    }
  }

  section.paperlibrary-partners {
    padding-top: 65px;
    padding-bottom: 90px;

    .title {
      display: flex;
      align-items: center;
      column-gap: 35px;
      margin-bottom: 20px;

      &::before,
      &::after {
        background: #ccc;
        flex: 1 1 0%;
        height: 1px;
        content: '';
      }

      span {
        font-size: 1.2rem;
        color: #333;
      }
    }

    .logo-group {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      /*display: grid;*/
      /*grid-template-columns: repeat(auto-fit, minmax(169px, 1fr));*/
      column-gap: 1rem;
      row-gap: 1rem;

      @media (max-width: 1024px) {
        justify-content: center;
        column-gap: 2.5rem;
      }

      @media (max-width: 768px) {
        row-gap: 0;
      }

      img {
        @media (max-width: 768px) {
          max-height: 80px;
        }
      }
    }
  }
}

.myTable-v2 {
  thead {
    tr td {
      font-size: 1.3rem;
      background: #000;
      color: #fff;
      text-align: center;
      padding: 22px 0;
      font-weight: 600;

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

      & + td {
        border-left: 1px solid #fff;
      }
    }
  }

  tbody {
    tr {
      &:nth-child(odd) {
        td {
          &:first-child {
            background: #f5f5f5;
          }
        }
      }

      &:nth-child(even) {
        td {
          background: #f5f5f5;

          &:first-child {
            background: #e5e5e5;
          }
        }
      }

      td {
        padding: 16px 30px;
        font-size: 1.1rem;
        color: #333333;

        @media (max-width: 768px) {
          padding: 10px 16px;
        }

        &:first-child {
          text-align: center;
          font-size: 1.15rem;
          color: #333333;
          font-weight: 600;
        }
      }
    }
  }
}
