@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap);
@charset "UTF-8";
.site-footer {
  --footer-sep-gap: clamp(14px, 1.2vw, 22px);
  background: var(--color-blue);
  color: #fff;
  padding: 3.2rem 2.4rem 2.4rem;
  position: relative;
  z-index: 2;
  /* ----- Colonne marque ----- */
  /* ----- Colonne navigation ----- */
  /* ----- Colonne légale ----- */
  /* ----- Bas de page ----- */
  /* --------- Responsive --------- */
  /* Extra small devices (phones, 768px and down) */
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer a:hover {
  color: var(--color-coral);
}
.site-footer .footer-wrap {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.site-footer .col {
  min-width: 0;
}
.site-footer .col--brand {
  /* ==> plus petit */
  /* ==> légèrement réduit */
}
.site-footer .col--brand .brand-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.site-footer .col--brand .brand-logo {
  width: clamp(78px, 8vw, 108px); /* slightly bigger logo */
  height: auto;
  display: block;
}
.site-footer .col--brand .brand-text {
  line-height: 1.2;
}
.site-footer .col--brand .brand-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(16px, 1.2vw, 20px);
}
.site-footer .col--brand .brand-sub {
  margin: 0.15rem 0 0 0;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 18px);
}
.site-footer .col--brand .brand-sub::first-letter {
  text-transform: uppercase;
}
.site-footer .col--brand .brand-lead {
  margin: 0.9rem 0 1.4rem;
  opacity: 0.95;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.6;
}
.site-footer .col--brand .newsletter .newsletter-label {
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  font-size: clamp(13px, 0.95vw, 15px);
}
.site-footer .col--brand .newsletter .newsletter-input {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-footer .col--brand .newsletter .newsletter-input input {
  background: #fff;
  color: var(--color-ink, #111);
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  min-width: 260px;
  outline: none;
}
.site-footer .col--brand .socials {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.9rem;
}
.site-footer .col--brand .socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.site-footer .col--brand .socials a svg {
  width: 16px;
  height: 16px;
}
.site-footer .col--nav {
  display: grid;
  /* ==> rapproché du séparateur */
  padding-left: clamp(4px, 0.4vw, 8px);
  padding-right: var(--footer-sep-gap);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}
.site-footer .col--nav .link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  font-weight: 700;
  justify-self: end;
}
.site-footer .col--legal {
  padding-left: var(--footer-sep-gap);
}
.site-footer .col--legal .link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  font-weight: 700;
}
.site-footer .footer-bottom {
  width: var(--siteMaxWidth);
  margin: 1rem auto 0;
  display: flex;
  justify-content: flex-end;
}
.site-footer .copyright {
  margin: 0;
  opacity: 0.95;
  font-size: 1.4rem;
}
@media (max-width: 992px) {
  .site-footer .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
  }
  .site-footer .col--brand {
    grid-area: 1/1/2/3;
  }
  .site-footer .col--nav {
    grid-area: 2/1/3/3;
    border-right: 0;
    padding-right: 0;
    padding-left: 0;
    display: block;
  }
  .site-footer .col--nav .link-list {
    justify-self: center;
    margin: 0;
  }
  .site-footer .col--legal {
    padding-left: 0;
    grid-area: 1/2/2/3;
    text-align: center;
  }
  .site-footer .footer-bottom {
    justify-content: center;
    margin-top: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .site-footer .col--brand {
    grid-area: 1/1/2/2;
  }
  .site-footer .col--nav {
    grid-area: 2/1/3/2;
    text-align: center;
  }
  .site-footer .col--nav .link-list {
    justify-self: center;
  }
  .site-footer .col--legal {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 2.4rem 1.6rem 2rem;
  }
  .site-footer .col--brand .newsletter .newsletter-input input {
    min-width: 220px;
  }
}
.nav-bar-container {
  width: 100%;
  background-color: var(--color-blue);
  z-index: 2;
  position: relative;
}
.nav-bar-container .nav-bar {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  /* increase vertical padding further to make navbar taller */
  padding: 4rem 5rem 4rem 3rem;
  /* group items to edges (logo left, links right) */
  justify-content: space-between;
}
.nav-bar-container .nav-bar .nav-left {
  /* shrink to logo width on desktop */
  flex: 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: center;
}
.nav-bar-container .nav-bar .nav-left img {
  transition: all 0.33s ease-in-out;
  /* make logo a bit smaller on desktop */
  width: auto;
  max-width: 210px; /* slightly larger logo */
}
.nav-bar-container .nav-bar .nav-left img:hover {
  scale: 1.1;
}
.nav-bar-container .nav-bar ul.nav-right {
  flex: 3;
  z-index: 2;
  display: flex;
  align-items: center;
  /* cluster links toward the right */
  justify-content: flex-end;
  gap: 2.5rem;
  list-style: none;
  /* balanced spacing from logo */
  padding: 0 0 0 4rem;
  /* push group to right side */
  margin-left: auto;
  /* CONTACT button: green bg with white text; on hover invert */
}
.nav-bar-container .nav-bar ul.nav-right a {
  font-weight: 600;
  text-transform: none; /* lowercase */
}
.nav-bar-container .nav-bar ul.nav-right a:hover {
  color: var(--color-green);
}
.nav-bar-container .nav-bar ul.nav-right .has-submenu {
  position: relative;
  padding: 0 1rem;
}
.nav-bar-container .nav-bar ul.nav-right .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-bar-container .nav-bar ul.nav-right .has-submenu .submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-blue);
  border-radius: 8px;
  padding: 1.5rem 1rem 1.75rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 10;
}
.nav-bar-container .nav-bar ul.nav-right .has-submenu .submenu li a {
  color: #ffffff;
  padding: 0;
  white-space: nowrap;
}
.nav-bar-container .nav-bar ul.nav-right .has-submenu .submenu li a:hover {
  color: var(--color-green);
}
.nav-bar-container .nav-bar ul.nav-right .contact {
  background: var(--color-green) !important;
  color: #fff !important;
  border: 2px solid var(--color-green) !important;
  border-radius: 999px !important;
  padding: 1.25rem 2rem !important;
  font-weight: 700 !important;
  font-size: 2rem !important; /* slightly larger text */
  text-transform: none !important; /* do not force uppercase */
  letter-spacing: normal !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important;
}
.nav-bar-container .nav-bar ul.nav-right .contact:hover {
  background: #fff !important;
  color: var(--color-green) !important;
  border-color: var(--color-green) !important;
}

.mobile-nav-toggle {
  display: none;
}

/* Desktop fine-tuning */
@media only screen and (min-width: 993px) {
  /* Make nav link text same size as the contact button */
  .nav-bar-container .nav-bar ul.nav-right a {
    font-size: 2rem;
  }
  /* Slightly reduce button height and increase length on desktop */
  .nav-bar-container .nav-bar ul.nav-right .contact {
    padding: 1.2rem 2.6rem !important;
  }
}
/* overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.overlay.active {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* ---------- Breakpoints ---------- */
/* 1280px and down */
@media only screen and (max-width: 1280px) {
  .nav-bar-container .nav-bar {
    /* keep navbar taller on medium screens as well */
    padding: 4rem 0;
    width: 95%;
    margin: 0 auto 0 3rem;
  }
  .nav-bar-container .nav-bar .nav-left {
    margin: 0 3rem 0 0;
  }
  .nav-bar-container .nav-bar ul.nav-right {
    flex: 4;
    padding: 0;
    font-size: 1.5rem;
  }
  .nav-bar-container .nav-bar ul.nav-right button {
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
  }
}
/* 992px and down */
@media only screen and (max-width: 992px) {
  .nav-bar-container .nav-bar {
    width: 90%;
  }
  .nav-bar-container .nav-bar .nav-left {
    margin: 0 2rem 0 0;
  }
  .nav-bar-container .nav-bar ul.nav-right {
    font-size: 1.25rem;
    gap: 3rem;
    flex: 4;
  }
}
/* Mobile menu */
@media only screen and (max-width: 992px) {
  .mobile-nav-toggle {
    aspect-ratio: 1;
    background-color: transparent;
    display: block;
    position: fixed;
    right: 4rem;
    top: 2rem;
    width: 2rem;
    z-index: 104;
    padding: 0;
    border-radius: 0;
    color: #f79d85;
    font-size: 3.5rem;
  }
  .nav-bar-container {
    position: fixed;
    z-index: 103;
    inset: 0 0 0 30%;
    background-color: rgba(140, 179, 219, 0.3607843137);
    backdrop-filter: blur(1rem);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 3rem 0 0 3rem;
    width: auto;
  }
  .nav-bar-container.active {
    transform: translateX(0);
  }
  .nav-bar-container .nav-bar {
    display: flex;
    flex-direction: column;
  }
  .nav-bar-container .nav-bar .nav-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
    margin: 5rem 0 0 0;
    text-align: center;
  }
  .nav-bar-container .nav-bar .nav-left img {
    width: 80%;
    margin: auto;
  }
  .nav-bar-container .nav-bar ul.nav-right {
    flex: 4;
    flex-direction: column;
    gap: 5rem;
    justify-content: space-between;
    align-items: center;
    min-height: 50vh;
    margin-top: 2rem;
    font-size: 1.75rem;
  }
  .nav-bar-container .nav-bar ul.nav-right a {
    font-weight: 500;
  }
  .nav-bar-container .nav-bar ul.nav-right .has-submenu {
    padding: 0 1rem;
    text-align: center;
  }
  .nav-bar-container .nav-bar ul.nav-right .has-submenu .submenu {
    padding: 0.5rem 0;
    list-style: none;
    position: static;
    background: rgba(255, 255, 255, 0);
    border-radius: 8px;
    padding: 1.5rem 1rem 1.75rem;
    min-width: 180px;
    transition: all 0.25s ease;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-bar-container .nav-bar ul.nav-right .has-submenu .submenu li a {
    color: #ffffff;
    padding: 0;
    white-space: nowrap;
  }
  .nav-bar-container .nav-bar ul.nav-right .has-submenu .submenu li a:hover {
    color: #ffd700;
  }
  .nav-bar-container .nav-bar ul.nav-right button {
    font-size: 1.75rem;
    font-weight: 500;
    padding: 2.25rem;
  }
  .nav-bar-container .web-links {
    flex: 1;
    border-left: none;
    align-items: end;
    padding-bottom: 3rem;
  }
  .nav-bar-container .web-links li {
    font-size: 3rem;
  }
}
button {
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background-color: var(--color-coral);
  border: none;
  border-radius: 10rem;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
button:hover {
  background-color: var(--color-dark-blue);
}

/* Large devices (Monitors, 1440px and down) 
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) */
@media only screen and (max-width: var(--laptopScreenMax)) {
  button {
    font-size: 1.25rem;
    padding: 1rem;
  }
}
/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
}

/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: $phoneScreenMax) {
}

