/** Shopify CDN: Minification failed

Line 56:4 Unexpected "{"
Line 56:5 Expected identifier but found "%"
Line 56:57 Unexpected "{"
Line 56:58 Expected identifier but found "%"

**/

.long-text.mention_legal {
  display: grid;
  padding: 0 var(--anta_small-margin);
  grid-template-columns: repeat(9, 1fr);
  grid-gap: var(--anta_small-margin);
      max-width: none;
}
.long-text__heading {
  grid-column: 1 / span 2;
   
    font-size: var(--anta_extra_small_font-size-sans);
    font-weight: 400;
}
.long-text__content {
  grid-column: 4 / span 6;
  font-family: var(--anta_font-serif);
  font-size: var(--anta_small_font-size-serif);
  font-weight: 400;
}
.long-text__content p strong {
  font-family: var(--anta_font-sans);
  text-transform: uppercase;
  font-weight: 500;
    font-size: var(--anta_extra_small_font-size-sans);
}
.long-text a {
  color: var(--anta_color-primary);
  text-decoration: underline;
}
.long-text  a:hover {
    color: black;

}
@media screen and (max-width: 768px) {
  .long-text.mention_legal {
    grid-template-columns: repeat(2, 1fr);
  }
  .long-text__heading {
    grid-column: 1 / -1;
  }
  .long-text__content {
    grid-column: 1 / -1;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .long-text.mention_legal {
    {% comment %} grid-template-columns: repeat(2, 1fr); {% endcomment %}
  }
  .long-text__heading {
    grid-column: 1 / span 3;
  }
  .long-text__content {
    grid-column: 1 / 8;
  }
}
