@charset "UTF-8";
/* ==================================================
   SECTION – Linobase
   ================================================== */
/* ---- Espacements ---- */
:root {
  --lb-color-primary: #360675;
  --lb-color-secondary: #5dbcb4;
  --lb-color-success: #28a745;
  --lb-color-danger: #dc3545;
  --lb-site-bg: #FFF;
  --lb-site-color: #212529;
  --lb-heading-color: #360675;
  --lb-heading-after-bg: #5dbcb4;
  --lb-nav-bg: #ffffff;
  --lb-nav-color: #212529;
  --lb-nav-link-color: #212529;
  --lb-nav-link-hover: #360675;
  --lb-header-bg: #ffffff;
  --lb-header-color: #212529;
  --lb-prefooter-bg: #e3e9ec;
  --lb-prefooter-color: #360675;
  --lb-footer-bg: #262626;
  --lb-footer-color: #ffffff;
  --lb-footer-link: #ffffff;
  --lb-footer-link-hover: #cccccc;
  --lb-card-bg: #ffffff;
  --lb-card-border: rgba(54, 6, 117, 0.1);
  --lb-content-bg: #ffffff;
  --lb-wrapper-bg: #f9f9f9;
  --lb-link-color: #360675;
  --lb-link-hover: rgb(27.1317073171, 3.0146341463, 58.7853658537);
  --bs-primary: var(--lb-color-primary);
  --bs-secondary: var(--lb-color-secondary);
  --bs-success: var(--lb-color-success);
  --bs-danger: var(--lb-color-danger);
  --bs-heading-color: var(--lb-heading-color);
  --bs-bg-opacity: 1;
}

.c-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 8rem);
}
.c-section__inner {
  position: relative;
  z-index: 2;
}
.c-section {
  /* Background (issu de Background Formatter) */
}
.c-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* indispensable : sinon hauteur 0 */
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-section {
  /* Overlay pour lisibilité quand il y a une image */
}
.c-section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(54, 6, 117, 0.35);
}
.c-section__content {
  /* lisibilité */
  color: #fff;
  /* effet "cartouche" léger pour confort de lecture */
  background-color: rgba(54, 6, 117, 0.25);
  padding: calc(1rem * 1.5);
  border-radius: 0.75rem;
}
.c-section {
  /* Quand pas de background : rendu normal */
}
.c-section--plain .c-section__content {
  color: #360675;
  background-color: transparent;
  padding: 0;
}

.c-section--bg .c-section__content {
  color: #fff;
}
.c-section--bg .c-section__content h1,
.c-section--bg .c-section__content h2,
.c-section--bg .c-section__content h3,
.c-section--bg .c-section__content h4,
.c-section--bg .c-section__content h5,
.c-section--bg .c-section__content h6 {
  color: #fff;
}
.c-section--bg .c-section__content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}