/* Tiny devices (phones, 389px and down) 
@media only screen and (max-width: $sphoneMax) {
} */
@charset "UTF-8";
#about-app {
  /* ===== SECTION: Ce qui nous rend uniques ===== */
  /* ===== Responsive ===== */
  /* ≤ 992px : 2 colonnes */
  /* ≤ 560px : 1 colonne */
}
#about-app section.about-section.uniques {
  background: #fff;
  position: relative;
  z-index: 0;
  padding: 4rem 0 5rem;
  /* GRID */
}
#about-app section.about-section.uniques .about {
  width: var(--siteMaxWidth);
  margin: 0 auto;
}
#about-app section.about-section.uniques .uniques-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  /* More space below the title */
  margin: 0 0 clamp(3.2rem, 5vw, 7rem);
  font-size: clamp(2.2rem, 1.2vw + 1.6rem, 3.2rem);
}
#about-app section.about-section.uniques .uniques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 6rem);
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
#about-app section.about-section.uniques .unique-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* conteneur fixe pour les icônes */
  /* Ajustements spécifiques */
}
#about-app section.about-section.uniques .unique-card .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px; /* hauteur commune */
  margin-bottom: 0.5rem;
}
#about-app section.about-section.uniques .unique-card img.icon {
  height: 100%;
  width: auto;
  max-height: 100px;
  display: block;
}
#about-app section.about-section.uniques .unique-card.reactivite img.icon {
  max-height: 85px; /* éclair un peu réduit */
}
#about-app section.about-section.uniques .unique-card.proximite img.icon {
  max-height: 85px; /* pin un peu réduit */
}
#about-app section.about-section.uniques .card-title {
  margin: 0.2rem 0 0.4rem;
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(1.6rem, 0.8vw + 1rem, 2.2rem);
}
#about-app section.about-section.uniques .card-title.blue {
  color: var(--color-blue);
}
#about-app section.about-section.uniques .card-title.coral {
  color: var(--color-coral);
}
#about-app section.about-section.uniques .card-title.green {
  color: var(--color-green);
}
#about-app section.about-section.uniques .card-sub {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.6;
  color: #111;
  opacity: 0.85;
  max-width: 32ch; /* largeur uniforme sous chaque titre */
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  #about-app section.about-section.uniques {
    padding: 3.2rem 0 4rem;
  }
  #about-app section.about-section.uniques .uniques-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
  }
}
@media (max-width: 560px) {
  #about-app section.about-section.uniques .uniques-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}
@charset "UTF-8";
#about-app section.landing-section {
  background: #fff;
  position: relative;
  z-index: 0;
  overflow: clip;
  /* Hero banner (matches home landing height) */
}
#about-app section.landing-section .about-hero {
  width: 100%;
  background: url(/build/images/hero.7e01fda1.jpg) no-repeat center center;
  background-size: cover;
  /* Match home hero vertical sizing via paddings */
  padding-top: clamp(200px, 18vw, 320px);
  padding-bottom: clamp(160px, 12vw, 280px);
}
#about-app section.landing-section .landing {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  padding: 4rem 0 6rem;
  /* Title */
  /* Intro block */
  /* "A propos" */
  /* Two-column about area */
}
#about-app section.landing-section .landing .page-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2.8rem;
  font-size: clamp(2.6rem, 1.5vw + 1.6rem, 3.6rem);
}
#about-app section.landing-section .landing .intro {
  display: block;
  margin-bottom: 6rem;
}
#about-app section.landing-section .landing .intro .intro-text {
  max-width: 920px; /* left text width like screenshot */
  margin: 0; /* flush left inside container */
}
#about-app section.landing-section .landing .intro .intro-text p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
#about-app section.landing-section .landing .intro .intro-text p strong {
  font-weight: 800;
}
#about-app section.landing-section .landing .section-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6rem 0 3rem;
  font-size: clamp(2.2rem, 1.2vw + 1.4rem, 3rem);
}
#about-app section.landing-section .landing .about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* more space for text */
  gap: 6rem;
  align-items: start;
  /* Tag cloud on the right */
}
#about-app section.landing-section .landing .about-grid .about-text p,
#about-app section.landing-section .landing .about-grid .about-text .about-lead {
  font-size: 1.6rem;
  line-height: 1.7;
}
#about-app section.landing-section .landing .about-grid .about-text .about-lead {
  margin: 0 0 2.2rem;
}
#about-app section.landing-section .landing .about-grid .about-text p {
  margin: 0 0 1.2rem;
}
#about-app section.landing-section .landing .about-grid .tag-cloud {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 340px; /* gives room for scattered layout */
  /* Positions (roughly match screenshot layout) */
  /* Colors (soft/pastel like the screenshot) */
  /* Fallback if color-mix unsupported */
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag {
  position: absolute;
  font-weight: 700;
  font-size: clamp(1.4rem, 0.9vw + 1rem, 1.8rem);
  opacity: 0.9;
  white-space: nowrap;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(1) {
  top: 0;
  right: 2%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(2) {
  top: 60px;
  left: 6%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(3) {
  top: 140px;
  left: 32%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(4) {
  top: 110px;
  right: 20%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(5) {
  top: 200px;
  left: 8%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(6) {
  top: 230px;
  right: 4%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(7) {
  bottom: 0;
  right: 10%;
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag-green {
  color: color-mix(in oklab, var(--color-green) 65%, #000 0%);
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag-coral {
  color: color-mix(in oklab, var(--color-coral) 75%, #000 0%);
}
#about-app section.landing-section .landing .about-grid .tag-cloud .tag-blue {
  color: color-mix(in oklab, var(--color-blue) 70%, #000 0%);
}
@supports not (color: color-mix(in oklab, red, blue)) {
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag-green {
    color: #9dd6ae;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag-coral {
    color: #f5a38f;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag-blue {
    color: #9bb6e6;
  }
}

/* =================== Responsive =================== */
/* ≤ 1280px */
@media only screen and (max-width: 1280px) {
  #about-app section.landing-section .landing .about-grid {
    gap: 4rem;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud {
    min-height: 300px;
  }
}
/* ≤ 992px (tablets) */
@media only screen and (max-width: 992px) {
  #about-app section.landing-section .landing .intro .intro-text {
    max-width: 100%;
  }
  #about-app section.landing-section .landing .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud {
    min-height: 260px;
    margin-top: 1rem;
    /* Tweak tag positions for a narrower column */
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(1) {
    top: 0;
    right: 4%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(2) {
    top: 52px;
    left: 4%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(3) {
    top: 120px;
    left: 36%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(4) {
    top: 100px;
    right: 8%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(5) {
    top: 180px;
    left: 6%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(6) {
    top: 200px;
    right: 4%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(7) {
    bottom: 0;
    right: 14%;
  }
}
/* ≤ 460px (phones) */
@media only screen and (max-width: 460px) {
  #about-app section.landing-section .landing {
    padding: 3rem 0 4rem;
  }
  #about-app section.landing-section .landing .page-title {
    margin-bottom: 2.2rem;
  }
  #about-app section.landing-section .landing .section-title {
    margin: 4rem 0 2rem;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud {
    min-height: 220px;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag {
    font-size: 1.4rem;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(3) {
    top: 110px;
    left: 28%;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(6) {
    top: 155px;
  }
  #about-app section.landing-section .landing .about-grid .tag-cloud .tag:nth-child(7) {
    right: 6%;
  }
}
#about-app {
  /* ===== Responsive: turns vertical ===== */
}
#about-app section.storytelling-section {
  position: relative;
  z-index: 0;
  padding: 8rem 0 8rem 0;
  /* ===== Horizontal timeline ===== */
  /* grid of N columns */
}
#about-app section.storytelling-section .storytelling {
  width: var(--siteMaxWidth);
  margin: 0 auto;
}
#about-app section.storytelling-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}
#about-app section.storytelling-section .title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8rem;
  font-size: clamp(2.4rem, 1.4vw + 1.6rem, 3.2rem);
}
#about-app section.storytelling-section .timeline {
  position: relative;
  padding: 7rem 0; /* big buffer so text never touches line */
  /* coral line centered vertically */
}
#about-app section.storytelling-section .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--color-coral, #f79d85);
  transform: translateY(-50%);
}
#about-app section.storytelling-section .items {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  position: relative;
}
#about-app section.storytelling-section .item {
  position: relative;
  text-align: left;
  --y: 0px; /* per-item vertical nudge (set via inline style) */
  /* dot sits on the center line */
  /* text block (date + desc) */
  /* keep clear space from the line */
}
#about-app section.storytelling-section .item .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.03);
}
#about-app section.storytelling-section .item .dot.coral {
  background: #f79d85;
}
#about-app section.storytelling-section .item .dot.blue {
  background: #8cb3db;
}
#about-app section.storytelling-section .item .dot.green {
  background: #a5d0a8;
}
#about-app section.storytelling-section .item .block {
  max-width: 32ch; /* a bit narrower -> better flow */
  font-size: clamp(1.32rem, 0.6vw + 1rem, 1.45rem); /* smaller for desktop fit */
  line-height: 1.62;
  transform: translateY(var(--y)); /* <-- per-item vertical nudge */
}
#about-app section.storytelling-section .item .date {
  font-weight: 800;
  margin-bottom: 0.45rem;
  font-size: clamp(1.5rem, 0.7vw + 1rem, 1.7rem); /* smaller date too */
}
#about-app section.storytelling-section .item.top .block {
  padding-bottom: 4rem; /* space down to the line */
}
#about-app section.storytelling-section .item.bottom .block {
  padding-top: 3.2rem; /* space up to the line */
}
@media (max-width: 980px) {
  #about-app section.storytelling-section .timeline {
    padding: 0 0 0 2.4rem;
  }
  #about-app section.storytelling-section .timeline::before {
    left: 1.1rem;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    transform: none; /* vertical line */
  }
  #about-app section.storytelling-section .items {
    display: block;
  }
  #about-app section.storytelling-section .item {
    margin: 2rem 0 2.6rem;
    padding-left: 2.4rem;
    --y: 0px; /* ignore custom nudges on mobile */
  }
  #about-app section.storytelling-section .item .dot {
    left: 1.1rem;
    top: 0.2rem;
    transform: translate(-50%, 0);
  }
  #about-app section.storytelling-section .item .block {
    max-width: 48ch;
    font-size: 1.45rem;
    line-height: 1.58;
    padding: 0;
    transform: none;
  }
  #about-app section.storytelling-section .item::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 0.9rem;
    width: 1.2rem;
    height: 2px;
    background: var(--color-coral, #f79d85);
  }
}
@media (max-width: 560px) {
  #about-app section.storytelling-section .item .block {
    max-width: 42ch;
    font-size: 1.4rem;
    line-height: 1.55;
  }
}
@charset "UTF-8";
#about-app {
  /* ===== Team grid ===== */
  /* ===== Modal ===== */
  /* ===== Responsive ===== */
}
#about-app section.team-section {
  position: relative;
  z-index: 0;
  padding: 5rem 0 0;
}
#about-app section.team-section .team {
  width: var(--siteMaxWidth);
  margin: 0 auto;
}
#about-app section.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}
#about-app section.team-section .members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  margin: 5rem 0;
  --drop-shadow: drop-shadow(-7px -7px 0px var(--color-blue));
}
#about-app section.team-section .members .member-card {
  text-align: center;
  padding: 2rem 0;
  cursor: pointer;
  outline: none;
}
#about-app section.team-section .members .member-card:hover img {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#about-app section.team-section .members .member-card img {
  margin: auto;
  filter: var(--drop-shadow);
  border-radius: 10px;
  width: 80%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
#about-app section.team-section .members .member-card h3 {
  margin: 2rem 0 0.6rem;
}
#about-app section.team-section .members .member-card:nth-child(2), #about-app section.team-section .members .member-card:nth-child(4), #about-app section.team-section .members .member-card:nth-child(6) {
  --drop-shadow: drop-shadow(
      -7px -7px 0px var(--color-green)
  );
}
#about-app section.team-section .members .member-card:nth-child(3), #about-app section.team-section .members .member-card:nth-child(5), #about-app section.team-section .members .member-card:nth-child(7) {
  --drop-shadow: drop-shadow(
      -7px -7px 0px var(--color-coral)
  );
}
#about-app section.team-section .members .member-card:focus-visible figcaption h3 {
  box-shadow: 0 0 0 3px rgba(140, 179, 219, 0.35);
  border-radius: 6px;
  display: inline-block;
  padding: 2px 6px;
}
#about-app .member-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  /* Centered X button */
  /* Modal portrait inside right column */
}
#about-app .member-modal .modal-card {
  background: #fff;
  width: min(1000px, 92vw);
  max-height: 88vh;
  overflow: auto;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  padding: 2.4rem 2.8rem 2.6rem;
  position: relative;
}
#about-app .member-modal .modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e3e8ef;
  background: #fff;
  display: inline-flex;
  align-items: center; /* centers the × vertically */
  justify-content: center; /* centers the × horizontally */
  font-size: 22px;
  line-height: 1; /* avoid vertical offset */
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  color: var(--color-coral);
  border-color: var(--color-coral);
}
#about-app .member-modal .modal-close:hover {
  background: var(--color-coral);
  color: #fff;
  border-color: var(--color-coral);
}
#about-app .member-modal .modal-header {
  margin-bottom: 1.6rem;
}
#about-app .member-modal .modal-header .name {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 800;
}
#about-app .member-modal .modal-header .role {
  margin: 0.2rem 0 0;
  opacity: 0.8;
}
#about-app .member-modal .modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}
#about-app .member-modal .modal-photo {
  text-align: center;
  margin: 0 0 1.2rem;
}
#about-app .member-modal .modal-photo img {
  width: min(360px, 100%);
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(-7px -7px 0px var(--color-blue));
}
#about-app .member-modal .block {
  margin-bottom: 2.2rem;
}
#about-app .member-modal .block-title {
  font-weight: 800;
  font-size: 1.9rem;
  margin: 0 0 1.2rem;
}
#about-app .member-modal .block-title.green {
  color: var(--color-green);
}
#about-app .member-modal .dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#about-app .member-modal .dot-list li {
  position: relative;
  padding-left: 1.8rem;
  margin: 0.65rem 0;
  line-height: 1.5;
}
#about-app .member-modal .dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  opacity: 0.35;
}
#about-app .member-modal .bio p {
  margin: 0 0 0.6rem;
  line-height: 1.6;
}
#about-app .member-modal .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 2rem;
  margin-top: 0.6rem;
}
#about-app .member-modal .skill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#about-app .member-modal .skill .label {
  white-space: nowrap;
}
#about-app .member-modal .skill .bars {
  display: inline-flex;
  gap: 0.6rem;
}
#about-app .member-modal .skill .bars .box {
  width: 18px;
  height: 18px;
  border: 1px solid #3b2222;
  background: transparent;
}
#about-app .member-modal .skill .bars .box.filled {
  background: #5a2b2b;
}
@media (max-width: 992px) {
  #about-app section.team-section .members {
    grid-template-columns: repeat(2, 1fr);
  }
  #about-app .member-modal .modal-grid {
    grid-template-columns: 1fr;
  }
  #about-app .member-modal .skills-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 460px) {
  #about-app section.team-section .members {
    grid-template-columns: 1fr;
  }
  #about-app .member-modal .modal-card {
    width: 94vw;
    padding: 2rem;
    max-height: 75vh;
  }
}
#bellaConnection-app section.landing-section {
  background-color: white;
  z-index: 0;
  margin-block: 5rem;
}
#bellaConnection-app section.landing-section .left-circle {
  width: 75%;
  aspect-ratio: 1/1;
  clip-path: circle(28% at 50% 50%);
  position: absolute;
  top: -10%;
  left: -35%;
  z-index: 1;
  background-color: var(--color-blue);
  opacity: 0.2;
}
#bellaConnection-app section.landing-section .landing-content {
  display: flex;
  justify-items: center;
  align-items: center;
  width: var(--siteMaxWidth);
  margin: auto;
  min-height: 70vh;
}
#bellaConnection-app section.landing-section .landing-content .blue {
  color: var(--color-blue);
}
#bellaConnection-app section.landing-section .landing-content .section-title {
  width: 50%;
}
#bellaConnection-app section.landing-section .landing-content .section-title h2 {
  margin: 0 0 0 5rem;
  font-size: 7.5rem;
}
#bellaConnection-app section.landing-section .landing-content .content {
  width: 50%;
}
#bellaConnection-app section.landing-section .landing-content .content h3 {
  font-size: 3.5rem;
  font-weight: 700;
}
#bellaConnection-app section.landing-section .landing-content .content p {
  margin: 0 0 2rem 0;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  */
