@charset "UTF-8";
/* ==================================================
   CTA / Buttons – Linobase
   Style inspiré CDO Travaux
   ================================================== */
/* ============================
   VARIABLES SCSS & CSS
   ============================ */
/* ---- Fonts ---- */
/* ---- Couleurs ---- */
/* ---- Typographie ---- */
/* ---- Espacements ---- */
/* ---- CKEditor / contenu éditorial ---- */
/* Groupe de CTA */
.c-cta-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(1rem * 1.25);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Bouton base */
.c-btn a, .c-btn button {
  color: inherit;
}
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(1rem * 0.85) calc(1rem * 1.75);
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
}
.c-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.c-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-btn:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(93, 188, 180, 0.35);
          box-shadow: 0 0 0 0.25rem rgba(93, 188, 180, 0.35);
}

/* ==================================================
   PRIMARY
   ================================================== */
.c-btn--primary {
  background-color: #360675;
  color: #fff;
  -webkit-box-shadow: 0 6px 16px rgba(54, 6, 117, 0.25);
          box-shadow: 0 6px 16px rgba(54, 6, 117, 0.25);
}
.c-btn--primary:hover {
  -webkit-box-shadow: 0 8px 20px rgba(54, 6, 117, 0.35);
          box-shadow: 0 8px 20px rgba(54, 6, 117, 0.35);
  background-color: #360675;
  color: #fff;
}

/* ==================================================
   SECONDARY
   ================================================== */
.c-btn--secondary {
  background-color: #fff;
  color: #360675;
  border-color: #5dbcb4;
}
.c-btn--secondary:hover {
  background-color: rgba(93, 188, 180, 0.12);
  -webkit-box-shadow: 0 6px 16px rgba(93, 188, 180, 0.25);
          box-shadow: 0 6px 16px rgba(93, 188, 180, 0.25);
}