/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.c-inner-cards-list {
  width: 100%;
}
.c-inner-cards-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-inner-cards-list__card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  padding: 1.25rem;
  border: 0.03125rem solid var(--wp--preset--color--bg-cyan-blue);
  border-radius: 0.375rem;
  background-color: rgba(61, 180, 255, 0.15);
}
.c-inner-cards-list.is-theme-orange .c-inner-cards-list__card {
  border-color: var(--wp--preset--color--bg-ait-orange);
  background-color: rgba(250, 140, 8, 0.15);
}
.c-inner-cards-list__dot {
  flex: 0 0 auto;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50% 50%;
  background-color: var(--wp--preset--color--bg-white);
}
.c-inner-cards-list__label {
  min-width: 0;
  color: var(--wp--preset--color--txt-white);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.c-inner-cards-list__label {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .c-inner-cards-list__label {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-inner-cards-list__label {
    font-size: 1rem;
  }
}
.c-inner-cards-list__empty {
  margin: 0;
  color: var(--wp--preset--color--txt-white);
  opacity: 0.7;
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.c-inner-cards-list__empty {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .c-inner-cards-list__empty {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-inner-cards-list__empty {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-inner-cards-list__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}