@media only screen and (max-width: 1440px) {
  #bellaConnection-app section.landing-section .landing-content .section-title h2 {
    margin: 0;
    font-size: 6.5rem;
  }
}
/* Medium devices (Laptop, 1280px and down) */
@media only screen and (max-width: 1280px) {
  #bellaConnection-app section.landing-section {
    background-color: white;
    z-index: 0;
    margin-block: 5rem;
  }
  #bellaConnection-app section.landing-section .landing-content .section-title h2 {
    margin: 0;
    font-size: 6rem;
  }
}
/* Small devices (tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  #bellaConnection-app section.landing-section .landing-content {
    display: block;
    min-height: 50vh;
  }
  #bellaConnection-app section.landing-section .landing-content .section-title {
    width: 100%;
  }
  #bellaConnection-app section.landing-section .landing-content .section-title h2 {
    text-align: center;
  }
  #bellaConnection-app section.landing-section .landing-content .content {
    width: 80%;
    margin: auto;
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #bellaConnection-app section.landing-section .landing-content .section-title h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
  }
  #bellaConnection-app section.landing-section .landing-content .section-title h2:first-of-type {
    margin-bottom: 0rem;
    margin-top: 2rem;
  }
  #bellaConnection-app section.landing-section .landing-content .content h3 {
    font-size: 2.5rem;
  }
  #bellaConnection-app section.landing-section .landing-content .content p {
    text-align: justify;
  }
}
#event-app section.partenaire-section {
  background-color: white;
  z-index: 0;
}
#event-app section.partenaire-section .right-circle {
  width: 70%;
  aspect-ratio: 1/1;
  clip-path: circle(38% at 96% 38%);
  position: absolute;
  top: 85%;
  right: 0%;
  z-index: 0;
  background-color: var(--color-green);
  opacity: 0.2;
}
#event-app section.partenaire-section h3.section-title {
  text-align: center;
  font-size: 2.5rem;
}
#event-app section.partenaire-section h3.section-title .green {
  color: var(--color-green);
}
#event-app section.partenaire-section .gallerie-partenaire {
  position: relative;
  z-index: 20;
  width: 80%;
  margin: 10rem auto;
}
#event-app section.partenaire-section .gallerie-partenaire .slick-prev:before,
#event-app section.partenaire-section .gallerie-partenaire .slick-next:before {
  opacity: 0;
}
#event-app section.partenaire-section .gallerie-partenaire .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
#event-app section.partenaire-section .gallerie-partenaire .slick-track .partenaire {
  height: 100%;
  margin-bottom: 5rem;
}
#event-app section.partenaire-section .gallerie-partenaire .slick-track .partenaire img {
  margin: auto;
  width: 35%;
}
#event-app section.partenaire-section .gallerie-partenaire .slick-track .slick-slide[data-index="3"] .partenaire img {
  width: 50%;
}
#event-app section.partenaire-section .event-content {
  display: flex;
  justify-items: center;
  align-items: center;
  width: var(--siteMaxWidth);
  margin: 9rem auto;
}
#event-app section.partenaire-section .event-content .event-image {
  width: 50%;
  text-align: center;
}
#event-app section.partenaire-section .event-content .event-image img {
  width: 50%;
  border-radius: 15px;
}
#event-app section.partenaire-section .event-content .event-text {
  width: 50%;
}
#event-app section.partenaire-section .event-content .event-text h3 {
  font-size: 2rem;
  font-weight: 700;
}
#event-app section.partenaire-section .event-content .event-text p {
  margin: 0 0 2rem 0;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #event-app section.partenaire-section .event-content {
    display: block;
  }
  #event-app section.partenaire-section .event-content .event-image {
    width: 100%;
    margin-bottom: 5rem;
  }
  #event-app section.partenaire-section .event-content .event-image img {
    width: 40%;
  }
  #event-app section.partenaire-section .event-content .event-text {
    width: 100%;
  }
  #event-app section.partenaire-section .event-content .event-text h3 {
    text-align: center;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.partenaire-section h3.section-title {
    width: 90%;
    margin: auto;
  }
  #event-app section.partenaire-section .gallerie-partenaire {
    margin: 5rem auto;
    width: 60%;
  }
  #event-app section.partenaire-section .gallerie-partenaire .slick-prev {
    left: -70px;
  }
  #event-app section.partenaire-section .gallerie-partenaire .slick-next {
    top: 76px;
  }
  #event-app section.partenaire-section .event-content .event-text p {
    text-align: justify;
  }
}
#event-app section.programme-section {
  z-index: 1;
  position: relative;
  margin-block: 10rem;
}
#event-app section.programme-section .left-circle {
  width: 56%;
  aspect-ratio: 1/1;
  clip-path: circle(38% at 62% 54%);
  position: absolute;
  top: -30%;
  left: -15%;
  z-index: 0;
  background-color: var(--color-coral);
  opacity: 0.2;
}
#event-app section.programme-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
#event-app section.programme-section h3 .orange {
  color: var(--color-coral);
}
#event-app section.programme-section .programme-info {
  width: 70%;
  max-width: 900px;
  margin: 5rem auto;
  background-color: var(--color-blue);
  padding: 4rem 0;
  border-radius: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 3;
}
#event-app section.programme-section .programme-info p {
  margin: 0 0 1rem 0;
  font-weight: 700;
}
#event-app section.programme-section .programme-info p.white {
  color: white;
  margin-bottom: 0rem;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
}

/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.programme-section h3 {
    width: 90%;
    margin: auto;
  }
  #event-app section.programme-section .programme-info {
    width: 90%;
    padding: 2rem 0;
    border-radius: 1.5rem;
  }
}
#event-app section.summary-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
#event-app section.summary-section h3 .orange {
  color: var(--color-coral);
}
#event-app section.summary-section .summary-content {
  display: flex;
  justify-items: center;
  align-items: center;
  width: var(--siteMaxWidth);
  margin: 9rem auto;
}
#event-app section.summary-section .summary-content .summary-image {
  width: 55%;
  text-align: end;
}
#event-app section.summary-section .summary-content .summary-image img {
  width: 80%;
  margin: 0 0 0 auto;
  border-radius: 15px;
  filter: drop-shadow(20px -20px 0px var(--color-green));
}
#event-app section.summary-section .summary-content .summary-text {
  width: 45%;
}
#event-app section.summary-section .summary-content .summary-text h3 {
  font-size: 2rem;
  font-weight: 700;
}
#event-app section.summary-section .summary-content .summary-text p {
  margin: 0 0 2rem 0;
}
#event-app section.summary-section .summary-content .summary-text ul li {
  display: flex;
  justify-items: center;
  align-items: center;
  margin: 0 0 1rem 0;
}
#event-app section.summary-section .summary-content .summary-text ul li img {
  width: 50px;
  height: auto;
  margin-right: 2rem;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #event-app section.summary-section .summary-content {
    display: block;
  }
  #event-app section.summary-section .summary-content .summary-text {
    width: 100%;
  }
  #event-app section.summary-section .summary-content .summary-image {
    width: 100%;
    text-align: center;
    margin-top: 5rem;
  }
  #event-app section.summary-section .summary-content .summary-image img {
    width: 55%;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.summary-section .summary-content {
    margin: 5rem auto;
  }
  #event-app section.summary-section .summary-content .summary-image img {
    width: 80%;
  }
  #event-app section.summary-section .summary-content .summary-text p {
    text-align: justify;
  }
}
#bellaConnectionII-app section.description-section {
  margin: 60px auto;
  max-width: var(--siteMaxWidth);
  /* Elegant, responsive programme timeline */
}
#bellaConnectionII-app section.description-section h2 {
  font-size: 50px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}
#bellaConnectionII-app section.description-section .description-summary {
  display: grid;
  grid-template-columns: 5fr 2fr;
  grid-gap: 20px;
  align-items: center;
  margin-block: 50px 50px; /* add more space before the programme title */
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-text .description-summary-button a button {
  color: white;
  padding: 0.75rem 3rem;
  margin-top: 20px;
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-text .description-summary-button a button.primary-cta {
  /* Make the first CTA more prominent */
  background-image: linear-gradient(135deg, var(--color-coral), var(--color-blue));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(247, 157, 133, 0.5);
  border-radius: 999px;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: 2.6rem; /* requested size for first Billetterie button */
  letter-spacing: 0.02em;
  position: relative;
  isolation: isolate;
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-text .description-summary-button a button.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 0 0 8px rgba(247, 157, 133, 0.18);
  background-image: linear-gradient(135deg, var(--color-dark-blue), var(--color-coral));
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-text .description-summary-button a button.primary-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(58, 101, 143, 0.35);
}
#bellaConnectionII-app section.description-section .description-summary a {
  color: var(--color-blue);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#bellaConnectionII-app section.description-section .description-summary a:hover {
  color: var(--color-coral);
  text-decoration: underline;
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-details {
  padding-inline: 0;
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-details a {
  color: var(--color-coral);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-details a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}
#bellaConnectionII-app section.description-section .description-summary .description-summary-details li:nth-child(3) {
  margin-bottom: 15px;
}
#bellaConnectionII-app section.description-section h3 {
  font-size: 28px;
}
#bellaConnectionII-app section.description-section .programme-timeline {
  margin: 30px 0 10px;
}
#bellaConnectionII-app section.description-section .programme-timeline h4 {
  font-size: 22px;
  margin: 0 0 16px 0;
}
#bellaConnectionII-app section.description-section .programme-timeline .timeline {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}
#bellaConnectionII-app section.description-section .programme-timeline .timeline li {
  position: relative;
  padding: 14px 0 14px 14px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  column-gap: 20px;
}
#bellaConnectionII-app section.description-section .programme-timeline .timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-blue));
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(247, 157, 133, 0.25);
}
#bellaConnectionII-app section.description-section .programme-timeline .timeline .slot {
  font-weight: 600;
  color: var(--color-dark-blue);
  white-space: nowrap;
}
#bellaConnectionII-app section.description-section .programme-timeline .timeline .detail {
  color: #222;
}
#bellaConnectionII-app section.description-section .description-content {
  display: grid;
  grid-template-columns: 5fr 2fr;
  grid-gap: 20px;
  align-items: center;
  margin-block: 50px;
}
#bellaConnectionII-app section.description-section .description-content .description-content-text div {
  margin-bottom: 20px;
}
#bellaConnectionII-app section.description-section .description-content .description-content-text a {
  color: var(--color-blue);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#bellaConnectionII-app section.description-section .description-content .description-content-text a:hover {
  color: var(--color-coral);
  text-decoration: underline;
}
#bellaConnectionII-app section.description-section .description-content .description-content-text div:not(:nth-child(2)) a:nth-child(1) {
  color: var(--color-coral);
}
#bellaConnectionII-app section.description-section .description-content .description-content-text div:not(:nth-child(2)) a:nth-child(1):hover {
  color: var(--color-blue);
  text-decoration: underline;
}
#bellaConnectionII-app section.description-section .description-content .description-content-text div:not(:nth-child(2)) a:nth-child(2) {
  color: var(--color-green);
}
#bellaConnectionII-app section.description-section .description-content .description-content-text div:not(:nth-child(2)) a:nth-child(2):hover {
  color: var(--color-dark-blue);
  text-decoration: underline;
}
#bellaConnectionII-app section.description-section .description-content .description-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
#bellaConnectionII-app section.description-section .description-content .description-content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
  /* Decorative frame (orange) */
  border: 2px solid #ffd2c7;
  box-shadow: 10px 10px 0 var(--color-coral);
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #bellaConnectionII-app {

    }
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
    #bellaConnectionII-app {

    }
}

/* Small devices (tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  #bellaConnectionII-app section.description-section {
    margin: 30px auto;
  }
  #bellaConnectionII-app section.description-section h2 {
    font-size: 45px;
  }
  #bellaConnectionII-app section.description-section .description-summary {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 40px;
  }
  #bellaConnectionII-app section.description-section .description-summary .description-summary-text .description-summary-button {
    text-align: center;
  }
  #bellaConnectionII-app section.description-section h3 {
    font-size: 24px;
  }
  #bellaConnectionII-app section.description-section .programme-timeline .timeline {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
  #bellaConnectionII-app section.description-section .programme-timeline .timeline li {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding-left: 0;
  }
  #bellaConnectionII-app section.description-section .programme-timeline .timeline li::before {
    left: -9999px; /* hide dot on mobile to simplify */
  }
  #bellaConnectionII-app section.description-section .programme-timeline .timeline .slot {
    white-space: normal;
    color: #333;
  }
  #bellaConnectionII-app section.description-section .description-content {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) 
@media only screen and (max-width: 460px) {
    #bellaConnectionII-app {
    }
}*/
#bellaConnectionII-app h2 {
  font-size: 50px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 50px;
}
#bellaConnectionII-app section.first-edition-section {
  background-image: url("/build/images/first%20edition%20edited.9526e0d0.jpg");
  background-size: cover;
  background-position: center;
  min-height: 243px;
  margin: 50px 85px;
  padding: 55px 75px;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
#bellaConnectionII-app section.first-edition-section .first-edition-content {
  color: #ffffff;
  font-weight: 700;
}
#bellaConnectionII-app section.first-edition-section .first-edition-button {
  align-self: flex-end;
  text-align: end;
}
#bellaConnectionII-app section.first-edition-section .first-edition-button button {
  padding: 9px 30px;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down) 
@media only screen and (max-width: 992px) {
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #bellaConnectionII-app section.first-edition-section {
    margin: 50px 20px;
    padding: 30px;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #bellaConnectionII-app section.first-edition-section {
    margin: 50px 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  #bellaConnectionII-app section.first-edition-section .first-edition-button {
    align-self: center;
    text-align: center;
  }
}
#bellaConnectionII-app section.hero-section {
  background-image: url(/build/images/landing.f72b2193.jpg);
  background-size: cover;
  background-position: center bottom;
  /* Match home landing vertical presence */
  min-height: clamp(360px, 30vw, 600px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
#bellaConnectionII-app section.hero-section h1 {
  font-size: 68px;
  font-weight: 700;
}
#bellaConnectionII-app section.hero-section h2 {
  margin-top: 50px;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #bellaConnectionII-app {

    }
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
    #bellaConnectionII-app {

    }
}

/* Small devices (tablets, 992px and down)*/
@media only screen and (max-width: 992px) {
  #bellaConnectionII-app section.hero-section h1 {
    font-size: 55px;
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #bellaConnectionII-app section.hero-section h1 {
    font-size: 42px;
    width: 90%;
    margin: auto;
  }
}
#bellaConnectionII-app section.partenaires-section {
  margin-bottom: 100px;
}
#bellaConnectionII-app section.partenaires-section h4 {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
}
#bellaConnectionII-app section.partenaires-section .gallerie-partenaire {
  position: relative;
  z-index: 20;
  width: 80%;
  margin: 10rem auto;
}
#bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-prev:before,
#bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-next:before {
  opacity: 0;
}
#bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Remove special width overrides so all logos share consistent sizing */
}
#bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire {
  height: 100%;
  margin-bottom: 5rem;
}
#bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img {
  margin: auto;
  width: 70%;
}
#bellaConnectionII-app section.partenaires-section h3 {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 50px;
}
#bellaConnectionII-app section.partenaires-section .partenaires-ticket-button {
  text-align: center;
  /* Make the Billetterie button match the primary CTA gradient */
}
#bellaConnectionII-app section.partenaires-section .partenaires-ticket-button a {
  margin-inline: 50px;
}
#bellaConnectionII-app section.partenaires-section .partenaires-ticket-button a button {
  color: white;
  font-size: 30px;
  padding: 0.75rem 3rem;
  margin-block: 0px 30px;
  border-radius: 999px;
}
#bellaConnectionII-app section.partenaires-section .partenaires-ticket-button a:first-child button {
  background-image: linear-gradient(135deg, var(--color-coral), var(--color-blue));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(247, 157, 133, 0.5);
}
#bellaConnectionII-app section.partenaires-section .partenaires-ticket-button a:first-child button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 0 0 8px rgba(247, 157, 133, 0.18);
  background-image: linear-gradient(135deg, var(--color-dark-blue), var(--color-coral));
}
#bellaConnectionII-app section.partenaires-section .partenaires-content {
  max-width: var(--siteMaxWidth);
  margin: auto;
}
#bellaConnectionII-app section.partenaires-section .partenaires-content a {
  color: var(--color-coral);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#bellaConnectionII-app section.partenaires-section .partenaires-content a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}
#bellaConnectionII-app section.partenaires-section .partenaires-content div {
  max-width: 790px;
  margin-bottom: 20px;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  #bellaConnectionII-app section.partenaires-section {
    margin-bottom: 35px;
  }
  #bellaConnectionII-app section.partenaires-section h3 {
    font-size: 35px;
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
    #bellaConnectionII-app {
        section.partenaires-section {
        }
    }
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #bellaConnectionII-app section.partenaires-section h3 {
    font-size: 27px;
  }
  #bellaConnectionII-app section.partenaires-section .gallerie-partenaire {
    margin: 5rem auto;
    width: 60%;
  }
  #bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-prev {
    left: -70px;
  }
  #bellaConnectionII-app section.partenaires-section .gallerie-partenaire .slick-next {
    top: 125px;
  }
}
#bellaConnectionTirages-app section.hero-section {
  background-image: url(/build/images/hero.e35fa80d.jpg);
  background-size: cover;
  background-position: center;
  /* Match home landing vertical presence */
  min-height: clamp(360px, 30vw, 600px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
#bellaConnectionTirages-app section.hero-section h1 {
  font-size: 68px;
  font-weight: 700;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #bellaConnectionII-app {

    }
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
    #bellaConnectionII-app {

    }
}

/* Small devices (tablets, 992px and down)*/
@media only screen and (max-width: 992px) {
  /* Keep typography tweak only; height handled by clamp above */
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  /* Keep typography tweak only; height handled by clamp above */
}
#bellaConnectionTirages-app section.partenaires-section {
  margin-bottom: 100px;
}
#bellaConnectionTirages-app section.partenaires-section h4 {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire {
  position: relative;
  z-index: 20;
  width: 80%;
  margin: 10rem auto;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-prev:before,
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-next:before {
  opacity: 0;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-bottom: 3rem;
  padding: 10px 12px;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img {
  display: block;
  margin: 0 auto;
  max-height: 130px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img[src*=FLUOSPORT] {
  max-height: 100px;
}
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img[src*="Club House"],
#bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img[src*="Stop Mal Au Dos"] {
  max-height: 150px;
}
#bellaConnectionTirages-app section.partenaires-section h3 {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 50px;
}
#bellaConnectionTirages-app section.partenaires-section .partenaires-content {
  max-width: var(--siteMaxWidth);
  margin: auto;
}
#bellaConnectionTirages-app section.partenaires-section .partenaires-content a {
  color: var(--color-coral);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#bellaConnectionTirages-app section.partenaires-section .partenaires-content a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}
