/* 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-file-list__header {
  text-align: center;
  margin-bottom: 4rem;
}
.s-file-list__title {
  margin: 0 0 1.5rem;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: "remora-sans-w1", "sans-serif";
  line-height: 1;
  color: var(--wp--preset--color--txt-gray-dark);
  text-transform: uppercase;
}
.s-file-list__subtitle {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.275;
  color: var(--wp--preset--color--txt-gray-dark);
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}
.s-file-list__subtitle {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-file-list__subtitle {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-file-list__subtitle {
    font-size: 1rem;
  }
}
.s-file-list__subtitle p {
  margin: 0;
  color: inherit;
}
.s-file-list__subtitle p:last-child {
  margin-bottom: 0;
}
.s-file-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.5rem;
  max-width: 100%;
}
.s-file-list-card {
  background-color: var(--wp--preset--color--bg-secondary-lightest);
  color: var(--wp--preset--color--txt-gray-dark);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.has-bg-secondary-lightest-background-color .s-file-list-card {
  background-color: var(--wp--preset--color--bg-white);
}
.s-file-list-card__title {
  margin: 0;
  font-family: "Inter", "sans-serif";
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}
.s-file-list-card__title {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-file-list-card__title {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-file-list-card__title {
    font-size: 1.5rem;
  }
}
.s-file-list-card__download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--wp--preset--color--txt-gray-dark);
  transition: opacity 0.3s ease;
  margin-top: auto;
}
.s-file-list-card__download-link:hover {
  opacity: 0.7;
}
.s-file-list-card__download-text {
  font-family: "remora-sans-w1", "sans-serif";
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.s-file-list-card__download-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
@media (max-width: 64rem) {
  .s-file-list__grid {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }
}
@media (max-width: 48rem) {
  .s-file-list__title {
    font-size: clamp(1.5rem, 5vw, 3.125rem);
    line-height: 1.2;
  }
  .s-file-list__header {
    margin-bottom: 2.5rem;
  }
  .s-file-list__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .s-file-list__card {
    padding: 1.5rem;
    gap: 1rem;
  }
}