@charset "UTF-8";
/* ==========================================================================
   Variables.scss
   ========================================================================= */
/* ==========================================================================
   Reset.scss
   ========================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Suppression des styles par défaut des titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Nettoyage typographique de base */
body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Suppression des styles des listes */
ul, ol {
  list-style: none;
}

/* Liens sans style par défaut */
a {
  color: inherit;
  text-decoration: none;
}

/* Images réactives */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formulaires accessibles et neutres */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

textarea {
  resize: vertical;
}

/* Tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Supprime les animations pour les utilisateurs préférant les interfaces sans effet */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.d-flex {
  display: flex;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.m-xs {
  margin-block: clamp(0.5rem, 1vw, 1rem);
}

.p-xs {
  padding-block: clamp(0.5rem, 1vw, 1rem);
}

.mt-xs {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.mb-xs {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ms-xs {
  margin-left: clamp(0.5rem, 1vw, 1rem);
}

.me-xs {
  margin-right: clamp(0.5rem, 1vw, 1rem);
}

.pt-xs {
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.pb-xs {
  padding-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ps-xs {
  padding-left: clamp(0.5rem, 1vw, 1rem);
}

.pe-xs {
  padding-right: clamp(0.5rem, 1vw, 1rem);
}

.m-sm {
  margin-block: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.p-sm {
  padding-block: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.mt-sm {
  margin-top: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.mb-sm {
  margin-bottom: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.ms-sm {
  margin-left: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.me-sm {
  margin-right: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.pt-sm {
  padding-top: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.pb-sm {
  padding-bottom: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.ps-sm {
  padding-left: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.pe-sm {
  padding-right: clamp(1rem, -0.429rem + 3.81vw, 3rem);
}

.m-md {
  margin-block: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.p-md {
  padding-block: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.mt-md {
  margin-top: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.mb-md {
  margin-bottom: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.ms-md {
  margin-left: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.me-md {
  margin-right: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.pt-md {
  padding-top: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.pb-md {
  padding-bottom: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.ps-md {
  padding-left: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.pe-md {
  padding-right: clamp(2rem, -0.857rem + 7.619vw, 6rem);
}

.m-lg {
  margin-block: clamp(3rem, 6vw, 6rem);
}

.p-lg {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.mt-lg {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.mb-lg {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.ms-lg {
  margin-left: clamp(3rem, 6vw, 6rem);
}

.me-lg {
  margin-right: clamp(3rem, 6vw, 6rem);
}

.pt-lg {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.pb-lg {
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.ps-lg {
  padding-left: clamp(3rem, 6vw, 6rem);
}

.pe-lg {
  padding-right: clamp(3rem, 6vw, 6rem);
}

.has-primary-color {
  color: oklch(39.95% 0.1452 261.57deg) !important;
}

.has-primary-background-color {
  background-color: oklch(39.95% 0.1452 261.57deg) !important;
}

.has-secondary-color {
  color: oklch(74.32% 0.1315 228.34deg) !important;
}

.has-secondary-background-color {
  background-color: oklch(74.32% 0.1315 228.34deg) !important;
}

.has-tertiary-color {
  color: oklch(43.49% 0.1494 257.95deg) !important;
}

.has-tertiary-background-color {
  background-color: oklch(43.49% 0.1494 257.95deg) !important;
}

.has-accent-color {
  color: oklch(58.2% 0.2236 27.55deg) !important;
}

.has-accent-background-color {
  background-color: oklch(58.2% 0.2236 27.55deg) !important;
}

.has-lightgrey-color {
  color: oklch(94% 0 0deg) !important;
}

.has-lightgrey-background-color {
  background-color: oklch(94% 0 0deg) !important;
}

.has-dark-color {
  color: oklch(23.3% 0.0086 351.64deg) !important;
}

.has-dark-background-color {
  background-color: oklch(23.3% 0.0086 351.64deg) !important;
}

.has-white-color {
  color: oklch(100% 0 0deg) !important;
}

.has-white-background-color {
  background-color: oklch(100% 0 0deg) !important;
}

.has-primary-background-color {
  color: oklch(100% 0 0deg);
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* ==========================================================================
   Typography.scss - Hiérarchie typographique de base
   ========================================================================= */
@font-face {
  font-family: "Funnel Display";
  src: url("../fonts/funnel-display.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}
body {
  font-family: "Funnel Display", sans-serif;
  font-size: 100%;
  color: oklch(39.95% 0.1452 261.57deg);
  background-color: #fff;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-wrap: balance;
}

h4, h5, h6 {
  font-weight: 500;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

h1, h2, h3 {
  text-wrap: balance;
}

h1,
h2,
h3 {
  font-family: "Funnel Display", sans-serif;
}

p {
  margin-bottom: 1em;
}

strong,
.strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #555;
}

code, pre {
  font-family: monospace;
  background: #f8f8f8;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

pre {
  overflow-x: auto;
  padding: 1em;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

/* ==========================================================================
   Accessibility.scss - Helpers pour l'accessibilité
   ========================================================================= */
/* Cache visuellement tout en gardant l'élément accessible aux lecteurs d'écran */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Liens "aller au contenu" */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}
.skip-link:focus, .skip-link:active {
  position: static;
  width: fit-content;
  height: auto;
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: oklch(39.95% 0.1452 261.57deg);
  color: #fff;
  text-decoration: none;
}

/* Indication de focus visible */
:focus-visible {
  outline: 2px dotted oklch(39.95% 0.1452 261.57deg);
  outline-offset: 2px;
}

/* Pour les navigateurs ne supportant pas :focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   Container.scss - Conteneur de base responsive
   ========================================================================= */
.content-grid {
  display: grid;
  grid-template-columns: [full-width-start] minmax(1rem, 1fr) [content-start] min(100% - 2rem, 1140px) [content-end] minmax(1rem, 1fr) [full-width-end];
}
.content-grid > * {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
.content-grid.grid-breakout {
  grid-template-columns: [full-width-start] minmax(1rem, 1fr) [breakout-start] minmax(0, 30px) [content-start] min(100% - 2rem, 1140px) [content-end] minmax(0, 30px) [breakout-end] minmax(1rem, 1fr) [full-width-end];
}
.content-grid.grid-breakout > .breakout {
  grid-column: breakout;
}
.content-grid.grid-breakout-large {
  grid-template-columns: [full-width-start] minmax(1rem, 1fr) [largebreakout-start] minmax(0, 55px) [content-start] min(100% - 2rem, 1140px) [content-end] minmax(0, 55px) [largebreakout-end] minmax(1rem, 1fr) [full-width-end];
}
.content-grid.grid-breakout-large > .breakout {
  grid-column: largebreakout;
}

.full-width > * {
  grid-column: content;
}

.align-right {
  display: grid;
  justify-self: end;
}

.wrapper-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
@media (width >= 48rem) {
  .wrapper-cols {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (width >= 75rem) {
  .mobile {
    display: none !important;
  }
}

@media (width <= 75rem) {
  .desktop {
    display: none !important;
  }
}

.site-header {
  left: 0;
  right: 0;
  padding-block: 0.5rem;
  transition: all 0.35s ease;
  z-index: 1050;
}
.site-header h1 img {
  width: 25rem;
}
@media (width <= 48rem) {
  .site-header h1 img {
    width: 35rem;
  }
}
.site-header p {
  font-weight: 600;
  font-size: clamp(1rem, 0.643rem + 0.952vw, 1.5rem);
  line-height: 1.2;
  text-wrap: balance;
}
.site-header .site-branding {
  display: flex;
  align-items: flex-end;
}
.site-header .site-branding h1,
.site-header .site-branding p {
  margin-bottom: 0;
}
.site-header .site-branding .site-logo {
  width: 12rem;
  height: auto;
  transition: all 0.15s ease;
}
.site-header .site-branding a:focus img, .site-header .site-branding a:focus-visible img {
  outline: 2px dotted oklch(39.95% 0.1452 261.57deg);
  outline-offset: 2px;
}
.site-header.sticky-active {
  box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
}
@media screen and (width >= 62rem) {
  .site-header.sticky-active {
    height: 4rem;
  }
}
.site-header.sticky-active .site-branding .site-logo {
  width: 9rem;
}
.site-header.sticky-active .site-branding__localisation img {
  width: 1.75rem;
}
.admin-bar .site-header.sticky-active {
  top: 32px;
}

.hero {
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 0;
}

.breadcrumbs ol li.active {
  font-weight: bold;
}
.breadcrumbs ol li:not(:first-of-type) {
  padding-left: 0.25rem;
}

.site-footer {
  position: relative;
}
.site-footer .content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.site-footer .content > * {
  color: oklch(100% 0 0deg);
}
.site-footer .content__logo {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .site-footer .content__logo {
    grid-column: 1/3;
    margin-bottom: 0;
  }
}
.site-footer .content__logo img {
  max-width: 15rem;
  width: 100%;
  height: auto;
}
.site-footer .content__contact {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .site-footer .content__contact {
    grid-column: 4/10;
    margin-bottom: 0;
  }
}
.site-footer .content__contact .adresses {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer .content__contact .adresses__item {
  flex: 1;
  padding-left: 2rem;
}
.site-footer .content__contact .adresses__item h3 {
  position: relative;
}
.site-footer .content__contact .adresses__item h3::before {
  content: "";
  background: url("../img/pictos/pin.svg") no-repeat;
  background-size: cover !important;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: -2rem;
  top: 0;
}
.site-footer .content__social {
  grid-column: 1/-1;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (width >= 62rem) {
  .site-footer .content__social {
    grid-column: 10/13;
    margin-bottom: 1rem;
  }
}
.site-footer::after {
  content: "";
  background: oklch(58.2% 0.2236 27.55deg);
  position: absolute;
  width: 13rem;
  height: 4rem;
  top: -2rem;
  right: 15vw;
}
@media (width <= 48rem) {
  .site-footer::after {
    width: 7rem;
    height: 2rem;
    top: -1rem;
    right: 5vw;
  }
}

.btn {
  border-radius: 0;
  border: 1px solid;
  padding: 0.5rem 1rem;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  white-space: nowrap;
}
.btn.btn-outline {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(39.95% 0.1452 261.57deg);
  color: oklch(39.95% 0.1452 261.57deg);
}
.btn.btn-outline:hover {
  background-color: oklch(39.95% 0.1452 261.57deg);
  border-color: oklch(39.95% 0.1452 261.57deg);
  color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white {
  border-color: oklch(100% 0 0deg);
  color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white:hover {
  background-color: oklch(100% 0 0deg);
  color: oklch(39.95% 0.1452 261.57deg);
}
.btn.btn-full {
  background-color: oklch(100% 0 0deg);
  border-color: oklch(100% 0 0deg);
  color: oklch(39.95% 0.1452 261.57deg);
}
.btn.btn-full:hover {
  background-color: oklch(58.2% 0.2236 27.55deg);
  border-color: oklch(58.2% 0.2236 27.55deg);
}
.btn.btn-full.btn-picto {
  display: flex;
  align-items: center;
}
.btn.btn-full.btn-picto img {
  margin-right: 0.5rem;
}

.main-navigation {
  position: relative;
  background: #fff;
  z-index: 1;
}
.main-navigation .menu-toggle {
  display: block;
  background: oklch(58.2% 0.2236 27.55deg);
  border-radius: 5px;
  border: none;
  font-size: 1.25rem;
  padding: 0.25rem;
  z-index: 1001;
}
.main-navigation .menu-toggle:focus {
  outline: 2px solid black;
}
.main-navigation .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  z-index: 1000;
}
.main-navigation .site-nav > ul {
  display: block;
}
.main-navigation .site-nav > ul > li > a {
  font-family: "Poppins Bold", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.main-navigation .site-nav > ul > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.main-navigation .site-nav > ul > li > a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.main-navigation .site-nav > ul > li.current-menu-item a::after, .main-navigation .site-nav > ul > li.current-page-ancestor a::after {
  transform: scaleX(1);
}
@media screen and (width >= 48rem) {
  .admin-bar .main-navigation .site-nav {
    top: 32px;
  }
}
@media screen and (width < 48rem) {
  .admin-bar .main-navigation .site-nav {
    top: 46px;
  }
}
.main-navigation.is-open .site-nav {
  transform: translateX(0);
}
@media (min-width: 1200px) {
  .main-navigation .menu-toggle {
    display: none;
  }
  .main-navigation .site-nav {
    position: static;
    height: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    width: auto;
    background: transparent;
    box-shadow: none;
  }
  .main-navigation .site-nav > ul {
    display: flex;
    align-items: center;
  }
  .main-navigation .site-nav > ul li:not(:last-of-type) {
    margin-right: 2rem;
  }
}

.home .site-header {
  position: relative;
}
.home #logo {
  overflow: hidden;
}
.home #logo .content {
  display: grid;
  place-content: center;
}
.home #logo .content h1 {
  position: relative;
}
.home #logo .content h1::before {
  content: "";
  background: url("../img/pictos/carres-color-chiffres1.svg") no-repeat;
  background-size: cover !important;
  width: 6rem;
  height: 11rem;
  position: absolute;
  top: 1rem;
  left: -10rem;
}
@media (width <= 31.25rem) {
  .home #logo .content h1::before {
    width: 4rem;
    height: 7rem;
    left: -5rem;
  }
}
.home #logo .content h1::after {
  content: "";
  background: url("../img/pictos/carres-color-chiffres2.svg") no-repeat;
  background-size: cover !important;
  width: 6rem;
  height: 11rem;
  position: absolute;
  top: 2rem;
  right: -9rem;
}
@media (width <= 31.25rem) {
  .home #logo .content h1::after {
    width: 4rem;
    height: 7rem;
    right: -5rem;
  }
}
.home #logo .content img {
  width: clamp(15rem, 7.857rem + 19.048vw, 25rem);
}
.home #intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.home #intro .bg {
  background: oklch(39.95% 0.1452 261.57deg);
  grid-column: 1/-1;
  grid-row: 1;
  min-height: 10rem;
  position: relative;
  display: grid;
}
@media (width >= 75rem) {
  .home #intro .bg {
    grid-column: 3/13;
  }
}
.home #intro .bg::after {
  content: "";
  background: oklch(58.2% 0.2236 27.55deg);
  position: absolute;
  width: 13rem;
  height: 4rem;
  bottom: -2rem;
  left: 10rem;
}
@media (width <= 48rem) {
  .home #intro .bg::after {
    width: 7rem;
    height: 2rem;
    bottom: -1rem;
    left: 5rem;
  }
}
.home #intro .content {
  grid-column: 1/-1;
  grid-row: 1;
  padding: 3rem;
  z-index: 1;
  text-align: center;
}
.home #intro .content h2 {
  color: oklch(100% 0 0deg);
  font-size: clamp(1.25rem, 1.071rem + 0.476vw, 1.5rem);
}
.home #intro .content p {
  font-size: clamp(0.95rem, 0.879rem + 0.19vw, 1.05rem);
  font-weight: 500;
  text-wrap: balance;
  color: oklch(100% 0 0deg);
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .home #intro .content p {
    max-width: 60%;
    margin-inline: auto;
  }
}
@media (width >= 62rem) {
  .home #intro .content {
    grid-column: 3/11;
  }
}
@media (width <= 62rem) {
  .home #intro .content {
    padding: 4rem 1rem;
    grid-row: 1;
  }
}
.home #intro .cta {
  display: flex;
}
.home #intro .cta p {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
  font-weight: 600;
  text-wrap: balance;
  color: oklch(100% 0 0deg);
}
.home #video .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.home #video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home #cta .content p {
  font-size: 1.5rem;
  font-weight: bold;
}
.home #cta .content a {
  font-size: 1.25rem;
  font-weight: 600;
  border-width: 2px;
}
.home #cta .content img {
  margin: 0 auto 2rem;
}
@media (width >= 75rem) {
  .home #cta .content img {
    margin: 0 2rem 0;
  }
}

.editor h1 {
  text-align: center;
}
.editor h2 {
  color: oklch(58.2% 0.2236 27.55deg);
  font-size: 1.85rem;
  margin-top: 4rem;
}
.editor h3::before {
  content: "";
  background-color: oklch(58.2% 0.2236 27.55deg);
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  margin-right: 0.5rem;
}
.editor h2 + h3 {
  margin-top: 1rem;
}
.editor p + h2,
.editor p + h3,
.editor figure + h2,
.editor figure + h3,
.editor ul + h2,
.editor ul + h3 {
  margin-top: 4rem;
}
.editor p + figure {
  margin-top: 2rem;
}
.editor a {
  font-weight: bold;
  color: oklch(58.2% 0.2236 27.55deg);
  text-decoration: underline;
}
.editor a:hover {
  text-decoration: none;
}
.editor ul {
  list-style: disc;
  padding-left: 2rem;
}
.editor ul li::marker {
  color: oklch(58.2% 0.2236 27.55deg);
}
.editor figure img {
  border-radius: 15px;
}

.archive .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/*# sourceMappingURL=style.css.map */
