/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-market-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.s-market-list__card {
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  border-radius: 0.625rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  text-align: left;
  color: inherit;
  background-color: var(--wp--preset--color--bg-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.s-market-list__card:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}
.s-market-list__picto {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.s-market-list__name {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025rem;
}
.s-market-list__name {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .s-market-list__name {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-market-list__name {
    font-size: 1.25rem;
  }
}
.s-market-list__intro {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.4;
}
.s-market-list__intro {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-market-list__intro {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-market-list__intro {
    font-size: 0.875rem;
  }
}
.s-market-list__empty {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-light);
  font-weight: 500;
  line-height: 1.4;
}
.s-market-list__empty {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-market-list__empty {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-market-list__empty {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .s-market-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .s-market-list__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}