@import 'https://storage-asset.msi.com/global/template/css/cnd_color_root_2025.css';
@-webkit-keyframes pageListBtn {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@keyframes pageListBtn {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.pageList {
  padding: 50px 0;
  position: relative;
  text-align: left;
  overflow: hidden;
}
.pageList h2.title--main.theme-title, .pageList h2.title--main-normal.theme-title {
  font-size: calc(var(--block-title-xl) * 0.8);
  margin: 30px auto 40px;
  text-align: center;
}
.pageList__main {
  display: grid;
  gap: 5px;
}
.pageList__main-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  padding: 0 25px;
  border: 2px solid rgba(251, 154, 255, 0.9);
  -webkit-box-shadow: inset 0 0 25px rgba(255, 216, 246, 0.7);
          box-shadow: inset 0 0 25px rgba(255, 216, 246, 0.7);
  background: linear-gradient(45deg, #8d4c95, #260937, rgba(141, 76, 149, 0.7));
  min-height: 350px;
  overflow: hidden;
}
.pageList__main-item::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-width: 4px;
  border-style: solid;
  border-color: transparent;
  border-radius: 15px;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.9)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
  background-origin: border-box;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  -webkit-mask-image: linear-gradient(white, white), linear-gradient(white, white);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
          mask-image: linear-gradient(white, white), linear-gradient(white, white);
  -webkit-mask-composite: xor, source-over;
          mask-composite: exclude, add;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
}
.pageList__main-item .listcontent {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.pageList__main-item .listcontent__txtbox {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  text-shadow: 1px 1px 2px #000;
}
.pageList__main-item .listcontent__img .mixBlendMode {
  mix-blend-mode: screen;
}
.pageList__btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.pageList__btn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}
.pageList__btn:hover svg {
  -webkit-animation: pageListBtn 1s ease-in-out infinite;
          animation: pageListBtn 1s ease-in-out infinite;
}

@media (min-width: 768px) {
  .pageList {
    text-align: left;
  }
  .pageList__main {
    display: grid;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .pageList__main-item {
    min-height: 380px;
  }
}
@media (min-width: 996px) {
  .pageList__main {
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pageList__main.columnTwo {
    grid-template-columns: 423px 423px;
  }
  .pageList__main.columnThree {
    grid-template-columns: repeat(3, 1fr);
  }
  .pageList__main-item {
    max-width: 423px;
    min-height: 380px;
  }
}
@media (min-width: 1300px) {
  .pageList__main-item {
    min-height: 400px;
  }
}/*# sourceMappingURL=pageList.css.map */