
:root {
  --coral:#FB926B; --coral-bg:#fddfd8;
  --mint:#BAFAEE;  --mint-bg:#dffdf7;
  --periwinkle:#BFCCFB; --periwinkle-bg:#dee5fd;
  --cream:#FEECC2; --cream-grid:#fbefd3;
  --rose:#FFCEEC;  --rose-mid:#FF9DB8;
  --ink:#161616; --ink-dark:#2a2a2a; --ink-mid:#555; --ink-soft:#888;
  --body-bg:#F2F2F2; --hero-bg:#BAFAEE;
  --white:#F2F2F2; --border:#161616; --mid:#c8c8c8;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --sans: 'Lato', system-ui, sans-serif;
  --r:0px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family: var(--sans);background:var(--body-bg);color:var(--ink);font-size:16.8px;line-height:1.75}
.container{max-width:1240px;margin:0 auto;padding:0 3rem}
section{padding:6rem 0 8rem}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;padding:1.1rem 3rem;background:var(--body-bg);border-bottom:1.5px solid var(--mid)}
.nav-top{display:flex;align-items:center;gap:3rem}
.logo{font-size:1.25rem;font-weight:700;color:var(--ink);text-decoration:none;letter-spacing:-.03em}
.logo em{font-style:normal;color:var(--coral)}
.nav-secondary{display:flex;align-items:center;gap:1.5rem;list-style:none}
.nav-secondary a{font-size:.78rem;font-weight:500;color:var(--ink-soft);text-decoration:none;letter-spacing:.05em;transition:color .2s}
.nav-secondary a:hover{color:var(--ink)}
.nav-secondary .nav-btn{background:var(--coral);color:#fff;padding:.45rem 1.2rem;border:1.5px solid var(--coral);font-weight:600;transition:background .18s}
.nav-secondary .nav-btn:hover{background:var(--ink);border-color:var(--ink)}
.nav-main{display:flex;align-items:center;gap:2rem;list-style:none}
.nav-main > li{position:relative}
.nav-main a{text-decoration:none;font-size:.82rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;color:var(--ink-mid);transition:color .2s;display:flex;align-items:center;gap:.3rem}
.nav-main a:hover,.nav-main a.active{color:var(--ink)}
.nav-main a svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2}
.dropdown{position:absolute;top:100%;left:0;background:var(--body-bg);border:1.5px solid var(--border);box-shadow:4px 4px 0 rgba(0,0,0,.1);min-width:200px;opacity:0;pointer-events:none;transform:translateY(-6px);transition:opacity .18s,transform .18s;z-index:300;padding-top:4px}
.nav-main > li:hover .dropdown{opacity:1;pointer-events:all;transform:none}
.dropdown a{display:block;padding:.7rem 1.2rem;font-size:.82rem;font-weight:500;color:var(--ink-mid);text-decoration:none;letter-spacing:.04em;text-transform:none;border-bottom:1px solid var(--mid);transition:background .15s,color .15s}
.dropdown a:last-child{border-bottom:none}
.dropdown a:hover{background:var(--mint);color:var(--ink)}