#bellaConnectionTirages-app section.partenaires-section .partenaires-content div {
  max-width: 790px;
  margin-bottom: 20px;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  #bellaConnectionTirages-app section.partenaires-section {
    margin-bottom: 35px;
  }
  #bellaConnectionTirages-app section.partenaires-section h3 {
    font-size: 35px;
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
    #bellaConnectionTirages-app {
        section.partenaires-section {
        }
    }
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 480px) {
  #bellaConnectionTirages-app section.partenaires-section h3 {
    font-size: 27px;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire {
    margin: 5rem auto;
    width: 60%;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-prev {
    left: -70px;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-next {
    top: 155px;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire {
    height: 140px;
    margin-bottom: 2rem;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img {
    max-height: 90px;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img[src*=FLUOSPORT] {
    max-height: 70px;
  }
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img[src*="Club House"],
  #bellaConnectionTirages-app section.partenaires-section .gallerie-partenaire .slick-track .partenaire img[src*="Stop Mal Au Dos"] {
    max-height: 110px;
  }
}
#bellaConnectionTirages-app section.prizes-section {
  margin: 80px auto;
  max-width: var(--siteMaxWidth);
}
#bellaConnectionTirages-app section.prizes-section h2 {
  font-size: 50px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}
#bellaConnectionTirages-app section.prizes-section .subtitle {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-dark-blue);
  font-size: 18px;
  opacity: 0.9;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists {
  display: block;
  column-count: 2;
  column-gap: 28px;
  margin-block: 50px 20px;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .category-group {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  margin: 0 0 12px 0;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin: 0 0 10px 0;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .category-icon {
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.06));
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  margin-block: 3rem 5rem;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list li {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(140, 179, 219, 0.28); /* blue tint */
  box-shadow: 0 4px 10px rgba(58, 101, 143, 0.1);
  transition: transform 160ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(58, 101, 143, 0.16);
  border-color: rgba(140, 179, 219, 0.45);
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list .icon {
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.06));
  animation: floaty 3.2s ease-in-out infinite;
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list .prize {
  flex: 1;
  font-weight: 600;
  color: var(--color-dark-blue);
}
#bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list .sponsor {
  background: rgba(140, 179, 219, 0.15);
  color: var(--color-dark-blue);
  border: 1px solid rgba(140, 179, 219, 0.35);
  padding: 6px 10px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #bellaConnectionTirages-app {

    }
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
    #bellaConnectionTirages-app {

    }
}

/* Small devices (tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  #bellaConnectionTirages-app section.prizes-section {
    margin: 60px auto 50px;
  }
  #bellaConnectionTirages-app section.prizes-section h2 {
    font-size: 36px;
  }
  #bellaConnectionTirages-app section.prizes-section .subtitle {
    font-size: 16px;
    margin-bottom: 22px;
  }
  #bellaConnectionTirages-app section.prizes-section .prize-lists {
    column-count: 1;
    column-gap: 0;
    margin-block: 30px 20px;
  }
  #bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list {
    padding-inline: 0;
  }
  #bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list li {
    text-align: center;
    margin-bottom: 0;
    gap: 8px;
  }
  #bellaConnectionTirages-app section.prizes-section .prize-lists .prize-list li .sponsor {
    align-self: center;
  }
}
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) 
@media only screen and (max-width: 460px) {
    #bellaConnectionTirages-app {
    }
}*/
#bellaConnectionTirages-app h2 {
  font-size: 50px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}
#bellaConnectionTirages-app section.second-edition-section {
  background-image: url(/build/images/landing.f72b2193.jpg);
  background-size: cover;
  background-position: center bottom;
  min-height: 243px;
  margin: 50px 85px;
  padding: 55px 75px;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
#bellaConnectionTirages-app section.second-edition-section .second-edition-content {
  color: #ffffff;
  font-weight: 700;
}
#bellaConnectionTirages-app section.second-edition-section .second-edition-button {
  align-self: flex-end;
  text-align: end;
}
#bellaConnectionTirages-app section.second-edition-section .second-edition-button button {
  padding: 9px 30px;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down) 
@media only screen and (max-width: 992px) {
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #bellaConnectionTirages-app section.second-edition-section {
    margin: 50px 20px;
    padding: 30px;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #bellaConnectionTirages-app section.second-edition-section {
    margin: 50px 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  #bellaConnectionTirages-app section.second-edition-section .second-edition-button {
    align-self: center;
    text-align: center;
  }
}
@charset "UTF-8";
/* ===== Layout ===== */
#contact-app .contact-hero {
  position: relative;
  width: 100%;
  /* Match home landing vertical presence */
  min-height: clamp(360px, 30vw, 600px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* subtle dark overlay for contrast */
}
#contact-app .contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.1) 65%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

#contact-app .contact-section {
  position: relative;
  z-index: 0;
  padding: 5.5rem 0 6.5rem;
}
#contact-app .contact-section .contact {
  width: var(--siteMaxWidth);
  margin: 0 auto;
}
#contact-app .contact-section .contact h2 {
  text-align: center;
  font-size: clamp(2.6rem, 1.5vw + 1.6rem, 3.6rem);
  margin: 0 0 2.8rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}
#contact-app .contact-section .contact .contact-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch; /* make columns equal height so left can bottom-align image */
  gap: 7rem;
  margin-top: 1.5rem;
  /* LEFT */
  /* RIGHT (FORM) */
}
#contact-app .contact-section .contact .contact-content .contact-text {
  display: flex;
  flex-direction: column;
}
#contact-app .contact-section .contact .contact-content .contact-text p {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
#contact-app .contact-section .contact .contact-content .contact-text .bold {
  font-weight: 700;
}
#contact-app .contact-section .contact .contact-content .contact-text figure {
  /* push image block to the bottom of the left column,
     but lift it to align with bottom of textarea (above the send button) */
  margin: auto 0 4rem 0; /* ≈ margin-top of button-container + button height */
  width: 66%; /* keep reduced width */
  aspect-ratio: 16/10; /* rectangular */
  border-radius: 8px;
  border: 1px solid #e6edf5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
#contact-app .contact-section .contact .contact-content .contact-text figure img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop nicely inside rectangle */
  display: block;
}
#contact-app .contact-section .contact .contact-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  /* Email + téléphone côte à côte */
  /* react-select — font + small bubbles */
  /* Button directly under the message box, right-aligned */
}
#contact-app .contact-section .contact .contact-content form .form-group {
  margin-bottom: 1.4rem;
}
#contact-app .contact-section .contact .contact-content form .form-group label {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}
#contact-app .contact-section .contact .contact-content form .form-group .light {
  font-weight: 500;
  opacity: 0.7;
}
#contact-app .contact-section .contact .contact-content form .form-group input,
#contact-app .contact-section .contact .contact-content form .form-group textarea {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 1rem 1.4rem;
  border: 1px solid #c7d9ee;
  background: #fff;
  color: #0b0f17;
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
#contact-app .contact-section .contact .contact-content form .form-group input::placeholder,
#contact-app .contact-section .contact .contact-content form .form-group textarea::placeholder {
  opacity: 0.7;
}
#contact-app .contact-section .contact .contact-content form .form-group input:focus,
#contact-app .contact-section .contact .contact-content form .form-group textarea:focus {
  outline: none;
  border-color: #8cb3db;
  box-shadow: 0 0 0 3px rgba(140, 179, 219, 0.25);
}
#contact-app .contact-section .contact .contact-content form .form-group textarea {
  border-radius: 10px;
  min-height: 210px; /* big message box */
  resize: vertical;
}
#contact-app .contact-section .contact .contact-content form .form-group .form-alert {
  display: block;
  font-size: 1.3rem;
  padding: 0.4rem 0.2rem 0;
  color: #c62828;
}
#contact-app .contact-section .contact .contact-content form .inline-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
#contact-app .contact-section .contact .contact-content form .services-select {
  font-family: inherit;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__control {
  border: 1px solid #c7d9ee;
  border-radius: 999px;
  min-height: 44px;
  box-shadow: none;
  padding: 0 0.4rem;
  font-family: inherit;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__control--is-focused {
  border-color: #8cb3db;
  box-shadow: 0 0 0 3px rgba(140, 179, 219, 0.25);
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__value-container {
  padding: 0.1rem 0.4rem;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 1.4rem;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__multi-value {
  border-radius: 999px;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__multi-value .rs__multi-value__label {
  padding: 0.1rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: inherit;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__multi-value .rs__multi-value__remove {
  padding: 0 0.3rem;
  font-size: 1.2rem;
  border-radius: 50%;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__input-container {
  margin: 0;
  padding: 0;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__menu {
  border-radius: 10px;
  overflow: hidden;
  font-family: inherit;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__option {
  font-family: inherit;
  font-size: 1.4rem;
}
#contact-app .contact-section .contact .contact-content form .services-select .rs__placeholder {
  font-family: inherit;
  font-size: 1.4rem;
  opacity: 0.7;
}
#contact-app .contact-section .contact .contact-content form .button-container {
  margin-top: 0.8rem; /* sits just under textarea */
  align-self: flex-end; /* align with right edge of inputs */
  display: flex;
  justify-content: flex-end;
  /* reversed colors by default, fill on hover */
}
#contact-app .contact-section .contact .contact-content form .button-container button {
  min-width: 120px; /* smaller */
  padding: 0.8rem 1.4rem;
  font-size: 1.4rem;
  border-radius: 999px;
}
#contact-app .contact-section .contact .contact-content form .button-container .contact.ghost {
  background: #fff;
  color: var(--color-coral);
  border: 1px solid var(--color-coral);
  transition: all 0.2s ease;
}
#contact-app .contact-section .contact .contact-content form .button-container .contact.ghost:hover, #contact-app .contact-section .contact .contact-content form .button-container .contact.ghost:focus {
  background: var(--color-coral);
  color: #fff;
  border-color: var(--color-coral);
}
#contact-app .contact-section .contact .contact-content form .button-container .is-loading {
  opacity: 0.8;
  cursor: progress;
}
#contact-app .contact-section .contact .contact-content form .form-confirmation {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: #e8f5e9;
  color: #1b5e20;
  font-weight: 600;
}
#contact-app .contact-section .contact .contact-content form .form-confirmation.error {
  background: #ffebee;
  color: #b71c1c;
}

/* ========== Responsive ========== */
/* ≤ 992px (tablets) */
@media only screen and (max-width: 992px) {
  #contact-app .contact-section .contact .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    /* reset figure width on smaller screens */
  }
  #contact-app .contact-section .contact .contact-content form .inline-two {
    grid-template-columns: 1fr;
  }
  #contact-app .contact-section .contact .contact-content .contact-text figure {
    width: 100%;
    margin-bottom: 0;
  }
}
/* ≤ 460px (phones) */
@media only screen and (max-width: 460px) {
  #contact-app .contact-section .contact .contact-content {
    /* On phones keep the image full width for readability */
  }
  #contact-app .contact-section .contact .contact-content .contact-text figure img {
    width: 100%;
  }
  #contact-app .contact-section .contact .contact-content form .button-container {
    align-self: stretch; /* full-width on phones if you prefer */
  }
  #contact-app .contact-section .contact .contact-content form .button-container button {
    width: 100%;
    min-width: 0;
  }
}
#event-app section.section-chiffres h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#event-app section.section-chiffres .chiffres-content {
  width: var(--siteMaxWidth);
  margin: 7.5rem auto;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
}
#event-app section.section-chiffres .chiffres-content ul {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#event-app section.section-chiffres .chiffres-content ul li {
  margin-bottom: 1rem;
  display: flex;
  justify-items: center;
  align-items: center;
}
#event-app section.section-chiffres .chiffres-content ul li img {
  width: 50px;
  aspect-ratio: 1/1;
  margin-right: 1rem;
}
#event-app section.section-chiffres .chiffres-content figure {
  width: 60%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#event-app section.section-chiffres .chiffres-content figure img {
  width: 100%;
  height: auto;
  max-width: 550px;
  margin: auto;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #event-app {
    }
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
    #event-app {
    }
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
    #event-app {
    }
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #event-app section.section-chiffres .chiffres-content {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #event-app section.section-chiffres .chiffres-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    padding: 0;
  }
  #event-app section.section-chiffres .chiffres-content figure {
    width: 100%;
    margin-bottom: 5rem;
    text-align: center;
  }
  #event-app section.section-chiffres .chiffres-content figure img {
    max-width: 400px;
  }
}
/* Tiny devices (phones, 460px and down) 
@media only screen and (max-width: 460px) {
    #event-app {      
    }
}*/
#event-app section.gallery-section {
  background-color: white;
  z-index: 0;
}
#event-app section.gallery-section h2 {
  text-align: center;
  font-size: 3.5rem;
}
#event-app section.gallery-section h2 .coral {
  color: var(--color-coral);
}
#event-app section.gallery-section .gallery {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto 7.5rem;
}
#event-app section.gallery-section .gallery .gallery-image {
  height: 220px;
}
#event-app section.gallery-section .gallery .gallery-image img {
  height: 100%;
  width: auto;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #event-app section.gallery-section .gallery .gallery-image {
    height: 175px;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.gallery-section .gallery .gallery-image {
    height: 120px;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 395px) {
  #event-app section.gallery-section .gallery .gallery-image {
    height: 110px;
  }
}
#event-app section.invites-section {
  position: relative;
}
#event-app section.invites-section .circle {
  width: 39%;
  aspect-ratio: 1/1;
  clip-path: circle(45% at 57% 47%);
  position: absolute;
  top: 20%;
  right: 0%;
  background-color: var(--color-coral);
  opacity: 0.2;
}
#event-app section.invites-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#event-app section.invites-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#event-app section.invites-section .invites-landing {
  width: var(--siteMaxWidth);
  margin: 0 auto 5rem;
  position: relative;
  z-index: 2;
}
#event-app section.invites-section .invites-landing .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#event-app section.invites-section .invites-landing .content figure {
  width: 45%;
  text-align: center;
}
#event-app section.invites-section .invites-landing .content figure img {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: auto;
}
#event-app section.invites-section .invites-landing .content ul {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#event-app section.invites-section .invites-landing .content ul li {
  margin-bottom: 1rem;
}
#event-app section.invites-section .invite-detail {
  width: var(--siteMaxWidth);
  margin: auto auto 5rem;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #event-app {
    }
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
    #event-app {
    }
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
    #event-app {
    }
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #event-app section.invites-section .circle {
    width: 69%;
  }
  #event-app section.invites-section .invites-landing .content {
    flex-wrap: wrap;
  }
  #event-app section.invites-section .invites-landing .content figure {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
  #event-app section.invites-section .invites-landing .content figure img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: auto;
  }
  #event-app section.invites-section .invites-landing .content ul {
    width: 100%;
  }
  #event-app section.invites-section .invites-landing .content ul li {
    margin-bottom: 1rem;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.invites-section h2 {
    font-size: 3.2rem;
  }
  #event-app section.invites-section .circle {
    width: 62%;
    top: 38%;
  }
  #event-app section.invites-section .invites-landing .content figure img {
    width: 90%;
    border-radius: 5px;
  }
  #event-app section.invites-section .invite-detail {
    width: 90%;
    margin: auto auto 5rem;
  }
  #event-app section.invites-section .invite-detail p {
    text-align: justify;
    margin-bottom: 1rem;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 360px) {
  #event-app section.invites-section h2 {
    font-size: 2.9rem;
  }
}
#event-app section.landing-section {
  background-color: white;
  z-index: 0;
  margin-block: 5rem;
  width: var(--siteMaxWidth);
  margin: auto;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#event-app section.landing-section .left-circle {
  width: 75%;
  aspect-ratio: 1/1;
  clip-path: circle(28% at 50% 50%);
  position: absolute;
  top: -10%;
  left: -35%;
  z-index: 1;
  background-color: var(--color-blue);
  opacity: 0.2;
}
#event-app section.landing-section .landing-content {
  display: flex;
  justify-items: center;
  align-items: center;
  margin: 10rem auto 5rem;
}
#event-app section.landing-section .landing-content .blue {
  color: var(--color-blue);
}
#event-app section.landing-section .landing-content .section-title {
  width: 50%;
}
#event-app section.landing-section .landing-content .section-title h1 {
  font-size: 7.5rem;
}
#event-app section.landing-section .landing-content .content {
  width: 50%;
}
#event-app section.landing-section .landing-content .content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
#event-app section.landing-section .landing-content .content p {
  margin: 0 0 2rem 0;
}
#event-app section.landing-section .landing-details {
  margin-bottom: 5rem;
}
#event-app section.landing-section .landing-details p {
  margin-bottom: 1rem;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  */
