.tcgelements-interactive-links-showcase {
  position: relative;

  &::-webkit-scrollbar {
    width: 0;
  }

  &::-webkit-scrollbar-track {
    background: transparent;
  }

  &::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .links-text {

    ul {
      margin-left: -40px !important;
      margin-right: -40px !important;
    }

    li {
      display: inline-block;
      padding: 40px;
      position: relative;
      z-index: 9;

      .title {
        transition: all .4s;
        -webkit-text-stroke: 1px transparent;
      }

      &.no-active {
        opacity: .3;

        .title {
          color: transparent;
          -webkit-text-stroke: 1px #fff;
        }
      }

      &.current {

        h2 {
          a {
            color: #fff;

            .taxonomy {
              color: #fff;
            }
          }

          span {
            color: #fff;
          }
        }
      }

      .sub-title {
        margin-bottom: 10px;
      }

      h2 {
        font-weight: 800;
        font-weight: 700;
        font-size: 30px;
        margin-top: 0px;
        margin-bottom: 8px;
        line-height: 1.3;

        a {

          color: #000;

          .taxonomy {
            display: block;
            font-weight: 400;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #1d1d1d;
            line-height: 1.3;
          }
        }

        .num {
          font-size: 14px;
          font-weight: 600;
          opacity: .7;
          margin-right: 15px;
        }
      }
    }
  }

  .links-img {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 70vh;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    overflow: hidden;

    .img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(1.1, 1.1);
      transition: all .7s;

      &.current {
        transform: scale(1);
        opacity: 1;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  a {
    display: inline-block;
  }
}

// Dark Mode
body.tcg-dark-mode {
  .tcgelements-interactive-links-showcase {
    .links-text {
      li {
        h2 {
          a {
            color: #fff;
            .taxonomy {
              color: #fff;
            }
          }
        }
      }
    }
  }
}

// Auto Mode
@media (prefers-color-scheme: dark) {
  body.tcg-auto-mode {
    .tcgelements-interactive-links-showcase {
      .links-text {
        li {
          h2 {
            a {
              color: #fff;
              .taxonomy {
                color: #fff;
              }
            }
          }
        }
      }
    }
  }
}