/* ── HERO ── */
.hero{background:var(--hero-bg);min-height:100svh;display:flex;align-items:center;position:relative;overflow:hidden;padding-top:68px}
.hero-grid{position:absolute;inset:0;background-image:radial-gradient(circle,rgba(22,22,22,.12) 1.5px,transparent 1.5px);background-size:36px 36px;animation:gridMove 30s linear infinite}
@keyframes gridMove{from{background-position:0 0}to{background-position:36px 36px}}
.hero-inner{position:relative;z-index:2;max-width:1240px;margin:0 auto;width:100%;padding:5rem 3rem;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center}
.hero-eyebrow{font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-mid);margin-bottom:1.2rem;display:flex;align-items:center;gap:.6rem}
.hero-eyebrow::before{content:'';width:28px;height:2px;background:var(--coral)}
h1.hero-title{font-size:clamp(3rem,6vw,5.5rem);font-weight:700;letter-spacing:-.05em;line-height:1.0;margin-bottom:1.5rem;color:var(--ink)}
h1.hero-title em{font-style:normal;font-weight:700}
.hero-subtitle{font-size:1.1rem;line-height:1.78;color:var(--ink-mid);max-width:50ch;margin-bottom:2.5rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}
.hero-visual{position:relative}
.hero-cards-stack{display:flex;flex-direction:column;gap:1rem}
.hero-card{
  background-color:rgba(255,255,255,.82);
  background-image:radial-gradient(circle,rgba(22,22,22,.12) 1px,transparent 1px);
  background-size:18px 18px;
  border:1.5px solid rgba(22,22,22,.28);
  border-radius:16px;
  padding:1.4rem 1.8rem;
  display:flex;align-items:flex-start;gap:1.2rem;
  box-shadow:3px 4px 0 rgba(0,0,0,.14);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1),box-shadow .25s,border-color .2s;
  text-decoration:none;color:inherit;cursor:pointer;
}
.hero-card:hover{transform:translateX(5px) translateY(-2px);box-shadow:5px 7px 0 rgba(0,0,0,.2);border-color:var(--ink)}
.hc-icon{width:38px;height:38px;flex-shrink:0;display:flex;align-items:center;justify-content:center;border:1.5px solid rgba(22,22,22,.2);border-radius:10px}
.hc-icon svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hci-mint{background:var(--mint);color:#0d6b5e}
.hci-coral{background:var(--coral-bg);color:var(--coral)}
.hci-peri{background:var(--periwinkle);color:#2a40a0}
.hci-cream{background:var(--cream);color:#8a6010}
.hc-label{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);margin-bottom:.2rem}
.hc-val{font-size:.9rem;font-weight:600;color:var(--ink)}

/* ── ACTIVITES ── */
.activites-section{background:var(--body-bg)}
.activites-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:1rem}
.act-wrap{background:var(--cream-grid);border:1.5px solid var(--border);border-radius:12px;padding:1.25rem}
.act-card{background:var(--white);border:1.5px solid var(--border);padding:2.2rem;box-shadow:3px 3px 0 rgba(0,0,0,.1);transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s;cursor:pointer;position:relative;overflow:hidden}
.act-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:left;transition:transform .3s}
.act-card:hover{transform:translateY(-3px);box-shadow:5px 8px 0 rgba(0,0,0,.1)}
.act-card:hover::before{transform:scaleX(1)}
.ac-coral::before{background:var(--coral)}
.ac-mint::before{background:var(--mint)}
.ac-peri::before{background:var(--periwinkle)}
.ac-cream::before{background:var(--cream)}
.act-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--border);margin-bottom:1.4rem}
.act-icon svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.act-title{font-size:1.05rem;font-weight:700;letter-spacing:-.02em;margin-bottom:.6rem}
.act-desc{font-size:.9rem;color:var(--ink-mid);line-height:1.7;margin-bottom:1.3rem;flex:1}
.act-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.82rem;font-weight:700;color:var(--ink);text-decoration:none;border-bottom:2px solid var(--ink);padding-bottom:2px;transition:color .2s,border-color .2s}
.act-link:hover{color:var(--coral);border-color:var(--coral)}
.act-link svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* ── RESSOURCES ── */
.ressources-section{background:var(--white)}
.ressources-list{display:flex;flex-direction:column;gap:1px;background:var(--mid);border:1.5px solid var(--border)}
.res-item{background:var(--white);display:grid;grid-template-columns:180px 1fr;gap:0;cursor:pointer;transition:background .2s;border-left:0 solid transparent;transition:all .2s}
.res-item:hover{background:var(--body-bg);border-left:3px solid var(--coral)}
.res-thumb{background:var(--mid);display:flex;align-items:center;justify-content:center;align-self:stretch;overflow:hidden}
.res-thumb svg{width:32px;height:32px;stroke:var(--ink-soft);fill:none;stroke-width:1.5}
.res-body{padding:1.4rem 1.8rem}
.res-meta{display:flex;align-items:center;gap:.75rem;margin-bottom:.6rem;flex-wrap:wrap}
.res-date{font-size:.75rem;color:var(--ink-soft);display:flex;align-items:center;gap:.3rem}
.res-date svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.res-title{font-size:1.05rem;font-weight:700;letter-spacing:-.02em;margin-bottom:.4rem;color:var(--ink);transition:color .2s}
.res-item:hover .res-title{color:var(--coral)}
.res-desc{font-size:.88rem;color:var(--ink-mid);line-height:1.6}
.res-more{display:inline-flex;align-items:center;gap:.35rem;font-size:.82rem;font-weight:700;color:var(--coral);margin-top:.6rem;text-decoration:none}
.res-more svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.res-more:hover svg{transform:translateX(3px)}