@media only screen and (max-width: 1440px) {
  #event-app section.landing-section .landing-content .section-title h2 {
    margin: 0;
    font-size: 6.5rem;
  }
}
/* Medium devices (Laptop, 1280px and down) */
@media only screen and (max-width: 1280px) {
  #event-app section.landing-section {
    background-color: white;
    z-index: 0;
    margin-block: 5rem;
  }
  #event-app section.landing-section .landing-content .section-title h2 {
    margin: 0;
    font-size: 6rem;
  }
}
/* Small devices (tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  #event-app section.landing-section .landing-content {
    display: block;
    min-height: 50vh;
    margin-bottom: 0rem;
  }
  #event-app section.landing-section .landing-content .section-title {
    width: 100%;
    margin-bottom: 2rem;
  }
  #event-app section.landing-section .landing-content .section-title h2 {
    text-align: center;
  }
  #event-app section.landing-section .landing-content .content {
    width: 100%;
    margin: auto;
  }
  #event-app section.landing-section .landing-details {
    margin-bottom: 0rem;
  }
}
/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #event-app section.landing-section .left-circle {
    width: 85%;
    clip-path: circle(48% at 50% 50%);
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.landing-section .left-circle {
    width: 105%;
    clip-path: circle(48% at 50% 50%);
    top: -3%;
    left: -31%;
  }
  #event-app section.landing-section .landing-content {
    margin-bottom: 0;
  }
  #event-app section.landing-section .landing-content .section-title h1 {
    font-size: 5.25rem;
    margin-bottom: 5rem;
  }
  #event-app section.landing-section .landing-content .section-title h1:first-of-type {
    margin-bottom: 0rem;
    margin-top: 2rem;
  }
  #event-app section.landing-section .landing-content .content {
    width: 90%;
  }
  #event-app section.landing-section .landing-content .content h2 {
    font-size: 2.3rem;
  }
  #event-app section.landing-section .landing-content .content h3 {
    font-size: 2.5rem;
  }
  #event-app section.landing-section .landing-content .content p {
    text-align: justify;
  }
  #event-app section.landing-section .landing-details {
    width: 90%;
    margin: 0 auto 2.5rem;
  }
  #event-app section.landing-section .landing-details p {
    text-align: justify;
  }
}
/* Tiny devices (phones, 360px and down) */
@media only screen and (max-width: 360px) {
  #event-app section.landing-section .landing-content .section-title h1 {
    font-size: 4.5rem;
  }
  #event-app section.landing-section .landing-content .content h2 {
    font-size: 2.1rem;
  }
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/build/images/ajax-loader.fb6f3c23.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/build/fonts/slick.a4e97f5a.eot);
    src: url(/build/fonts/slick.a4e97f5a.eot?#iefix) format('embedded-opentype'), url(/build/fonts/slick.29518378.woff) format('woff'), url(/build/fonts/slick.c94f7671.ttf) format('truetype'), url(/build/images/slick.2630a3e3.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

#event-app section.partenaires-section {
  background-color: white;
  z-index: 0;
  position: relative;
}
#event-app section.partenaires-section .right-circle {
  width: 70%;
  aspect-ratio: 1/1;
  clip-path: circle(38% at 96% 38%);
  position: absolute;
  top: 0%;
  left: 30%;
  z-index: 0;
  background-color: var(--color-green);
  opacity: 0.2;
}
#event-app section.partenaires-section h2.section-title {
  text-align: center;
  font-size: 3.5rem;
  line-height: 1.3;
}
#event-app section.partenaires-section h2.section-title .green {
  color: var(--color-green);
}
#event-app section.partenaires-section .gallerie-partenaire {
  position: relative;
  z-index: 20;
  width: var(--siteMaxWidth);
  margin: 10rem auto;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-prev:before,
#event-app section.partenaires-section .gallerie-partenaire .slick-next:before {
  opacity: 0;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-prev {
  left: -5px;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-next {
  right: 0px;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-list {
  overflow-x: hidden;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-list .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-list .slick-track .partenaire {
  height: 100%;
  margin-bottom: 5rem;
  text-align: center;
}
#event-app section.partenaires-section .gallerie-partenaire .slick-list .slick-track .partenaire img {
  margin: auto;
  width: 35%;
}
#event-app section.partenaires-section .event-content {
  display: flex;
  justify-items: center;
  align-items: center;
  width: var(--siteMaxWidth);
  margin: 9rem auto;
}
#event-app section.partenaires-section .event-content .event-image {
  width: 50%;
  text-align: center;
}
#event-app section.partenaires-section .event-content .event-image img {
  width: 50%;
  border-radius: 15px;
}
#event-app section.partenaires-section .event-content .event-text {
  width: 50%;
}
#event-app section.partenaires-section .event-content .event-text h3 {
  font-size: 2rem;
  font-weight: 700;
}
#event-app section.partenaires-section .event-content .event-text p {
  margin: 0 0 2rem 0;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #bellaConnection-app section.partenaire-section .event-content {
    display: block;
  }
  #bellaConnection-app section.partenaire-section .event-content .event-image {
    width: 100%;
    margin-bottom: 5rem;
  }
  #bellaConnection-app section.partenaire-section .event-content .event-image img {
    width: 40%;
  }
  #bellaConnection-app section.partenaire-section .event-content .event-text {
    width: 100%;
  }
  #bellaConnection-app section.partenaire-section .event-content .event-text h3 {
    text-align: center;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #bellaConnection-app section.partenaire-section h3.section-title {
    width: 90%;
    margin: auto;
  }
  #bellaConnection-app section.partenaire-section .gallerie-partenaire {
    margin: 5rem auto;
    width: 60%;
  }
  #bellaConnection-app section.partenaire-section .gallerie-partenaire .slick-prev {
    left: -70px;
  }
  #bellaConnection-app section.partenaire-section .gallerie-partenaire .slick-next {
    top: 76px;
  }
  #bellaConnection-app section.partenaire-section .event-content .event-text p {
    text-align: justify;
  }
}
#event-app section.temoignages-section {
  position: relative;
}
#event-app section.temoignages-section .circle {
  width: 39%;
  aspect-ratio: 1/1;
  clip-path: circle(45% at 57% 47%);
  position: absolute;
  top: 20%;
  right: 0%;
  background-color: var(--color-coral);
  opacity: 0.2;
}
#event-app section.temoignages-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#event-app section.temoignages-section .temoignages {
  position: relative;
  width: var(--siteMaxWidth);
  margin: auto;
  z-index: 0;
}
#event-app section.temoignages-section .temoignages .temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10rem;
  row-gap: 8rem;
  margin: 5rem auto 5rem;
}
#event-app section.temoignages-section .temoignages .temoignages-grid .temoignage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#event-app section.temoignages-section .temoignages .temoignages-grid .temoignage img {
  position: absolute;
  width: 70px;
  height: auto;
  z-index: 2;
  top: -20px;
  left: -8px;
}
#event-app section.temoignages-section .temoignages .temoignages-grid .temoignage .text {
  max-height: 160px;
  padding: 1rem 1.5rem;
  overflow-y: auto;
}
#event-app section.temoignages-section .temoignages .temoignages-grid .temoignage .author {
  font-weight: 700;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

