body {
  font-family: "Jost", sans-serif;
  font-size: var(--p--font-size--0);
  font-weight: 300;
  line-height: var(--p--line-height--body);

  /* Alternate a */
  font-feature-settings: "ss01";
}
.ck-content {
  font-family: "Jost", sans-serif !important;
  font-size: var(--p--font-size--0) !important;
  font-weight: 300 !important;
  line-height: var(--p--line-height--body) !important;

  /* Alternate a */
  font-feature-settings: "ss01";
}
input,
button {
  font-family: "Jost", sans-serif;
}
h1 {
  font-size: var(--p--font-size--3);
  font-weight: 400;
  line-height: var(--p--line-height--narrow);
  margin: 0 auto var(--p--spacing--3-4);
}
h1.large {
  font-size: var(--p--font-size--4);
}
h2 {
  font-size: var(--p--font-size--2);
  font-weight: 400;
  line-height: var(--p--line-height--narrow);
  margin: 0 auto var(--p--spacing--3-4);
}
h3 {
  font-size: var(--p--font-size--1);
  font-weight: 400;
  line-height: var(--p--line-height--narrow);
  margin: 0 auto var(--p--spacing--3-4);
}
h4 {
  font-size: var(--p--font-size--0);
  font-weight: 500;
  line-height: var(--p--line-height--narrow);
  margin: 0 auto var(--p--spacing--3-4);
}

.cta--title {
  margin: 0 0 var(--p--spacing--3-4);
}
p {
  margin: 0 auto var(--p--spacing--3-4);
}
.page--header p,
.view--header p,
p.large {
  font-size: var(--p--font-size--1);
}
p.small {
  font-size: var(--p--font-size--n1);
}

/* Liens */
a {
  color: inherit;
}

.back-link {
  display: flex;
  gap: var(--p--spacing--1-4);
  align-items: center;
  font-size: var(--p--font-size--n1);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: inherit;
}
.back-link:hover {
  text-decoration: underline;
}
.back-link svg {
  transition: transform 0.075s;
}
.back-link:hover svg {
  transform: translateX(25%);
}
a.button {
  display: inline-flex;
  gap: var(--p--spacing--1-2);
  text-decoration: none;
  padding: var(--p--spacing--3-4) var(--p--spacing--5-4);
  background-color: var(--p--theme--color--text);
  color: var(--p--theme--color--background);
  border: 1px solid var(--p--theme--color--text);
  font-size: var(--p--font-size--0);
  font-weight: 400;
  line-height: var(--p--line-height--narrow);
}
a.button .icon {
  width: var(--p--font-size--n1);
  transition: transform 0.1s;
}
[data-fully-clickable="true"]:hover a.button,
[data-fully-clickable="true"]:focus-visible a.button,
a.button:hover,
a.button:focus-visible {
  background-color: var(--p--theme--color--background);
  color: var(--p--theme--color--text);
}
a.button.outline {
  background-color: var(--p--theme--color--background);
  color: var(--p--theme--color--text);
}
[data-fully-clickable="true"]:hover a.button.outline,
[data-fully-clickable="true"]:focus-visible a.button.outline,
a.button.outline:hover,
a.button.outline:focus-visible {
  background-color: var(--p--theme--color--text);
  color: var(--p--theme--color--background);
}
a.button.ghost,
a.button.ghost-light {
  padding: var(--p--spacing--1-4);
  border: 0;
  background: none;
  color: var(--p--theme--color--text);
}
a.button.ghost-light {
  font-weight: 300;
}
a.button.ghost .icon,
a.button.ghost-light .icon {
  font-size: var(--p--font-size--n2);
}
[data-fully-clickable="true"]:hover a.button.ghost,
[data-fully-clickable="true"]:hover a.button.ghost-light,
a.button.ghost:hover,
a.button.ghost-light:hover {
  text-decoration: underline;
  background: none;
  color: var(--p--theme--color--text);
}
[data-fully-clickable="true"]:hover a.button .icon:first-child,
[data-fully-clickable="true"]:focus-visible a.button .icon:first-child,
a.button:hover .icon:first-child,
a.button:focus-visible .icon:first-child {
  transform: translateX(33.33%);
}
[data-fully-clickable="true"]:hover a.button .icon:last-child,
[data-fully-clickable="true"]:focus-visible a.button .icon:last-child,
a.button:hover .icon:last-child,
a.button:focus-visible .icon:last-child {
  transform: translateX(-33.33%);
}

/* Lists - dl */
.block--text ul {
  margin: 0 auto var(--p--spacing--3-4);
  padding: 0 0 0 var(--p--spacing--3-4);
  list-style: "- ";
}
dl {
  margin: var(--p--spacing--1) auto;
}
dl.has-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0 var(--p--layout--spacing-list);
}
dl div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--p--spacing--3-4) 0;
  gap: var(--p--spacing--3-4);
  border-bottom: 1px solid var(--p--theme--color--separator);
}
dl div:last-child {
  border-bottom: 0;
}
@container (min-width: 34rem) {
  dl.has-columns div:nth-last-child(2):nth-child(2n + 1) {
    border-bottom: 0;
  }
}
dt {
  font-size: var(--p--font-size--0);
  font-weight: 400;
  line-height: var(--p--line-height--body);
  margin: 0;
}
dd {
  font-size: var(--p--font-size--0);
  font-weight: 300;
  line-height: var(--p--line-height--body);
  margin: 0;
}
dl.list-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: var(--p--spacing--3-2);
}
dl.list-blocks dt {
  font-size: var(--p--font-size--1);
}
dl.list-blocks div {
  display: block;
  padding: var(--p--spacing--1-4) 0;
  border: 0;
}

/* Sommaire */
.page--header .internal-nav {
  margin-block-start: var(--p--spacing--3-2);
}
.internal-nav .accordion-trigger {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sommaire-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