/* ── CE QUI NOUS ANIME ── */
.anime-section{background:var(--ink);padding:6rem 0}
.anime-inner{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.anime-visual{background:var(--cream-grid);border:1.5px solid var(--border);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.anime-visual-inner{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;padding:1.5rem;width:100%}
.anime-thumb{background:rgba(255,255,255,.15);background-size:cover;background-position:center;border:1.5px solid rgba(255,255,255,.2);aspect-ratio:1;display:flex;align-items:center;justify-content:center}
.anime-thumb svg{width:28px;height:28px;stroke:rgba(255,255,255,.4);fill:none;stroke-width:1.5}
.anime-kicker{font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--coral);margin-bottom:1rem;display:flex;align-items:center;gap:.6rem}
.anime-kicker::before{content:'';width:22px;height:2px;background:var(--coral)}
h2.anime-title{font-size:clamp(2rem,3.5vw,3rem);font-weight:700;letter-spacing:-.04em;line-height:1.05;color:#fff;margin-bottom:1.5rem}
h2.anime-title em{font-style:normal;font-weight:700;color:rgba(255,255,255,.6)}
.anime-text{font-size:1.02rem;line-height:1.85;color:rgba(255,255,255,.55);margin-bottom:2.5rem}
.anime-btns{display:flex;gap:1rem}
.btn-white{display:inline-flex;align-items:center;gap:.6rem;background:#fff;color:var(--ink);padding:.9rem 2rem;border:1.5px solid #fff;font-family: var(--sans);font-size:.95rem;font-weight:700;text-decoration:none;cursor:pointer;transition:background .18s,color .18s}
.btn-white:hover{background:var(--coral);color:#fff;border-color:var(--coral)}
.btn-ghost{display:inline-flex;align-items:center;gap:.6rem;background:transparent;color:rgba(255,255,255,.7);padding:.9rem 2rem;border:1.5px solid rgba(255,255,255,.25);font-family: var(--sans);font-size:.95rem;font-weight:600;text-decoration:none;cursor:pointer;transition:all .18s}
.btn-ghost:hover{border-color:#fff;color:#fff}

/* ── ACTUALITES ── */
.actu-section{background:var(--body-bg)}
.actu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.actu-wrap{background:var(--mint-bg);border:1.5px solid var(--border);border-radius:12px;padding:1.25rem}
.actu-card{background:var(--white);border:1.5px solid var(--border);box-shadow:3px 3px 0 rgba(0,0,0,.08);cursor:pointer;transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s;overflow:hidden}
.actu-card:hover{transform:translateY(-3px);box-shadow:5px 8px 0 rgba(0,0,0,.08)}
.actu-img{background:var(--mid);aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;border-bottom:1.5px solid var(--border)}
.actu-img svg{width:36px;height:36px;stroke:var(--ink-soft);fill:none;stroke-width:1.5}
.actu-body{padding:1.4rem}
.actu-type{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);margin-bottom:.5rem}
.actu-title{font-size:.95rem;font-weight:700;line-height:1.35;margin-bottom:.5rem;letter-spacing:-.01em;transition:color .2s}
.actu-card:hover .actu-title{color:var(--coral)}
.actu-desc{font-size:.85rem;color:var(--ink-mid);line-height:1.6;margin-bottom:.8rem}
.actu-link{display:inline-flex;align-items:center;gap:.35rem;font-size:.82rem;font-weight:700;color:var(--coral);text-decoration:none}
.actu-link svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.actu-link:hover svg{transform:translateX(3px)}

/* ── EQUIPE ── */
.equipe-section{background:var(--periwinkle-bg);border-top:1.5px solid var(--border);border-bottom:1.5px solid var(--border);padding:5rem 0}
.equipe-inner{display:grid;grid-template-columns:240px 1fr;gap:4rem;align-items:center}
.equipe-avatars{display:grid;grid-template-columns:1fr 1fr;gap:.5rem}
.equipe-avatar{width:100%;aspect-ratio:1;background:var(--mid);background-size:cover;background-position:center;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center}
.equipe-avatar svg{width:36px;height:36px;stroke:var(--ink-soft);fill:none;stroke-width:1.5}
.equipe-quote{font-size:3rem;font-weight:700;color:var(--coral);line-height:1;margin-bottom:1rem}
.equipe-text{font-size:1.05rem;line-height:1.85;color:var(--ink-mid);margin-bottom:1.5rem}
.equipe-name{font-size:.88rem;font-weight:700;color:var(--ink)}
.equipe-role{font-size:.82rem;color:var(--ink-soft)}
.equipe-cta{margin-top:1.8rem}

/* ── PARTENAIRES ── */
.partners-section{background:var(--white)}
.partners-track{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;margin-top:2.5rem}
.partner-card{background:var(--body-bg);aspect-ratio:2/1;display:flex;align-items:center;justify-content:center;transition:border-color .2s,background .2s}
.partner-card:hover{border-color:var(--border);background:var(--white)}
.partner-card svg{width:28px;height:28px;stroke:var(--ink-soft);fill:none;stroke-width:1.5}
.partner-name{font-size:.78rem;font-weight:600;color:var(--ink-soft);text-align:center;margin-top:.5rem}

/* ── FOOTER ── */
footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding:4.5rem 0 2rem}
.footer-top{display:grid;grid-template-columns:1.8fr 1fr 1fr 1.3fr;gap:3.5rem;margin-bottom:3.5rem;padding-bottom:3.5rem;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand .logo{color:rgba(255,255,255,.85);display:block;margin-bottom:1.1rem}
.footer-brand p{font-size:.85rem;line-height:1.75;color:rgba(255,255,255,.35);max-width:28ch;margin-bottom:1.6rem}
.footer-social{display:flex;gap:.6rem}
.social-btn{width:34px;height:34px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .2s}
.social-btn:hover{background:var(--coral);border-color:var(--coral)}
.social-btn svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.footer-col h4{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:1.1rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-col ul a{text-decoration:none;font-size:.92rem;color:rgba(255,255,255,.5);transition:color .2s}
.footer-col ul a:hover{color:var(--coral)}
.footer-newsletter input{width:100%;background:rgba(255,255,255,.06);border:1.5px solid rgba(255,255,255,.12);padding:.85rem 1rem;color:#fff;font-family: var(--sans);font-size:.92rem;margin-bottom:.6rem;outline:none;transition:border-color .2s}
.footer-newsletter input::placeholder{color:rgba(255,255,255,.25)}
.footer-newsletter input:focus{border-color:var(--coral)}
.footer-newsletter .btn-nl{width:100%;background:var(--coral);color:#fff;border:1.5px solid var(--coral);padding:.9rem;font-family: var(--sans);font-size:.92rem;font-weight:600;cursor:pointer;transition:background .2s}
.footer-newsletter .btn-nl:hover{background:#e07555}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.footer-copy{font-size:.75rem;color:rgba(255,255,255,.25)}
.footer-legal{display:flex;gap:2rem}
.footer-legal a{font-size:.75rem;color:rgba(255,255,255,.25);text-decoration:none;transition:color .2s}
.footer-legal a:hover{color:rgba(255,255,255,.6)}

/* ── STICKY SCROLL STACK ── */
.equipe-section{border-top:none}

/* ── STAGGER ANIMATIONS ── */
@keyframes fpStaggerUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:none}}

/* SECTION KICKER */
.s-kicker{font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--coral);display:flex;align-items:center;gap:.6rem;margin-bottom:.9rem}
.s-kicker::before{content:'';width:22px;height:2px;background:var(--coral)}
h2.s-title{font-size:clamp(2rem,3.5vw,3.2rem);font-weight:700;letter-spacing:-.04em;line-height:1.06;margin-bottom:1.2rem}
h2.s-title em{font-style:normal;font-weight:700;color:inherit}
.s-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3.5rem}
.link-all{display:inline-flex;align-items:center;gap:.5rem;font-size:.92rem;font-weight:700;text-decoration:none;color:var(--ink);border-bottom:2px solid var(--ink);padding-bottom:3px;transition:color .2s,border-color .2s,gap .2s}
.link-all:hover{color:var(--coral);border-color:var(--coral);gap:.8rem}
.link-all svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* REVEAL */
@keyframes up{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.23,1,.32,1),transform .7s}
.reveal.in{opacity:1;transform:none}
.rd1{transition-delay:.1s}.rd2{transition-delay:.2s}.rd3{transition-delay:.3s}

::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--body-bg)}
::-webkit-scrollbar-thumb{background:var(--mid)}
::-webkit-scrollbar-thumb:hover{background:var(--coral)}

/* ══════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════ */
@media(max-width:768px){
  body{font-size:16px}
  .container{padding:0 1.25rem}
  section{padding:3.5rem 0}

  /* Désactiver le sticky stack */
  .equipe-section{border-top:1.5px solid var(--border)}

  /* Hero — autoriser le contenu à s'afficher sans crop */
  .hero{overflow:visible;min-height:auto;padding-bottom:3rem}
  .hero-grid{border-radius:0}
  .hero-inner{grid-template-columns:1fr;gap:2rem;padding:3rem 1.25rem 1rem}
  h1.hero-title{font-size:clamp(2.4rem,10vw,3.4rem);margin-bottom:1.2rem}
  .hero-subtitle{font-size:1rem;margin-bottom:1.8rem}
  .hero-btns{flex-direction:column;gap:.75rem}
  .hero-btns a{width:100%;justify-content:center;text-align:center}

  /* Hero cards — scroll horizontal avec indicateur */
  .hero-visual{overflow:hidden}
  .hero-cards-stack{
    flex-direction:row;
    overflow-x:auto;
    gap:.6rem;
    padding-bottom:1rem;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .hero-card{min-width:72vw;flex-shrink:0;scroll-snap-align:start}
  /* Indicateur de scroll (ombre droite) */
  .hero-visual::after{
    content:'';
    position:absolute;right:0;top:0;bottom:0;
    width:40px;
    background:linear-gradient(to left,var(--hero-bg),transparent);
    pointer-events:none;
  }

  /* Section header */
  .s-header{flex-direction:column;align-items:flex-start;gap:.8rem;margin-bottom:2rem}

  /* Activités — 1 colonne pour tout voir */
  .activites-grid{grid-template-columns:1fr;gap:.75rem}
  .act-wrap{padding:.85rem}
  .act-card{padding:1.4rem}

  /* Ressources list */
  .res-item{grid-template-columns:1fr}
  .res-thumb{display:none}
  .res-body{padding:1rem 1.2rem}

  /* Ce qui nous anime */
  .anime-section .container{padding:0}
  .anime-inner{grid-template-columns:1fr;gap:2.5rem;padding:3.5rem 1.25rem}
  .anime-visual{aspect-ratio:auto;min-height:160px;display:none}
  h2.anime-title{font-size:clamp(1.8rem,8vw,2.6rem)}
  .anime-btns{flex-direction:column}
  .anime-btns a{width:100%;justify-content:center}

  /* Actualités */
  .actu-grid{grid-template-columns:1fr;gap:.75rem}
  .actu-wrap{padding:.85rem}

  /* Équipe — titre avant photos */
  .equipe-inner{grid-template-columns:1fr;gap:1.5rem}
  .equipe-inner > div:first-child{order:2}
  .equipe-inner > div:last-child{order:1}
  .equipe-avatars{grid-template-columns:repeat(4,1fr)}

  /* Partenaires */
  .partners-track{grid-template-columns:repeat(3,1fr);gap:.75rem}

  /* Footer */
  footer{padding:3rem 1.25rem 1.5rem}
  .footer-top{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:.6rem}
  .footer-legal{flex-wrap:wrap;gap:1rem}
}

@media(max-width:480px){
  .container{padding:0 1rem}
  h1.hero-title{font-size:clamp(2rem,10vw,2.8rem)}
  .hero-card{min-width:85vw}
  .activites-grid{grid-template-columns:1fr}
  .equipe-avatars{grid-template-columns:repeat(2,1fr)}
  .partners-track{grid-template-columns:repeat(2,1fr)}
}