/*
* TODO FIX for lower sizes
*/
/* Large devices (Monitors, 1440px and down)  
@media only screen and (max-width: 1440px) {
    #event-app {
    }
}

/* Medium devices (Laptop, 1280px and down) */
@media only screen and (max-width: 1280px) {
  #event-app section.temoignages-section {
    position: relative;
  }
  #event-app section.temoignages-section .temoignages .temoignages-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    row-gap: 5rem;
  }
}
/* Small devices (tablets, 992px and down)
@media only screen and (max-width: $tabletScreenMax) {
    #event-app {
    }
}

/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
    #event-app {
    }
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  #event-app section.temoignages-section .temoignages .temoignages-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.expertise-page {
  --accent: var(--color-blue);
  background: #fff;
  /* Accent links per page */
  /* Global headings and text spacing */
}
.expertise-page a {
  color: var(--accent);
  text-decoration-color: color-mix(in oklab, var(--accent) 55%, currentColor);
}
.expertise-page a:hover, .expertise-page a:focus {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.expertise-page .ep-hero {
  /* Match home landing vertical presence */
  min-height: clamp(360px, 30vw, 600px);
  background: color-mix(in oklab, var(--accent) 8%, #f7fafc);
}
.expertise-page .ep-hero.has-image {
  background: linear-gradient(0deg, color-mix(in oklab, var(--accent) 4%, transparent) 0%, color-mix(in oklab, var(--accent) 4%, transparent) 100%), var(--hero-image);
  background-size: var(--hero-fit, cover);
  background-position: center;
  background-repeat: no-repeat;
}
.expertise-page .ep-wrap {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  padding: 4rem 0 6rem;
}
.expertise-page .ep-head {
  text-align: center;
  margin-bottom: 2.8rem;
}
.expertise-page .ep-icon {
  width: 76px;
  height: auto;
  display: block;
  margin: 0 auto 1.2rem;
}
.expertise-page .ep-title {
  font-size: clamp(2.1rem, 1.2vw + 1.8rem, 3rem);
  color: var(--accent);
  margin: 0;
}
.expertise-page h2 {
  font-size: 2.5rem;
  margin: 2.4rem 0 1.2rem;
  font-weight: 800;
}
.expertise-page h3 {
  margin: 2rem 0 1rem;
  font-weight: 800;
}
.expertise-page p {
  margin: 0 0 1.2rem;
}
.expertise-page .ep-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}
.expertise-page .ep-col p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.expertise-page .ep-list, .expertise-page .services-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}
.expertise-page .ep-list li, .expertise-page .services-list li {
  position: relative;
  padding-left: 2.2rem;
  margin: 1rem 0;
}
.expertise-page .ep-list li::before, .expertise-page .services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  /* Soft halo shadow inspired by home page bullets */
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 18%, transparent);
}
.expertise-page .image-box {
  width: 100%;
  aspect-ratio: 16/10;
  background: #fff;
  border-radius: 6px;
  border: 2px solid color-mix(in oklab, var(--accent) 18%, #e8eef5);
  box-shadow: 0 8px 0 color-mix(in oklab, var(--accent) 18%, #e3edf8);
  margin-bottom: 1.2rem; /* breathing space below images when followed by text */
  object-fit: cover;
  object-position: center top; /* prioritise faces near top */
  display: block;
}
.expertise-page .ep-projects {
  margin-top: 4rem;
}
.expertise-page .ep-projects h3 {
  color: var(--accent);
}
.expertise-page .ep-project-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.expertise-page .ep-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
  margin-top: 4rem;
}
.expertise-page .ep-split h3 {
  color: var(--accent);
}
.expertise-page .ep-why h3, .expertise-page .ep-expertises h3 {
  color: var(--accent);
}
.expertise-page .ep-why p, .expertise-page .ep-expertises p, .expertise-page .ep-projects p {
  margin-bottom: 1.4rem;
}
.expertise-page .ep-faq {
  margin-top: 4rem;
}
.expertise-page .ep-faq h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}
.expertise-page .qa {
  padding: 1.2rem 0;
  border-top: 3px solid color-mix(in oklab, var(--accent) 18%, #e8eef5);
}
.expertise-page .qa + .qa {
  border-top-width: 3px;
}
.expertise-page .qa h4 {
  margin: 0 0 0.8rem;
  font-weight: 800;
}
@media (max-width: 1100px) {
  .expertise-page .ep-grid, .expertise-page .ep-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .expertise-page .ep-project-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .expertise-page .ep-project-grid {
    grid-template-columns: 1fr;
  }
}
@charset "UTF-8";
#expertises-app {
  /* Responsive */
}
#expertises-app section.expertises-section {
  padding: 6rem 0 8rem;
}
#expertises-app section.expertises-section .expertises {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  /* Subheading aligned left */
}
#expertises-app section.expertises-section .expertises h2 {
  text-align: center;
  margin: 0 0 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 2.2vw + 1.2rem, 3.8rem);
}
#expertises-app section.expertises-section .expertises h3 {
  width: 100%;
  margin: 0 auto 3.5rem;
  text-align: left;
  font-size: 2rem;
  max-width: 1100px;
}
#expertises-app section.expertises-section .expertises .expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 6rem 8rem;
  margin-top: 2rem;
  align-items: start;
  /* Specific tweaks */
  /* 1) Evénementiel: add space between icon and stamp */
  /* 2) SEO: enlarge the stamp to match others */
}
#expertises-app section.expertises-section .expertises .expertises-grid figure {
  text-align: center;
  padding: 1rem;
  /* Bloc icône + tampon (badge) */
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .icon-stamp {
  display: flex;
  align-items: center;
  justify-content: center; /* rapprocher icône et tampon */
  gap: 0.6rem;
  margin: 0 auto 1rem; /* centré */
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .icon-stamp .main-icon {
  width: 110px;
  display: block;
  margin: 0;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .icon-stamp .stamp {
  width: 90px;
  height: auto;
  opacity: 0.9;
  transform: rotate(-12deg);
  margin-left: -0.3rem; /* encore plus proche */
}
#expertises-app section.expertises-section .expertises .expertises-grid figure h4 {
  margin: 1.25rem 0 0.75rem 0;
  font-size: 1.8rem;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure p {
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
  line-height: 1.55;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn {
  border: 2px solid currentColor;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn.blue {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn.blue:hover {
  background: var(--color-blue);
  color: #fff;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn.green {
  color: var(--color-green);
  border-color: var(--color-green);
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn.green:hover {
  background: var(--color-green);
  color: #fff;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn.coral {
  color: var(--color-coral);
  border-color: var(--color-coral);
}
#expertises-app section.expertises-section .expertises .expertises-grid figure .discover-btn.coral:hover {
  background: var(--color-coral);
  color: #fff;
}
#expertises-app section.expertises-section .expertises .expertises-grid figure:nth-child(1) .icon-stamp .stamp {
  margin-left: 0.8rem; /* override the global -0.3rem */
}
#expertises-app section.expertises-section .expertises .expertises-grid figure:nth-child(3) .icon-stamp .stamp {
  width: 130px; /* bigger to balance visual weight */
  height: auto;
}
@media (max-width: 1100px) {
  #expertises-app section.expertises-section .expertises .expertises-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 4rem 6rem;
  }
}
@media (max-width: 640px) {
  #expertises-app section.expertises-section .expertises .expertises-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
#expertises-app {
  /* Large background banner inserted before the landing content */
  /* Small devices: keep some vertical presence but avoid overflow */
}
#expertises-app .expertises-hero {
  /* Match home landing vertical presence */
  min-height: clamp(360px, 30vw, 600px);
  background: url(/build/images/hero2.8c593eb9.jpg) center/cover no-repeat;
  position: relative;
}
@media (max-width: 600px) {
  #expertises-app .expertises-hero {
    /* Already covered by clamp above; keep for compatibility */
    min-height: clamp(360px, 30vw, 600px);
  }
}
#expertises-app {
  /* ====== Responsive ====== */
}
#expertises-app section.landing-section {
  background: #fff;
  position: relative;
  z-index: 0;
  padding: 4rem 0 7rem;
  /* ===== Titre ===== */
  /* ===== Grille ===== */
  /* ===== Colonne gauche ===== */
  /* ===== Bouton outline corail + hover plein ===== */
  /* ===== Colonne droite ===== */
}
#expertises-app section.landing-section .landing {
  width: var(--siteMaxWidth);
  margin: 0 auto;
}
#expertises-app section.landing-section .landing-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 4.2rem;
  font-size: clamp(2.2rem, 1.4vw + 1.8rem, 3.6rem);
}
#expertises-app section.landing-section .content {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}
#expertises-app section.landing-section .description p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 2.2rem;
  max-width: 58ch;
}
#expertises-app section.landing-section .description .why {
  margin: 0 0 1.4rem;
  color: var(--color-coral);
  font-weight: 800;
  font-size: 2rem;
}
#expertises-app section.landing-section .description .benefits {
  list-style: none;
  margin: 0 0 2.6rem;
  padding: 0;
}
#expertises-app section.landing-section .description .benefits li {
  position: relative;
  padding-left: 2.2rem;
  margin: 1.2rem 0;
  font-size: 1.6rem;
}
#expertises-app section.landing-section .description .benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em; /* align with text like home */
  width: 10px; /* match home intro size */
  height: 10px; /* match home intro size */
  border-radius: 50%;
  background: var(--color-coral);
  opacity: 0.95;
  box-shadow: 0 0 0 6px rgba(247, 157, 133, 0.18); /* orange halo */
}
#expertises-app section.landing-section .description .cta-wrap {
  display: inline-block;
}
#expertises-app section.landing-section .outline-coral {
  border: 2px solid var(--color-coral) !important;
  background: transparent !important;
  color: var(--color-coral) !important;
  padding: 1.2rem 1.8rem !important;
  border-radius: 999px !important;
  font-weight: 700;
}
#expertises-app section.landing-section .outline-coral:hover {
  background: var(--color-coral) !important;
  color: #fff !important;
}
#expertises-app section.landing-section .visual {
  display: flex;
  justify-content: center;
}
#expertises-app section.landing-section .mockup {
  width: min(560px, 100%);
  aspect-ratio: 16/10;
  /* Image fournie */
  background: url(/build/images/plan-strategie-communication.780f24a9.webp) center/cover no-repeat;
  background-color: #fff; /* fallback */
  border-radius: 8px;
  border: 2px solid #ffd2c7;
  box-shadow: 10px 10px 0 #f79d85;
}
@media (max-width: 1100px) {
  #expertises-app section.landing-section .content {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  #expertises-app section.landing-section .description p {
    max-width: 70ch;
  }
  #expertises-app section.landing-section .mockup {
    width: min(620px, 100%);
  }
}
@media (max-width: 600px) {
  #expertises-app section.landing-section {
    padding: 3rem 0 6rem;
  }
  #expertises-app section.landing-section .landing-title {
    margin-bottom: 3.2rem;
  }
  #expertises-app section.landing-section .description p,
  #expertises-app section.landing-section .benefits li {
    font-size: 1.5rem;
  }
  #expertises-app section.landing-section .mockup {
    box-shadow: 5px 5px 0 #f79d85;
  }
}
@media (min-width: 980px) {
  #expertises-app section.landing-section .description .benefits li::before {
    width: 12px;
    height: 12px;
    top: 0.3em;
  }
}
#packs-app {
  /* Responsive */
}
#packs-app .packs-page {
  padding: 3rem 0 6rem;
}
#packs-app .packs-hero {
  width: var(--siteMaxWidth);
  margin: 0 auto 2rem;
  text-align: center;
}
#packs-app .packs-hero .intro {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}
#packs-app .packs-hero .slot {
  margin: 0 0 1.6rem;
  font-weight: 700;
}
#packs-app .packs-hero .hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}
#packs-app .packs-grid {
  width: var(--siteMaxWidth);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 2rem;
}
#packs-app .pack-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.6rem 1.4rem;
  border: 3px solid #eaeaea;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#packs-app .pack-card.blue {
  border-color: rgba(32, 106, 214, 0.35);
}
#packs-app .pack-card.green {
  border-color: rgba(14, 140, 104, 0.35);
}
#packs-app .pack-card.coral {
  border-color: rgba(247, 157, 133, 0.55);
}
#packs-app .pack-card .pc-head h4 {
  margin: 0 0 0.2rem;
  font-weight: 800;
}
#packs-app .pack-card .pc-head h3 {
  margin: 0 0 1.4rem;
  font-weight: 800;
  font-size: 1.4rem;
}
#packs-app .pack-card .pc-price {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0.2rem auto 1.2rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
}
#packs-app .pack-card .pc-price span {
  transform: translateY(2px);
}
#packs-app .pack-card.blue .pc-price {
  background: #83aee1;
}
#packs-app .pack-card.green .pc-price {
  background: #8dd0b3;
}
#packs-app .pack-card.coral .pc-price {
  background: #f3a390;
}
#packs-app .pack-card .pc-desc {
  font-size: 1.35rem;
  line-height: 1.55;
  margin: 0.2rem 0 1.6rem;
}
#packs-app .pack-card .pc-mic {
  width: 26px;
  opacity: 0.8;
}
#packs-app .packs-cta {
  width: var(--siteMaxWidth);
  margin: 2.4rem auto 0;
  text-align: center;
}
#packs-app .packs-cta .outline-coral {
  border: 2px solid var(--color-coral);
  background: transparent;
  color: var(--color-coral);
  padding: 1.1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s ease;
}
#packs-app .packs-cta .outline-coral:hover {
  background: var(--color-coral);
  color: #fff;
}
@media (max-width: 1200px) {
  #packs-app .packs-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 640px) {
  #packs-app .packs-grid {
    grid-template-columns: 1fr;
  }
}
#home-app section.collaborate-section {
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#home-app section.collaborate-section .collaborate {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#home-app section.collaborate-section .collaborate .collaborate-title {
  text-align: center;
  font-size: clamp(28px, 2vw + 18px, 42px);
  font-weight: 900;
  margin-bottom: 4rem;
}
#home-app section.collaborate-section .collaborate .collaborate-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
#home-app section.collaborate-section .collaborate .collaborate-img {
  flex: 1;
  display: flex;
  justify-content: center;
}
#home-app section.collaborate-section .collaborate .collaborate-img img {
  width: 70%;
  max-width: 420px;
  height: auto;
  border-radius: 10px;
  background: #fff;
  /* Decorative frame (blue) */
  border: 2px solid #d9e7f5; /* light blue frame */
  box-shadow: 10px 10px 0 var(--color-blue);
}
#home-app section.collaborate-section .collaborate .collaborate-text {
  flex: 1;
  display: flex;
  align-items: center;
}
#home-app section.collaborate-section .collaborate .collaborate-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}
#home-app section.collaborate-section .collaborate .collaborate-text ul li {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.5;
}
#home-app section.collaborate-section .collaborate .collaborate-text ul li img {
  width: 28px;
  height: 28px;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  #home-app section.collaborate-section .collaborate-content {
    flex-direction: column;
    gap: 3rem;
  }
  #home-app section.collaborate-section .collaborate-text ul {
    text-align: center;
  }
}
#home-app section.intro {
  padding: 6rem 0 5rem 0;
}

#home-app .intro__container {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 40px);
}

@media (min-width: 980px) {
  #home-app .intro__container {
    /* Make the media column a bit smaller on desktop */
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}
#home-app .intro__content {
  display: grid;
  gap: 16px;
}

#home-app .intro__title {
  margin: 0;
  color: #111216;
  font-weight: 900;
  font-size: clamp(20px, 1.4vw + 12px, 28px);
  line-height: 1.2;
  text-align: left;
}

#home-app .intro__lead {
  margin: 0;
  color: #444c54;
  font-size: clamp(14px, 0.9vw + 11px, 18px);
  line-height: 1.6;
  max-width: 70ch;
}

#home-app .intro__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px 0;
  /* Vertical spacing only; each item controls its own layout */
  display: grid;
  row-gap: 14px;
}

/* Each row behaves like a sentence: dot | bold | rest */
#home-app .intro__item {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.35;
}

#home-app .intro__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f3a091;
  box-shadow: 0 0 0 6px rgba(243, 160, 145, 0.18);
  flex: 0 0 auto;
  /* Align the bullet with the first text line and keep the left edge neat */
  align-self: start;
  margin-top: 0.25em; /* optical alignment with text cap-height */
  margin-right: 10px; /* spacing between bullet and text */
}

#home-app .intro__first {
  color: #f3a091;
  font-weight: 700;
  white-space: nowrap; /* keep the highlighted part on one line */
  margin-right: 0.25em; /* natural word space before the rest */
}

@media (min-width: 980px) {
  #home-app .intro__list {
    row-gap: 16px;
  }
  #home-app .intro__item {
    font-size: 17px;
  }
  #home-app .intro__dot {
    width: 12px;
    height: 12px;
    margin-top: 0.3em;
    margin-right: 12px; /* slightly more space on desktop */
  }
}
#home-app .intro__rest {
  color: #444c54;
}

#home-app .intro__cta {
  justify-self: start;
  padding: 11px 22px;
  border: 2px solid #f3a091;
  border-radius: 999px;
  color: #f3a091;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

#home-app .intro__cta:hover {
  background: #f3a091;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(243, 160, 145, 0.22);
}

#home-app .intro__cta:active {
  transform: translateY(0);
  box-shadow: none;
}

#home-app .intro__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0; /* remove default figure margin */
  /* Decorative frame (orange) matching expertises mockup */
  border: 2px solid #ffd2c7; /* light coral */
  box-shadow: 10px 10px 0 var(--color-coral);
}
#home-app .intro__media img {
  display: block;
  width: 100%;
  height: auto; /* show full image without cropping */
  border-radius: 8px; /* subtle inner rounding */
}

#home-app .intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}
#home-app .landing {
  /*background: linear-gradient(180deg, #eef6fd 0%, #ffffff 55%);*/
  position: relative;
  overflow: clip;
}
#home-app .landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/build/images/Image_header_home.f465cccf.png) no-repeat right center;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
#home-app .landing::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#home-app .landing__container {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
  padding-top: clamp(200px, 18vw, 320px);
  padding-bottom: clamp(160px, 12vw, 280px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
@media (min-width: 980px) {
  #home-app .landing__container {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}
#home-app .landing__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
#home-app .landing__media {
  position: relative;
  z-index: 1;
}
#home-app .landing__title {
  margin: 0 0 clamp(16px, 2.5vw, 28px) 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(28px, 2.4vw + 12px, 42px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
#home-app .landing__title .landing__line {
  display: block;
  font-weight: 900;
}
#home-app .landing__line--1 {
  color: #f2a090;
}
#home-app .landing__line--2 {
  color: #83cfa3;
}
#home-app .landing__line--3 {
  color: #7ea9d9;
}
#home-app .landing__intro {
  margin: 0;
  color: #6f7a84;
  max-width: 60ch;
  font-size: clamp(13px, 1vw + 11px, 18px);
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}
#home-app .landing__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  background: linear-gradient(to bottom, #f2a090, #83cfa3, #7ea9d9);
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
#home-app .landing .landing__br--mobile {
  display: none;
}

@media (max-width: 979px) {
  #home-app .landing .landing__br--mobile {
    display: inline;
  }
  #home-app .landing .landing__title {
    line-height: 1.02;
    letter-spacing: -0.025em;
  }
  #home-app .landing .landing__line + .landing__line {
    margin-top: clamp(6px, 1.5vw, 10px);
  }
}
@media (min-width: 980px) {
  #home-app .landing .landing__title {
    font-size: clamp(30px, 2.1vw + 10px, 40px);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }
  #home-app .landing .landing__last {
    margin-left: 0.35ch;
  }
}
@media (min-width: 980px) {
  #home-app .landing::before {
    opacity: 1;
  }
  #home-app .landing::after {
    content: "";
    background: linear-gradient(to right, #ffffff 0 42%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.55) 56%, rgba(255, 255, 255, 0) 62%);
  }
}
@charset "UTF-8";
#home-app section.obstacles-section {
  z-index: 0;
  position: relative;
  padding: 5rem 0;
}
#home-app section.obstacles-section .obstacles {
  position: relative;
  width: var(--siteMaxWidth);
  margin: auto;
  z-index: 1;
}
#home-app section.obstacles-section .obstacles h2 {
  text-align: center;
  font-size: clamp(28px, 2vw + 18px, 42px);
  font-weight: 900;
  margin-bottom: 3rem;
}
#home-app section.obstacles-section .obstacles .obstacle-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur desktop */
  gap: 2rem;
  margin: 5rem 0;
}
#home-app section.obstacles-section .obstacles .obstacle-cards .obstacle-card {
  background: #fff;
  border: 1px solid #c9dcff; /* fine bordure bleue */
  border-radius: 0;
  box-shadow: 0 10px 14px -8px rgba(60, 120, 220, 0.14), 10px 0 14px -12px rgba(60, 120, 220, 0.14);
  padding: clamp(20px, 1.8vw, 32px);
  --cardTitleHeight: clamp(58px, 4.4vw, 74px);
  display: grid;
  grid-template-rows: var(--cardTitleHeight) 1fr;
  justify-items: center;
  align-items: start;
  text-align: center;
  min-height: 260px;
}
#home-app section.obstacles-section .obstacles .obstacle-cards .obstacle-card h3 {
  margin: 0;
  width: 100%;
  max-width: 28ch;
  font-size: clamp(16px, 1vw + 12px, 20px);
  font-weight: 800;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}
#home-app section.obstacles-section .obstacles .obstacle-cards .obstacle-card p {
  margin: 0;
  color: #4b545d;
  max-width: 38ch;
  font-size: clamp(13px, 0.6vw + 10px, 15px);
  line-height: 1.6;
}

