@charset "UTF-8";
* {
  --primary: #7E54FF;
  --secondary: #9164FE;
  --tertiary: oklch(43.602% 0.14607 255.491deg);
  --quaternary: oklch(70.84% 0.096 76.72deg);
  --black: #000;
  --white: #fff;
  --info: #346cbf;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #D81B0D;
  --grey: #635a58;
  --gray-100: #f9f9f9;
  --gray-200: #F3F3F6;
  --gray-300: #e0e0e0;
  --gray-400: #999;
  --gray-500: #7a7a7a;
  --gray-700: #444;
  --gray-900: #1d1d1d;
}

/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Medium Screens */
/* XLarge Devices, Wide Screens */
/* XXLarge Devices, Wide Screens */
/* Layout de la page */
.post-type-archive-formations .btn--filter {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .post-type-archive-formations .btn--filter {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .post-type-archive-formations .archive-layout__left {
    padding-top: 53px;
  }
}

/* Entête de la page */
.formations__header .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (min-width: 992px) {
  .formations__header .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .formations__header .container {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.formations__header .container::before {
  content: "";
  display: none;
  position: absolute;
  z-index: 0;
  top: 180px;
  right: -116px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(125, 108, 248, 0.5) 0%, rgba(255, 255, 255, 0.5) 70%);
  opacity: 0.44;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .formations__header .container::before {
    display: block;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
  }
}
@media screen and (min-width: 1200px) {
  .formations__header .container::before {
    width: 385px;
    height: 385px;
  }
}
.formations__header-left {
  position: relative;
  z-index: 2;
}
.formations__header-right {
  position: relative;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 992px) {
  .formations__header-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .formations__header-right img {
    max-width: 396px;
  }
}
.formations__header-certifications {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.formations__header-certifications-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
}

/* Liste des formations */
.formations__list-header {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .formations__list-header {
    margin-bottom: 32px;
  }
}
.formations__list-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 620px) {
  .formations__list-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}
@media screen and (min-width: 992px) {
  .formations__list-posts {
    gap: 42px 20px;
  }
}
@media screen and (min-width: 1310px) {
  .formations__list-posts {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
  }
}

/* Vignettes formations */
.formation-card {
  display: flex;
  flex-direction: column;
  background-color: #F3F3F6;
  border-radius: 4px;
  padding: 14px;
}
.formation-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 276/154;
  margin-bottom: 18px;
}
.formation-card__body {
  flex-grow: 1;
  min-height: 116px;
}
.formation-card__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 14px 0 20px 0;
}
@media screen and (min-width: 992px) {
  .formation-card__title {
    font-size: 2rem;
  }
}
.formation-card__title a {
  color: #313131;
  text-decoration: none;
}
.formation-card__title a:hover {
  text-decoration: underline;
}
.formation-card__footer {
  border-top: 1px solid #DED8F3;
  padding-top: 20px;
}
.formation-card__footer .btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px 18px;
}

/* Bas de page (encarts) */
.formations__footer {
  margin-top: 48px;
  margin-bottom: 90px;
}
.formations__footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .formations__footer .container {
    gap: 24px;
  }
}

.card--formations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  background-color: #313131;
  color: #fff;
  border-radius: 4px;
  padding: 22px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .card--formations {
    grid-template-columns: 116px 1fr;
    gap: 20px;
    align-items: center;
    width: calc(50% - 14px);
  }
}
.card--formations a {
  color: #fff;
}
.card--formations .card__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(269.81deg, #C7C0F7 -5.84%, #A195F7 77.42%, #7D6CF8 114.88%);
  overflow: hidden;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .card--formations .card__img {
    width: 116px;
    height: 116px;
    padding: 13px;
  }
}
.card--formations .card__img img {
  position: relative;
  z-index: 2;
  max-width: 80%;
  max-height: 80%;
}
.card--formations .card__img::before, .card--formations .card__img::after {
  content: "";
  position: absolute;
}
.card--formations .card__img::before {
  z-index: 0;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: radial-gradient(ellipse at center, #c7c0f7 1%, #7d6cf8 100%, #f3f3f6 100%);
  border-radius: 50%;
}
.card--formations .card__img::after {
  z-index: 1;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  outline: 10px solid #313131;
  outline-offset: -10px;
}
.card--formations .card__body .badge {
  margin-bottom: 16px;
}

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