/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-card-list {
  position: relative;
  overflow-x: clip;
}
.s-card-list::before {
  content: "";
  user-select: none;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #071325;
  opacity: 0.7;
  z-index: 1;
}
.s-card-list.is-inview::before {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0, 0, 0.2, 1);
}
.s-card-list__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 9.375rem 18.75rem;
  height: 80dvh;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .s-card-list__container {
    height: auto;
    min-height: 0;
    padding-block: 5rem 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__container {
    padding-block: 3.75rem 5rem;
    align-items: stretch;
  }
}
.s-card-list__ttl {
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  padding-inline: 1rem;
  overflow-wrap: anywhere;
}
.s-card-list__list-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: calc(15.8125rem / 2 - 1.25rem);
}
@media screen and (max-width: 991px) {
  .s-card-list__list-container {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__list-container {
    margin-top: 1.75rem;
  }
}
.s-card-list__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 991px) {
  .s-card-list__list {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }
}
.s-card-list__line {
  width: 1.25rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}
.s-card-list__line:nth-of-type(1) {
  display: none;
}
@media screen and (max-width: 991px) {
  .s-card-list__line {
    display: none;
  }
}
.s-card-list__card {
  position: relative;
  overflow: hidden;
  width: 15.8125rem;
  max-width: 100%;
  height: 8.0625rem;
  border-radius: 0.375rem;
  min-width: 0;
  box-sizing: border-box;
  padding-block: 0.625rem;
  padding-inline: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(61, 180, 255, 0.15);
  transition: background-color 600ms cubic-bezier(0, 0, 0.2, 1), height 600ms cubic-bezier(0, 0, 0.2, 1);
}
.s-card-list__card::before, .s-card-list__card::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}
.s-card-list__card::before {
  left: 0;
}
.s-card-list__card::after {
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .s-card-list__card:hover {
    height: 13rem;
    background-color: #3db4ff;
    transition: background-color 600ms cubic-bezier(0, 0, 0.2, 1), height 600ms cubic-bezier(0, 0, 0.2, 1);
  }
}
@media screen and (max-width: 991px) {
  .s-card-list__card {
    width: 100%;
    height: auto;
    min-height: 8.75rem;
    padding-block: 1.25rem;
    overflow: visible;
    transition: none;
    background-color: #3db4ff;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__card {
    min-height: 0;
    padding-block: 1rem;
    padding-inline: 1rem;
  }
}
.s-card-list__card-header {
  width: calc(100% - 1.25rem * 2);
  max-width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  min-width: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-block: auto;
  transition: top 600ms cubic-bezier(0, 0, 0.2, 1), transform 600ms cubic-bezier(0, 0, 0.2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .s-card-list__card:hover .s-card-list__card-header {
    top: 1.25rem;
    transform: translateY(0);
    transition: top 600ms cubic-bezier(0, 0, 0.2, 1), transform 600ms cubic-bezier(0, 0, 0.2, 1);
  }
}
@media screen and (max-width: 991px) {
  .s-card-list__card-header {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    margin-bottom: 1rem;
    justify-content: flex-start;
    gap: 0.625rem;
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__card-header {
    margin-bottom: 0.75rem;
  }
}
.s-card-list__card-anim-spacer {
  flex: 0 0 0;
  min-width: 0;
  transition: flex 600ms cubic-bezier(0, 0, 0.2, 1);
  transition-delay: 400ms;
}
@media (hover: hover) and (pointer: fine) {
  .s-card-list__card:hover .s-card-list__card-anim-spacer {
    flex: 1 1 auto;
    transition: flex 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 400ms;
  }
}
@media screen and (max-width: 991px) {
  .s-card-list__card-anim-spacer {
    display: none;
    transition: none;
  }
}
.s-card-list__card-title {
  flex-shrink: 1;
  min-width: 0;
  font-family: "aptos", sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}
.s-card-list__card-title {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .s-card-list__card-title {
    font-size: calc(20px + 4 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-card-list__card-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__card-title {
    font-size: 1.5rem;
  }
}
.s-card-list__card-icon-wrapper {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 100%;
  background-color: var(--wp--preset--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .s-card-list__card-icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.s-card-list__card-icon {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.s-card-list__card-tags {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 1.25rem;
  bottom: calc(-1 * (100% + 2.5rem * 2));
  gap: 2.5rem;
  max-width: calc(100% - 2.5rem);
  min-width: 0;
  transition: bottom 900ms cubic-bezier(0.23, 1, 0.32, 1), gap 900ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (hover: hover) and (pointer: fine) {
  .s-card-list__card:hover .s-card-list__card-tags {
    bottom: 1.25rem;
    gap: 0.5rem;
    transition: bottom 900ms cubic-bezier(0.23, 1, 0.32, 1), gap 900ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media screen and (max-width: 991px) {
  .s-card-list__card-tags {
    position: relative;
    left: auto;
    bottom: auto;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
    transition: none;
  }
}
.s-card-list__card-tag {
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: normal;
  padding: 0.3125rem 0.625rem;
  border: 1px solid var(--wp--preset--color--white);
  border-radius: 2.5rem;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.s-card-list__card-tag {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-card-list__card-tag {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-card-list__card-tag {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .s-card-list__card-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}
@media (hover: none) and (min-width: 992px) {
  .s-card-list .s-card-list__list-container {
    margin-top: 5rem;
    min-height: 13rem;
  }
  .s-card-list .s-card-list__list {
    top: 0;
    bottom: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .s-card-list .s-card-list__card {
    height: 13rem;
    background-color: #3db4ff;
    transition: none;
  }
  .s-card-list .s-card-list__card-header {
    top: 1.25rem;
    transform: translateY(0);
    transition: none;
  }
  .s-card-list .s-card-list__card-anim-spacer {
    flex: 1 1 auto;
    transition: none;
  }
  .s-card-list .s-card-list__card-tags {
    bottom: 1.25rem;
    gap: 0.5rem;
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .s-card-list.is-inview::before {
    transition: none;
  }
  .s-card-list .s-card-list__card,
  .s-card-list .s-card-list__card-header,
  .s-card-list .s-card-list__card-anim-spacer,
  .s-card-list .s-card-list__card-tags {
    transition: none !important;
    transition-delay: 0ms !important;
  }
}