/* Responsive */
@media only screen and (max-width: 992px) {
  #home-app section.obstacles-section .obstacles .obstacle-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes en tablette */
  }
}
@media only screen and (max-width: 600px) {
  #home-app section.obstacles-section .obstacles .obstacle-cards {
    grid-template-columns: 1fr; /* 1 colonne en mobile */
    gap: 1.25rem; /* un peu moins d'espace entre cartes */
  }
  #home-app section.obstacles-section .obstacles .obstacle-cards .obstacle-card {
    /* Centrage du contenu et suppression du vide inutile */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto; /* évite la grande zone vide sous le texte */
    padding: 18px 16px;
    text-align: center;
    gap: 8px;
    /* Neutraliser la grille définie pour desktop */
    grid-template-rows: initial;
    --cardTitleHeight: auto;
  }
  #home-app section.obstacles-section .obstacles .obstacle-cards .obstacle-card h3 {
    margin: 0;
  }
  #home-app section.obstacles-section .obstacles .obstacle-cards .obstacle-card p {
    margin: 0;
  }
}
#home-app section.partenaires-section {
  text-align: center;
  padding: 5rem 0;
}
#home-app section.partenaires-section .section-title {
  font-size: clamp(28px, 2vw + 18px, 42px);
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
}
#home-app section.partenaires-section .gallerie-partenaire {
  margin: 0 auto;
  max-width: 1100px;
}
#home-app section.partenaires-section .gallerie-partenaire .partenaire {
  padding: 1rem;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
#home-app section.partenaires-section .gallerie-partenaire .partenaire img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}
#home-app section.partenaires-section .partenaires-actions {
  margin: 4rem 0 5rem 0;
}
#home-app section.partenaires-section .partenaires-actions .btn-orange {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--color-coral);
  color: var(--color-coral);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
#home-app section.partenaires-section .partenaires-actions .btn-orange:hover {
  background: var(--color-coral);
  color: #fff;
}
#home-app section.partenaires-section .slick-dots {
  bottom: -20px;
}
#home-app section.partenaires-section .slick-dots li {
  margin: 0 6px;
}
#home-app section.partenaires-section .slick-dots li button:before {
  font-size: 8px;
  color: rgba(0, 0, 0, 0.3);
}
#home-app section.partenaires-section .slick-dots li.slick-active button:before {
  color: var(--color-coral);
}
#home-app section.partenaires-section .slick-prev,
#home-app section.partenaires-section .slick-next {
  width: 40px;
  height: 40px;
  z-index: 5;
}
#home-app section.partenaires-section .slick-prev:before,
#home-app section.partenaires-section .slick-next:before {
  font-size: 40px;
  color: var(--color-coral);
}

/* Overrides to harmonize spacing on homepage partners section */
#home-app section.partenaires-section .section-title {
  margin-bottom: clamp(24px, 3.5vw, 40px);
  /* align width to obstacles container */
  width: var(--siteMaxWidth);
  margin-left: auto;
  margin-right: auto;
}
#home-app section.partenaires-section .gallerie-partenaire {
  /* expand to same width as obstacles */
  width: var(--siteMaxWidth);
  max-width: var(--siteMaxWidth);
  margin: 0 auto clamp(24px, 3.5vw, 40px);
  position: relative;
}
#home-app section.partenaires-section .partenaires-actions {
  /* add more space before the next title */
  margin: 0 0 clamp(80px, 10vw, 140px) 0;
  /* keep actions aligned to same width */
  width: var(--siteMaxWidth);
  margin-left: auto;
  margin-right: auto;
}
#home-app section.partenaires-section .slick-prev:before,
#home-app section.partenaires-section .slick-next:before {
  opacity: 0;
}
#home-app section.partenaires-section .slick-prev,
#home-app section.partenaires-section .slick-next {
  width: auto;
  height: auto;
  z-index: 5;
}
#home-app section.partenaires-section .gallerie-partenaire .slick-prev {
  left: -36px;
}
#home-app section.partenaires-section .gallerie-partenaire .slick-next {
  right: -36px;
}
@media (max-width: 768px) {
  #home-app section.partenaires-section .gallerie-partenaire .slick-prev {
    left: -24px;
  }
  #home-app section.partenaires-section .gallerie-partenaire .slick-next {
    right: -24px;
  }
}
#home-app section.pitch-section {
  z-index: 0;
  position: relative;
  padding: 6rem 0 5rem 0;
}
#home-app section.pitch-section .ellipse,
#home-app section.pitch-section .square,
#home-app section.pitch-section .circle {
  display: none;
}
#home-app section.pitch-section .pitch {
  position: relative;
  width: var(--siteMaxWidth);
  margin: auto;
  z-index: 2;
}
#home-app section.pitch-section .pitch .pitch-title {
  text-align: center;
  font-size: clamp(26px, 2vw + 18px, 38px);
  font-weight: 900 !important;
  margin-bottom: 7rem;
}
#home-app section.pitch-section .pitch p:first-of-type {
  margin: 0 0 2rem 0;
}
#home-app section.pitch-section .pitch .cards {
  display: flex;
  column-gap: 3%;
  margin: 5rem 0 0 0;
}
#home-app section.pitch-section .pitch .cards figure {
  flex: 1;
  text-align: center;
}
#home-app section.pitch-section .pitch .cards figure img {
  width: 50%;
  margin: auto;
}
#home-app section.pitch-section .pitch .cards figure p {
  font-size: 1.6rem;
  font-weight: 600;
}

@media only screen and (max-width: 1280px) {
  section.pitch-section .pitch .cards figure p {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 992px) {
  section.pitch-section .pitch .cards figure img {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  #home-app section.pitch-section .pitch .cards {
    flex-wrap: wrap;
  }
  #home-app section.pitch-section .pitch .cards figure {
    flex: auto;
    width: 40%;
  }
  #home-app section.pitch-section .pitch .cards figure img {
    width: 30%;
  }
  #home-app section.pitch-section .pitch .cards figure figcaption {
    width: 80%;
    margin: 1.5rem auto 0 auto;
  }
}
@media only screen and (max-width: 460px) {
  #home-app section.pitch-section .pitch .cards {
    flex-direction: column;
  }
  #home-app section.pitch-section .pitch .cards figure {
    width: 80%;
    margin: 0 auto 1.5rem auto;
  }
  #home-app section.pitch-section .pitch .cards figure img {
    width: 40%;
  }
  #home-app section.pitch-section .pitch .cards figure figcaption {
    width: 100%;
  }
}
#home-app section.resultats {
  padding: 6rem 0 5rem 0;
}

#home-app .resultats__container {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "content" "media";
  align-items: start;
  gap: clamp(22px, 4vw, 40px);
}

#home-app .resultats__title {
  grid-area: title;
  margin: 0 0 clamp(24px, 3.5vw, 40px) 0;
  font-size: clamp(26px, 2vw + 18px, 38px);
  font-weight: 900;
  line-height: 1.2;
  color: #121316;
  text-align: center;
}

#home-app .resultats__content {
  grid-area: content;
  max-width: 70ch;
}
#home-app .resultats__content p {
  margin: 0 0 1.8rem 0;
  font-size: clamp(15px, 0.9vw + 12px, 18px);
  line-height: 1.7;
  color: #4b545d;
}
#home-app .resultats__content .resultats__intro {
  font-weight: 400;
  margin-top: 2rem;
}

/* Media next to the content */
#home-app .resultats__media {
  grid-area: media;
  border-radius: 10px;
  overflow: hidden;
  margin: 0; /* remove default figure margin */
  /* Decorative frame (green) */
  border: 2px solid #dfeee3; /* light green frame */
  box-shadow: 10px 10px 0 var(--color-green);
}
#home-app .resultats__media img {
  display: block;
  width: 100%;
  height: auto; /* no cropping, full image */
  border-radius: 8px;
}

@media (min-width: 980px) {
  #home-app .resultats__container {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: "title title" "content media";
    align-items: start;
  }
}
#home-app .resultats__list {
  /* custom bullets: match home intro dots */
  list-style: none;
  padding: 0;
  /* add bottom margin to match paragraph spacing */
  margin: 2rem 0 1.8rem 0;
  display: grid;
  gap: 1.2rem;
}
#home-app .resultats__list li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(15px, 0.9vw + 12px, 18px);
  line-height: 1.6;
  color: #4b545d;
}
#home-app .resultats__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4CAF84; /* keep green */
  box-shadow: 0 0 0 6px rgba(76, 175, 132, 0.18);
  flex: 0 0 auto;
  align-self: start;
  margin-top: 0.25em; /* optical alignment */
  margin-right: 10px;
}
#home-app .resultats__list li .first {
  color: #4CAF84;
  font-weight: 800;
  margin-right: 0.25em; /* ensure small space after the bold word */
  white-space: nowrap; /* keep the highlighted word on one line */
}

@media (min-width: 980px) {
  #home-app .resultats__list li::before {
    width: 12px;
    height: 12px;
    margin-top: 0.3em;
    margin-right: 12px;
  }
}
/* global scope */
section.temoignages-section {
  padding: clamp(40px, 7vw, 80px) 0;
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll from transform */
}
section.temoignages-section .temoignages {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  /* much smaller dots */
}
section.temoignages-section .temoignages .tmo__title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(28px, 2vw + 18px, 42px);
  margin-bottom: clamp(24px, 4vw, 40px);
}
section.temoignages-section .temoignages .tmo__viewport {
  width: min(1200px, 92%);
  margin-inline: auto;
  position: relative;
  /* unified target height for cards, kept modest */
  --tmoCardH: clamp(220px, 28vw, 300px);
}
section.temoignages-section .temoignages .tmo__track {
  display: flex;
  align-items: stretch; /* equalize slide/card heights */
  transition: transform 0.6s ease;
}
section.temoignages-section .temoignages .tmo__slide {
  min-width: 100%;
  padding: clamp(8px, 1.2vw, 16px);
  display: flex; /* allow child card to stretch to same height */
}
section.temoignages-section .temoignages .tmo__card {
  display: grid;
  grid-template-columns: clamp(140px, 22%, 240px) 1fr;
  align-items: center;
  gap: clamp(12px, 2vw, 24px); /* tighter spacing to reduce height */
  border-radius: 10px;
  padding: clamp(16px, 3vw, 32px); /* smaller paddings */
  color: #fff;
  overflow: hidden;
  height: 100%;
  min-height: var(--tmoCardH);
  cursor: pointer;
  outline: none;
}
section.temoignages-section .temoignages .tmo__card:focus-visible {
  box-shadow: 0 0 0 3px rgba(140, 179, 219, 0.35);
}
section.temoignages-section .temoignages .tmo__avatar {
  width: clamp(84px, 14vw, 120px); /* reduced avatar size */
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.25);
  justify-self: center;
  flex: 0 0 auto;
}
section.temoignages-section .temoignages .tmo__content {
  display: grid;
  gap: clamp(12px, 1.8vw, 20px);
  grid-template-rows: auto 1fr auto; /* keep signature aligned bottom */
  min-width: 0;
}
section.temoignages-section .temoignages .tmo__quote {
  margin: 0;
  line-height: 1.6; /* tighter for smaller overall height */
  font-size: clamp(14px, 0.9vw + 12px, 18px);
  /* clamp number of lines to avoid overly tall cards */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
section.temoignages-section .temoignages .tmo__sig {
  text-align: right;
}
section.temoignages-section .temoignages .tmo__author {
  margin: 0 0 2px 0;
  font-weight: 800;
}
section.temoignages-section .temoignages .tmo__role {
  margin: 0;
  opacity: 0.9;
}
section.temoignages-section .temoignages .tmo__dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: clamp(12px, 1.6vw, 16px);
}
section.temoignages-section .temoignages .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}
section.temoignages-section .temoignages .dot.is-active {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.8); /* still tiny but visible */
}
section.temoignages-section .temoignages .is-blue .tmo__card {
  background: var(--color-blue);
}
section.temoignages-section .temoignages .is-coral .tmo__card {
  background: var(--color-coral);
}
section.temoignages-section .temoignages .is-green .tmo__card {
  background: var(--color-green);
}
@media (max-width: 820px) {
  section.temoignages-section .temoignages .tmo__viewport {
    --tmoCardH: clamp(200px, 50vw, 280px);
  }
  section.temoignages-section .temoignages .tmo__card {
    grid-template-columns: 1fr; /* stack avatar above content */
    text-align: left;
    height: 100% !important; /* keep equal heights on mobile too */
  }
  section.temoignages-section .temoignages .tmo__sig {
    text-align: left;
  }
  section.temoignages-section .temoignages .tmo__avatar {
    width: clamp(80px, 26vw, 110px);
  }
  section.temoignages-section .temoignages .tmo__quote {
    -webkit-line-clamp: 5;
  }
}

/* Modal for full testimonial (global so it works on shared components) */
.tmo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.tmo-modal .modal-card {
  background: #fff;
  width: min(900px, 92vw);
  max-height: 88vh;
  overflow: auto;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  padding: 2rem 2.4rem;
  position: relative;
}
.tmo-modal .modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e3e8ef;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tmo-modal .modal-close:hover {
  background: var(--color-coral);
  color: #fff;
  border-color: var(--color-coral);
}
.tmo-modal .modal-header {
  margin-bottom: 1rem;
}
.tmo-modal .modal-header .name {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 800;
}
.tmo-modal .modal-header .role {
  margin: 0.2rem 0 0;
  opacity: 0.8;
}
.tmo-modal .modal-body .tmo-fullp {
  margin: 0 0 0.9rem;
  line-height: 1.6;
}

@media (max-width: 460px) {
  .tmo-modal .modal-card {
    width: 94vw;
    padding: 1.6rem;
  }
}
@charset "UTF-8";
#podcasts-app section.hero-section {
  background: #fff;
  position: relative;
  z-index: 0;
  overflow: clip;
  /* Hero banner (matches home landing height) */
}
#podcasts-app section.hero-section .podcasts-hero {
  width: 100%;
  background: url(/build/images/hero.94669763.jpg) no-repeat center 10%;
  background-size: cover;
  /* Match home hero vertical sizing via paddings */
  padding-top: clamp(200px, 18vw, 320px);
  padding-bottom: clamp(160px, 12vw, 280px);
}

