body.simple-a-body {
  --black: #111111;
  --shade-50: #F1F1EF;
  --shade-100: #E9E5E1;
  --shade-300: #CAC3C9;
  --shade-700: #99989A;
  --season-color-1: #43D1A6;
  --red: #FC3A5C;
  --column-gap: 1.5rem;
  --hover-link: #3dbbb2;
  --lightbox-padding: 1rem;
  --lightbox-max-width: 1400px;
  --lightbox-media-max-height: 85vh;
  --grid-min-mobile: 180px;
  --grid-min-desktop: 220px
  font-family: 'Circular', Helvetica, Arial, sans-serif;
}

/* ============================
   Header
   ============================ */
.simple-a-body .landing-header {
  position: relative;
  width: 100%;
}
.simple-a-body .landing-header > img,
.simple-a-body .landing-header .landing-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: var(--shade-50);
}
.simple-a-body .landing-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(7.05633803rem + 8.82629108vw);
  max-width: 15rem;
  height: 1rem;
  background-color: var(--season-color-1);
  z-index: 2;
}
.simple-a-body .landing-header h1,
.simple-a-body .landing-header + h1 {
  font-size: 2.75rem;
  line-height: 1.09090909em;
  font-weight: 450;
  margin: 1.5rem auto 0;
  padding: 0 var(--column-gap);
  max-width: 1200px;
}
.simple-a-body .simplea-text {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 var(--column-gap);
  font-size: 1rem;
  line-height: 1.5em;
}
.simple-a-body .simplea-text p {
  margin: 0 0 1.375rem;
  max-width: 50rem;
}

@media (min-width: 61.4375em) {
  .simple-a-body .landing-header h1,
  .simple-a-body .landing-header + h1 {
    font-size: 4rem;
    line-height: 1em;
    margin-top: 2.25rem;
  }
  .simple-a-body .simplea-text {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.44444444em;
  }
}

/* ============================
   Ancres
   ============================ */
.simple-a-body > ul.mg-anchors {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0 var(--column-gap);
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #fff;
  box-shadow: inset 0 -1px 0 0 var(--shade-100);
}
.simple-a-body > ul.mg-anchors::-webkit-scrollbar { display: none; }
.simple-a-body > ul.mg-anchors li { margin: 0; flex: 0 0 auto; }
.simple-a-body > ul.mg-anchors a {
  display: inline-flex;
  align-items: center;
  height: 2.625rem;
  padding: 0 .9375rem;
  color: var(--shade-700);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 450;
  border-bottom: 1px solid var(--shade-100);
  background: transparent;
  white-space: nowrap;
  transition: color .12s linear, background-color .12s linear, box-shadow .12s linear;
}
.simple-a-body > ul.mg-anchors a:hover {
  color: var(--black);
  background-color: var(--shade-50);
  border-bottom-color: var(--black);
}
.simple-a-body > ul.mg-anchors a.is-active {
  color: var(--black);
  box-shadow: inset 0 -1px 0 var(--black);
  border-bottom-color: var(--black);
}

@media (min-width: 61.4375em) {
  .simple-a-body > ul.mg-anchors {
    justify-content: center;
    padding: 0 calc(2 * var(--column-gap));
    margin-top: 4rem;
  }
}

/* ============================
   Titres de section
   ============================ */
.simple-a-body h2[id] {
  max-width: 1200px;
  margin: 4rem auto 1.5rem;
  padding: 0 var(--column-gap);
  font-family: inherit;
  font-size: 2.25rem;
  line-height: 1.22222222em;
  font-weight: 450;
  color: var(--black);
  scroll-margin-top: calc(4.5rem + 2.625rem + 1rem);
}

@media (min-width: 61.4375em) {
  .simple-a-body h2[id] {
    font-size: 2.75rem;
    line-height: 1.09090909em;
    margin-top: 6rem;
    margin-bottom: 2.25rem;
    scroll-margin-top: calc(6rem + 2.625rem + 1rem);
  }
}

/* ============================
   Grille de médias
   ============================ */
.simple-a-body ul.mg-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 var(--column-gap);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 61.4375em) {
  .simple-a-body ul.mg-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 2rem 1.5rem;
    margin-bottom: 6rem;
  }
}

/* ============================
   Card
   ============================ */
.simple-a-body .mg-card {
  position: relative;
  background-color: #fff;
  cursor: pointer;
  margin: 0;
  list-style: none;
}
.simple-a-body .mg-card:focus-visible {
  outline: 1px auto -webkit-focus-ring-color;
  outline-offset: 4px;
}

.simple-a-body .mg-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 5;
  background-color: var(--shade-50);
  overflow: hidden;
}
.simple-a-body .mg-thumb img,
.simple-a-body .mg-card--video .mg-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-a-body .mg-thumb img {
  transition: transform .4s cubic-bezier(.43, 0, .71, .4);
}
.simple-a-body .mg-card:hover .mg-thumb img {
  transform: scale(1.03);
}