/* =================== Responsive =================== */
/* ≤ 1280px */
@media only screen and (max-width: 1280px) {
  #podcasts-app section.hero-section .landing .about-grid {
    gap: 4rem;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud {
    min-height: 300px;
  }
}
/* ≤ 992px (tablets) */
@media only screen and (max-width: 992px) {
  #podcasts-app section.hero-section .landing .intro .intro-text {
    max-width: 100%;
  }
  #podcasts-app section.hero-section .landing .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud {
    min-height: 260px;
    margin-top: 1rem;
    /* Tweak tag positions for a narrower column */
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(1) {
    top: 0;
    right: 4%;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(2) {
    top: 52px;
    left: 4%;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(3) {
    top: 120px;
    left: 36%;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(4) {
    top: 100px;
    right: 8%;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(5) {
    top: 180px;
    left: 6%;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(6) {
    top: 200px;
    right: 4%;
  }
  #podcasts-app section.hero-section .landing .about-grid .tag-cloud .tag:nth-child(7) {
    bottom: 0;
    right: 14%;
  }
}
/* ≤ 460px (phones) */
@media only screen and (max-width: 460px) {
  #podcasts-app section.hero-section .landing {
    padding: 3rem 0 4rem;
  }
}
#podcasts-app .podcasts-page {
  --padH: clamp(16px, 4vw, 32px);
}
#podcasts-app .podcasts-page .podcasts-container {
  width: var(--siteMaxWidth);
  margin: 0 auto;
  padding-inline: var(--padH);
}
#podcasts-app .podcasts-page ul li {
  list-style-type: disc;
}
#podcasts-app .podcasts-page .podcasts-hero {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: clamp(40px, 6vw, 80px) 0;
  border-block: 1px solid rgba(140, 179, 219, 0.18);
}
#podcasts-app .podcasts-page .podcasts-hero h1 {
  margin: 0 0 0.6rem;
  text-align: center;
  font-weight: 800;
  color: var(--color-dark-blue);
  font-size: clamp(32px, 2.6vw + 18px, 54px);
}
#podcasts-app .podcasts-page .podcasts-hero .lead {
  text-align: center;
  color: var(--color-coral);
  font-weight: 700;
  font-size: clamp(16px, 1.2vw + 12px, 22px);
}
#podcasts-app .podcasts-page .podcasts-hero p {
  max-width: 78ch;
  margin: 0.8rem auto;
  line-height: 1.7;
  color: #333;
}
#podcasts-app .podcasts-page .podcasts-hero .intro-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 1rem auto;
  max-width: 74ch;
}
#podcasts-app .podcasts-page .prizes {
  padding: 40px 0 20px;
}
#podcasts-app .podcasts-page .prizes h2 {
  text-align: center;
  font-size: clamp(26px, 2vw + 18px, 38px);
  margin: 0 0 24px;
}
#podcasts-app .podcasts-page .prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  #podcasts-app .podcasts-page .prize-grid {
    grid-template-columns: 1fr;
  }
}
#podcasts-app .podcasts-page .prize-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
#podcasts-app .podcasts-page .prize-card .prize-card__content {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
#podcasts-app .podcasts-page .prize-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
#podcasts-app .podcasts-page .prize-card__media img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}
#podcasts-app .podcasts-page .prize-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--color-dark-blue);
}
#podcasts-app .podcasts-page .prize-card__desc {
  margin: 0;
  color: #333;
}
#podcasts-app .podcasts-page .prize-card--coral {
  border-color: rgba(247, 157, 133, 0.35);
  box-shadow: 10px 10px 0 rgba(247, 157, 133, 0.45);
}
#podcasts-app .podcasts-page .prize-card--blue {
  border-color: rgba(140, 179, 219, 0.35);
  box-shadow: 10px 10px 0 rgba(140, 179, 219, 0.45);
}
#podcasts-app .podcasts-page .prize-card--green {
  border-color: rgba(165, 208, 168, 0.35);
  box-shadow: 10px 10px 0 rgba(165, 208, 168, 0.45);
}
#podcasts-app .podcasts-page .availability {
  text-align: center;
  margin: 18px 0 0;
  color: var(--color-dark-blue);
  font-weight: 600;
}
#podcasts-app .podcasts-page .rules {
  padding-block: 4rem;
}
#podcasts-app .podcasts-page .rules h2 {
  text-align: center;
  margin: 0 0 10px;
}
#podcasts-app .podcasts-page .rules .version {
  text-align: center;
  color: #666;
  margin: 0 0 28px;
}
#podcasts-app .podcasts-page .rules h3 {
  margin: 24px 0 8px;
  color: var(--color-dark-blue);
}
#podcasts-app .podcasts-page .rules p {
  margin: 0 0 12px;
  line-height: 1.7;
}
#podcasts-app .podcasts-page .rules p a {
  color: var(--color-coral);
}
#podcasts-app .podcasts-page .rules ul {
  margin: 0 0 12px 1.25rem;
}
#podcasts-app .podcasts-page .rules ul li {
  list-style-type: disc;
}
#podcasts-app .podcasts-page .rules .rules-footer {
  text-align: center;
}
#podcasts-app .podcasts-page .rules .rules-footer img {
  margin-block: 5rem 3rem;
  width: 75%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}
#podcasts-app .podcasts-page .rules .rules-footer p {
  text-align: left;
}
#btn-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 25px;
  font-size: 30px;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid var(--color-coral);
  border-radius: 0.5rem;
  background-color: var(--color-blue);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  z-index: 3;
}
#btn-back-to-top svg {
  font-size: 30px;
}

/* Large devices (Monitors, 1440px and down) 
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down)
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: 992px) {
}

/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 389px and down) 
@media only screen and (max-width: 389px) {
} */
#projets-app section.clients-section {
  z-index: 0;
  position: relative;
  padding: 5rem 0;
}
#projets-app section.clients-section .circle {
  width: 66%;
  aspect-ratio: 1/1;
  clip-path: circle(46% at 71% 47%);
  position: absolute;
  top: 25%;
  right: 0%;
  z-index: 0;
  background-color: var(--color-green);
  opacity: 0.2;
}
#projets-app section.clients-section .clients {
  position: relative;
  width: 90%;
  margin: auto;
  z-index: 1;
}
#projets-app section.clients-section .clients .clients-header {
  text-align: center;
}
#projets-app section.clients-section .clients .clients-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
}
#projets-app section.clients-section .clients .clients-header h3 {
  font-weight: 400;
  font-size: 1.8rem;
}
#projets-app section.clients-section .clients .clients-content ul {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 10px;
  list-style: none;
  margin: 4rem 0;
  flex-wrap: wrap;
}
#projets-app section.clients-section .clients .clients-content ul li {
  font-weight: 700;
  font-size: 2.1rem;
  cursor: pointer;
  margin: 8px 15px;
}
#projets-app section.clients-section .clients .clients-content ul li .client-filter-dot {
  margin-right: 1rem;
}
#projets-app section.clients-section .clients .clients-content ul li.active {
  background-color: var(--color-blue);
  padding: 1rem 3rem;
  border-radius: 5rem;
  color: white;
  cursor: context-menu;
}
#projets-app section.clients-section .clients .clients-content ul li.active .client-filter-dot {
  display: none;
  margin: 0;
}
#projets-app section.clients-section .clients .clients-content ul li.active.graphisme {
  background-color: var(--color-coral);
  color: #000000;
}
#projets-app section.clients-section .clients .clients-content ul li.active.social-media {
  background-color: var(--color-blue);
  color: black;
}
#projets-app section.clients-section .clients .clients-content ul li.active.seo {
  background-color: var(--color-green);
  color: #000000;
}
#projets-app section.clients-section .clients .clients-content ul li.active.site-web {
  background-color: #000000;
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content ul li.active.events {
  background-color: var(--color-light-blue);
  color: black;
}
#projets-app section.clients-section .clients .clients-content ul li.active.creation-contenu {
  background-color: #ececec;
  color: #000000;
}
#projets-app section.clients-section .clients .clients-content ul li.active.newsletter {
  background-color: var(--color-dark-green);
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content ul li.active.marketing {
  background-color: var(--color-dark-blue);
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content ul a {
  font-weight: 600;
  text-transform: uppercase;
}
#projets-app section.clients-section .clients .clients-content .clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: space-evenly;
  margin: 4rem 0;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client {
  position: relative;
  margin-block: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding-block: 2rem;
  background-color: #ffffff;
  width: 28%;
  --text-color: #000000;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client.dark {
  --text-color: #f5f5f5;
  background-color: rgba(0, 0, 0, 0.4196078431);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client.dark:hover {
  --text-color: #000000;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client:hover {
  --text-color: var(--color-dark-blue);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client[href=""], #projets-app section.clients-section .clients .clients-content .clients-list .client:not([href]) {
  cursor: default;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-logo {
  height: 100px;
  text-align: center;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-logo.dark {
  background-color: black;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
  margin: auto;
  max-width: 80%;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .project-name {
  margin-top: 4rem;
  text-align: center;
  font-weight: 500;
  color: var(--text-color);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags {
  position: absolute;
  bottom: 21%;
  right: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container {
  position: relative;
  margin-block: 5px;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .tooltip {
  visibility: hidden;
  width: 120px;
  background-color: var(--color-blue);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.5s;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag {
  background-color: var(--color-blue);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag:last-child {
  margin-bottom: 0;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.graphisme {
  background-color: var(--color-coral);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.graphisme + .tooltip {
  background-color: var(--color-coral);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.social-media {
  background-color: var(--color-blue);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.social-media + .tooltip {
  background-color: var(--color-blue);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.seo {
  background-color: var(--color-green);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.seo + .tooltip {
  background-color: var(--color-green);
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.site-web {
  background-color: #000000;
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.site-web + .tooltip {
  background-color: #000000;
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.events {
  background-color: #5ac8fa;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.events + .tooltip {
  background-color: #5ac8fa;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.creation-contenu {
  background-color: #ececec;
  color: #000000;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.creation-contenu + .tooltip {
  background-color: #ececec;
  color: #000000;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.newsletter {
  background-color: var(--color-dark-green);
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.newsletter + .tooltip {
  background-color: var(--color-dark-green);
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.marketing {
  background-color: var(--color-dark-blue);
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container .client-tag.marketing + .tooltip {
  background-color: var(--color-dark-blue);
  color: #ffffff;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .projet-link {
  margin: 1rem 0 5.5rem 10%;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .projet-link a {
  color: black;
}
#projets-app section.clients-section .clients .clients-content .clients-list .client .projet-link::after {
  content: "";
  display: block;
  width: 25%;
  height: 1.5px; /* Adjust the height to control the thickness of the line */
  background-color: var(--color-coral); /* Adjust the color of the line */
  margin-top: 10px; /* Adjust the spacing between the paragraph and the line */
}

/* Large devices (Monitors, 1440px and down) */
@media only screen and (max-width: 1440px) {
  #projets-app section.clients-section .clients .clients-content ul li {
    font-size: 1.8rem;
  }
  #projets-app section.clients-section .clients .clients-content .clients-list {
    gap: 0%;
  }
  #projets-app section.clients-section .clients .clients-content .clients-list .client .client-image {
    width: 90%;
  }
  #projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags {
    bottom: 10%;
    right: 5%;
  }
  #projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags .client-tag {
    font-size: 1.5rem;
  }
  #projets-app section.clients-section .clients .clients-content .clients-list .client .projet-link {
    margin: 1rem 0 5.5rem 5%;
  }
}
/* Medium devices (Laptop, 1280px and down) */
@media only screen and (max-width: 1280px) {
  #projets-app section.clients-section .clients .clients-content .clients-list .client .client-tags {
    bottom: 20%;
  }
}
/* Small devices (tablets, 992px and down)*/
@media only screen and (max-width: 992px) {
  #projets-app section.clients-section .clients .clients-content .clients-list .client {
    width: 45%;
  }
}
/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
  #projets-app section.clients-section .clients .clients-content > ul {
    padding-left: 0;
    margin-block: 2rem;
    flex-direction: column;
    column-gap: 0px;
  }
  #projets-app section.clients-section .clients .clients-list {
    margin-block: 2rem;
  }
}
/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 568px) {
  #projets-app section.clients-section .clients .clients-content .clients-list .client {
    width: 95%;
  }
}
/* Tiny devices (phones, 389px and down)
@media only screen and (max-width: $sphoneMax) {
    #projets-app section.clients-section {
        // Max width of the site
        --projectsMaxWidth: 90%;
    }
}
*/
.client-container {
  position: relative;
}

/* Large devices (Monitors, 1440px and down)
@media only screen and (max-width: 1440px) {
}

/* Medium devices (Laptop, 1280px and down) 
@media only screen and (max-width: 1280px) {
}

/* Small devices (tablets, 992px and down)
@media only screen and (max-width: 992px) {
}

/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 568px) {
}

/* Tiny devices (phones, 389px and down)
@media only screen and (max-width: 389px) {
}
*/
@font-face {
  font-family: "Mainstay";
  src: local("Mainstay"), url(/build/fonts/Mainstay.97c0ee71.ttf) format("truetype");
  font-weight: 500;
}
:root {
  --color-blue: #8cb3db;
  --color-coral: #f79d85;
  --color-green: #a5d0a8;
  --color-dark-blue: #3a658f;
  --color-dark-green: #5e8c6a;
  --color-light-blue: #5ac8fa;
  --color-light-coral: #ffbcaa;
  --monitorScreenMin: "1440px";
  --laptopScreenMax: "1280px";
  --tabletScreenMax: "992px";
  --phoneScreenMax: "767px";
  --sphoneMax: "389px";
  --siteMaxWidth: 80%;
}

/* Large devices (Monitors, 1440px and down) */
@media only screen and (max-width: 1440px) {
  :root {
    --siteMaxWidth: 80%;
  }
}
/* Medium devices (Laptop, 1280px and down)*/
@media only screen and (max-width: 1280px) {
  :root {
    --siteMaxWidth: 90%;
  }
}
/* Small devices (tablets, 992px and down)*/
@media only screen and (max-width: 992px) {
  :root {
    --siteMaxWidth: 90%;
  }
}
/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 767px) {
  :root {
    --siteMaxWidth: 90%;
  }
}
/* Tiny devices (phones, 389px and down)*/
@media only screen and (max-width: 389px) {
  :root {
    --siteMaxWidth: 90%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  text-decoration: none;
  list-style: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  /* Chrome, Edge, and Safari */
}
body *::-webkit-scrollbar {
  width: 10px;
}
body *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0901960784);
  border-radius: 10px;
}
body *::-webkit-scrollbar-thumb {
  background-color: var(--color-coral);
  border-radius: 10px;
  border: 3px none rgba(0, 0, 0, 0.0901960784);
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body {
  font-size: 1.8rem;
  scroll-behavior: smooth;
}

h1 {
  font-size: 4rem;
  font-weight: 600;
}

h2 {
  font-size: clamp(28px, 2vw + 18px, 42px);
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 clamp(24px, 3vw, 32px) 0;
}

h3 {
  margin-bottom: 2rem;
}

a {
  color: white;
}

.bold {
  font-weight: 600 !important;
}

.right-align {
  text-align: right;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.text-coral {
  color: var(--color-coral);
}

.text-blue {
  color: var(--color-blue);
}

.text-green {
  color: var(--color-green);
}

.mobile-title,
.mobile-only {
  display: none;
}

/* Medium devices (Laptop, 1280px and down) */
@media only screen and (max-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
/* Small devices (tablets, 1024px and down)
@media only screen and (max-width: 1024px) {
}

/* Extra small devices (phones, 992px and down) */
@media only screen and (max-width: 992px) {
  .mobile-none {
    display: none;
  }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
  .mobile-title,
  .mobile-only {
    display: block;
  }
  .pc-title {
    display: none;
  }
  .pc-only {
    display: none;
  }
  h2 {
    font-size: 3.2rem;
  }
}
/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 360px) {
  h2 {
    font-size: 2.9rem;
    position: relative;
    z-index: 10;
  }
}
@media only screen and (max-width: 320px) {
  h2 {
    font-size: 2.8rem;
  }
}
.root {
  overflow-y: hidden;
}

.section-container {
  width: min(var(--siteMaxWidth, 1200px), 92%);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