.simple-a-body .mg-thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--season-color-1);
  transition: width .3s cubic-bezier(0, .68, .33, .62);
  z-index: 2;
}
.simple-a-body .mg-card:hover .mg-thumb::after {
  width: 33.333%;
}

.simple-a-body .mg-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple-a-body .mg-thumb--placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--shade-300);
}
.simple-a-body .mg-card--pdf .mg-thumb--placeholder svg.mg-pdf-icon {
  width: 5.5rem;
  height: 6.875rem;
  color: inherit;
}

.simple-a-body .mg-card--video .mg-thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .95);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'><path d='M8 5v14l11-7z'/></svg>");
  background-position: 56% 50%;
  background-size: 1.75rem;
  background-repeat: no-repeat;
  box-shadow: 0 0 .3125rem rgba(17, 17, 17, .25);
  z-index: 2;
  transition: transform .2s linear;
}
.simple-a-body .mg-card--video:hover .mg-thumb::before {
  transform: translate(-50%, -50%) scale(1.08);
}

.simple-a-body .mg-card__info {
  padding: .75rem 0 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5em;
}
.simple-a-body .mg-card__title {
  font-family: inherit;
  font-size: 1.375rem;
  line-height: 1.36363636em;
  font-weight: 450;
  margin: 0;
  color: var(--black);
  transition: color .12s linear;
}
.simple-a-body .mg-card:hover .mg-card__title {
  color: var(--hover-link);
}
.simple-a-body .mg-card__copy {
  font-size: .875rem;
  line-height: 1.21428571em;
  color: var(--shade-700);
  margin: .25rem 0 0;
}
.simple-a-body .mg-card__copy::before { content: "© "; }
.simple-a-body .mg-card__type {
  display: inline-block;
  font-size: 14px;
  height: 1.75rem;
  line-height: calc(1.75rem - 2px);
  border: 1px solid var(--shade-100);
  padding: 0 1.25rem;
  border-radius: 1.5625rem;
  margin-top: .75rem;
  color: var(--black);
  background-color: #fff;
  white-space: nowrap;
}

/* ============================
   Lightbox
   ============================ */
body.mg-lock { overflow: hidden; }

.mg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lightbox-padding);
  background-color: rgba(17, 17, 17, .85);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s linear, visibility .3s linear;
}
.mg-lightbox.is-open { opacity: 1; visibility: visible; }

.mg-lightbox__inner {
  position: relative;
  background-color: #fff;
  max-width: var(--lightbox-max-width);
  width: 100%;
  max-height: calc(100vh - 2 * var(--lightbox-padding));
  display: flex;
  flex-direction: column;
  transform: translateY(1rem);
  transition: transform .3s ease-out;
}
.mg-lightbox.is-open .mg-lightbox__inner { transform: translateY(0); }

.mg-lightbox__media {
  position: relative;
  width: 100%;
  background-color: #111;
  max-height: var(--lightbox-media-max-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mg-lightbox__media img,
.mg-lightbox__media video {
  display: block;
  max-width: 100%;
  max-height: var(--lightbox-media-max-height);
  width: auto;
  height: auto;
  object-fit: contain;
}

.mg-lightbox__caption {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background-color: #fff;
  position: relative;
}
.mg-lightbox__caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 3px;
  background-color: var(--season-color-1);
}
.mg-lightbox__title {
  font-family: inherit;
  font-size: 1.625rem;
  line-height: 1.23076923em;
  font-weight: 450;
  margin: 0;
  color: var(--black);
}
.mg-lightbox__copy {
  font-size: .875rem;
  line-height: 1.21428571em;
  color: var(--shade-700);
  margin: 0;
}
.mg-lightbox__copy::before { content: "© "; }
.mg-lightbox__copy:empty { display: none; }

.mg-lightbox__actions { margin-top: 1.25rem; }
.mg-lightbox__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  min-width: 10rem;
  height: 3rem;
  padding: 0 1.0625rem;
  color: var(--black);
  background-color: var(--shade-50);
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 450;
  text-decoration: none;
  transition: background-color .12s linear;
}
.mg-lightbox__download:hover,
.mg-lightbox__download:focus {
  background-color: var(--shade-100);
  outline: none;
  border-color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
}
.mg-lightbox__download svg { width: 1.5rem; height: 1.5rem; }

.mg-lightbox__close {
  position: absolute;
  top: -.75rem;
  right: -.75rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--shade-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 0 .3125rem rgba(17, 17, 17, .25);
  z-index: 5;
  transition: background-color .12s linear;
}
.mg-lightbox__close:hover { background-color: var(--shade-50); }
.mg-lightbox__close svg { width: 1.25rem; height: 1.25rem; }

@media (min-width: 61.4375em) {
  body.simple-a-body {
    --lightbox-padding: 1.5rem;
  }
  .mg-lightbox__title { font-size: 1.875rem; }
  .mg-lightbox__caption { padding: 2rem 2.5rem; gap: .375rem; }
  .mg-lightbox__close { top: 1rem; right: 1rem; }
}