
/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--white); color: var(--ink);
       -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Sous-nav pages internes ── */
.subnav { background: var(--pale); border-bottom: 1px solid var(--line); }
.subnav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; gap: 0; overflow-x: auto;
}
.subnav-a {
  padding: 12px 16px; font-size: 12px; font-weight: 500;
  color: var(--sub); border-bottom: 2px solid transparent;
  white-space: nowrap; transition: color .15s, border-color .15s;
}
.subnav-a:hover   { color: var(--ink); }
.subnav-a.cur-e   { color: var(--e); border-bottom-color: var(--e); font-weight: 600; }
.subnav-a.cur-c   { color: var(--c); border-bottom-color: var(--c); font-weight: 600; }
.subnav-a.cur-l   { color: var(--l); border-bottom-color: var(--l); font-weight: 600; }

/* ── Sections internes ── */
.section-intro { border-top: 3px solid var(--line); }
.section-intro.e { border-top-color: var(--e); }
.section-intro.c { border-top-color: var(--c); }
.section-intro.l { border-top-color: var(--l); }

/* ── Formation label ── */
.form-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: .8rem; padding-top: 1rem;
}
.fl-l { color: var(--l); }
.fl-g { color: var(--sub); }



:root {
  --e: #3EA876;   /* vert école */
  --c: #2FA3B5;   /* bleu collège */
  --l: #D94070;   /* rose lycée */
  --ink: #111318;
  --sub: #5a6270;
  --pale: #f6f7f9;
  --line: #e4e7eb;
  --white: #fff;
  --f: 'Inter', system-ui, sans-serif;
  --rad: 6px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  height: 60px;
  display: flex; align-items: center;
  padding: 0 2rem; gap: 1.5rem;
}
/* Logo : la vraie bannière — hauteur fixe */
.nav-logo img {
  height: 38px; width: auto; display: block;
}
/* Fallback texte si image absente */
.nav-logo-fallback {
  display: none;
  font-size: 13px; font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.nav-menu {
  display: flex; align-items: center; gap: 0;
  margin-left: auto;
}
.nav-a {
  padding: 0 13px; height: 60px;
  display: flex; align-items: center;
  font-size: 13px; font-weight: 500; color: var(--sub);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.nav-a:hover        { color: var(--ink); border-bottom-color: var(--line); }
.nav-a.cur          { color: var(--ink); font-weight: 600; border-bottom-color: var(--ink); }
.nav-a.nav-e:hover  { color: var(--e); border-bottom-color: var(--e); }
.nav-a.nav-c:hover  { color: var(--c); border-bottom-color: var(--c); }
.nav-a.nav-l:hover  { color: var(--l); border-bottom-color: var(--l); }
.nav-btn {
  margin-left: 1rem;
  background: var(--ink); color: var(--white);
  padding: 8px 16px; border-radius: 4px;
  font-size: 12px; font-weight: 600;
  transition: opacity .15s; white-space: nowrap;
}
.nav-btn:hover { opacity: .82; }

/* Barre tricolore 3px */
.tribar { display: flex; height: 3px; }
.t-e{flex:1;background:var(--e);}
.t-c{flex:1;background:var(--c);}
.t-l{flex:1;background:var(--l);}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-width: 1280px; margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  gap: 3rem; align-items: center;
}
.hero-left {}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--sub);
  margin-bottom: 1.2rem;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--e); }
h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.1; color: var(--ink);
  margin-bottom: 1rem;
}
h1 strong { color: var(--e); font-weight: 800; }
.hero-desc {
  font-size: 15px; color: var(--sub);
  line-height: 1.7; max-width: 440px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  transition: opacity .15s, background .15s;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: .84; }
.btn-light { background: var(--pale); color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: var(--line); }
.btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Pills établissements sous les boutons */
.hero-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.hp {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  background: var(--pale); border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px; font-weight: 500; color: var(--ink);
  transition: border-color .15s;
}
.hp:hover { border-color: var(--sub); }
.hp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.d-e{background:var(--e);} .d-c{background:var(--c);} .d-l{background:var(--l);}

/* Zone image héro */
.hero-img {
  border-radius: 0; overflow: hidden;
  background: var(--pale); border: 1px dashed var(--line); border-radius: 0;
  position: relative; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0; display: block;
}
.hero-img-ph {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--line); text-align: center; padding: 2rem;
}
.hero-img-ph svg { width: 40px; height: 40px; }
.hero-img-ph span { font-size: 12px; color: #bbb; }
/* Badge VV flottant */
.vv-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--c); color: #fff;
  display: flex; align-items: center; gap: 9px;
  padding: 10px 15px; border-radius: 3px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(47,163,181,.35);
  transition: opacity .15s;
}
.vv-badge:hover { opacity: .9; }
.vv-badge svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

/* ── CHIFFRES ── */
.chiffres {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
}
.chiffre {
  flex: 1; padding: 1.4rem 2rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.chiffre:last-child { border-right: none; }
.ch-n { font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1; }
.ch-l { font-size: 11px; color: var(--sub); margin-top: 4px; }

/* ── SECTIONS communes ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 0; }
.sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sub);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: .8rem;
}
.sec-label::before { content:''; width: 18px; height: 2px; background: var(--line); }
h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 2rem; line-height: 1.2;
}

/* ── ÉTABLISSEMENTS ── */
.etab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: 0; overflow: hidden;
}
/* Séparation via bordures sur les cards plutôt que gap coloré */
.etab-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.etab-card:last-child { border-right: none; }
.etab-card {
  background: var(--white); padding: 2rem 1.8rem; border-radius: 0;
  display: flex; flex-direction: column;
  transition: background .15s;
}
.etab-card:hover { background: var(--pale); }
.etab-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.etab-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.eb-e { background: #e6f7ef; color: #1f7a50; }
.eb-c { background: #e0f5f7; color: #1a7a87; }
.eb-l { background: #fce8ef; color: #9c1a40; }
.etab-num { font-size: 2rem; font-weight: 800; color: var(--line); line-height: 1; }
.etab-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.etab-desc  { font-size: 13px; color: var(--sub); line-height: 1.6; margin-bottom: 1.2rem; flex: 1; }
.etab-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.5rem; }
.etab-tag {
  font-size: 10px; font-weight: 500; padding: 3px 8px;
  border: 1px solid var(--line); border-radius: 2px; color: var(--sub);
}
.etab-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  transition: gap .15s;
}
.etab-link svg { width: 13px; height: 13px; fill: currentColor; }
.etab-link:hover { gap: 9px; }
.el-e{color:var(--e);} .el-c{color:var(--c);} .el-l{color:var(--l);}

/* ── VISITE VIRTUELLE ── */
.vv-block {
  background: var(--pale); border: 1px solid var(--line);
  border-radius: 0; padding: 2.5rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center;
  margin-bottom: 4rem;
}
.vv-title  { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.vv-desc   { font-size: 13px; color: var(--sub); line-height: 1.6; margin-bottom: 1.2rem; max-width: 500px; }
.vv-url    { font-size: 11px; color: var(--c); font-family: monospace; margin-bottom: 1.2rem; }
.vv-btns   { display: flex; gap: 8px; }
.btn-c { background: var(--c); color: #fff; }
.btn-c:hover { opacity: .88; }

/* ── ACTUALITÉS ── */
.actu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--white); border: 1px solid var(--line); border-radius: 0; overflow: hidden; }
.actu-card {
  background: var(--white); padding: 1.6rem; border-radius: 0;
  transition: background .15s; cursor: pointer;
}
.actu-card:hover { background: var(--pale); }
.actu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.actu-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 2px;
}
.ac-e{background:#e6f7ef;color:#1f7a50;}
.ac-c{background:#e0f5f7;color:#1a7a87;}
.ac-l{background:#fce8ef;color:#9c1a40;}
.ac-g{background:var(--pale);color:var(--sub);}
.actu-date { font-size: 11px; color: var(--sub); }
.actu-title { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: .5rem; }
.actu-desc  { font-size: 12px; color: var(--sub); line-height: 1.55; }

/* ── VALEURS ── */
.valeurs-bg { background: var(--pale); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.valeurs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.valeur {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--line);
}
.valeur:last-child { border-right: none; }
.val-icon {
  width: 40px; height: 40px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; background: var(--white);
  border: 1px solid var(--line);
}
.val-icon svg { width: 20px; height: 20px; }
.val-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.val-desc  { font-size: 12px; color: var(--sub); line-height: 1.6; }

/* ── CTA ── */
.cta-block {
  background: var(--e); border-radius: 0;
  padding: 3rem; margin: 0 0 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-block::after {
  content: '';
  position: absolute; right: -3rem; top: -3rem;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}
.cta-pre   { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: .5rem; }
.cta-title { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.01em; line-height: 1.2; margin-bottom: .3rem; }
.cta-sub   { font-size: 13px; color: rgba(255,255,255,.75); }
.cta-btns  { display: flex; gap: 9px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--e); }
.btn-white:hover { opacity: .92; }
.btn-trans { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-trans:hover { background: rgba(255,255,255,.25); }

/* ── FOOTER ── */
.footer { background: #0f1117; color: #6b7280; border-top: 1px solid #1f2937; padding: 3.5rem 2rem 2rem; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid #1f2937; margin-bottom: 1.5rem;
}
.footer-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.footer-desc { font-size: 12px; line-height: 1.7; margin-bottom: 1rem; max-width: 260px; }
.footer-contact { font-size: 12px; line-height: 2; }
.footer-contact a { color: #6b7280; transition: color .15s; }
.footer-contact a:hover { color: #fff; }
.fcol-h { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #374151; margin-bottom: .9rem; }
.fcol-h.fe{color:var(--e);} .fcol-h.fc{color:var(--c);} .fcol-h.fl{color:var(--l);}
.flinks { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.flinks a { font-size: 12px; color: #4b5563; transition: color .15s; }
.flinks a:hover { color: #fff; }
.footer-bot {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 11px; color: #374151; }
.footer-dots { display: flex; gap: 5px; }
.fdot { width: 7px; height: 7px; border-radius: 50%; }
.fde{background:var(--e);} .fdc{background:var(--c);} .fdl{background:var(--l);}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .hero         { grid-template-columns:1fr; padding-top:2rem; }
  .hero-img     { height:240px; }
  .etab-grid    { grid-template-columns:1fr; }
  .actu-grid    { grid-template-columns:1fr; }
  .valeurs-grid { grid-template-columns:1fr 1fr; }
  .vv-block     { grid-template-columns:1fr; }
  .footer-grid  { grid-template-columns:1fr 1fr; }
  .nav-menu     { display:none; }
  .chiffres     { flex-wrap:wrap; }
  .chiffre      { min-width:50%; }
}


/* ══════════════════════════════════════════
   PAGES FORMATION — Layout 2 colonnes
   ══════════════════════════════════════════ */

.formation-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

/* ── Breadcrumb ── */
.formation-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--sub);
  margin-bottom: 1.5rem;
}
.formation-breadcrumb a { color: var(--sub); transition: color .15s; }
.formation-breadcrumb a:hover { color: var(--l); }
.formation-breadcrumb span { color: var(--line); }

/* ── Header formation ── */
.formation-header { margin-bottom: 1.8rem; }
.formation-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; background: #fce8ef; color: var(--l);
  padding: 4px 10px; border-radius: 2px; margin-bottom: .8rem;
}
.formation-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); line-height: 1.2;
  border-left: 4px solid var(--l);
  padding-left: 1rem;
}

/* ── Thumbnail ── */
.formation-thumbnail {
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

/* ── Contenu WordPress ── */
.formation-content {
  font-size: 14px; line-height: 1.75; color: #374151;
}
.formation-content h2 {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ink);
  margin: 2rem 0 .8rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.formation-content h3 {
  font-size: .95rem; font-weight: 700; color: var(--ink);
  margin: 1.5rem 0 .6rem;
}
.formation-content strong { color: var(--ink); font-weight: 600; }
.formation-content ul {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  margin: .5rem 0 1.2rem;
}
.formation-content ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #374151;
}
.formation-content ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--l); flex-shrink: 0; margin-top: 6px;
}
.formation-content p { margin-bottom: 1rem; }
.formation-content a { color: var(--l); }
.formation-content a:hover { text-decoration: underline; }

/* Blocs info structurés (métiers, profil, poursuite études) */
.formation-content .wp-block-group,
.formation-content blockquote {
  background: var(--pale); border: 1px solid var(--line);
  padding: 1.2rem 1.4rem; margin: 1.2rem 0;
}

/* ── CTA contact ── */
.formation-cta {
  background: var(--l); border-radius: 0;
  padding: 1.8rem 2rem; margin-top: 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.formation-cta-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.formation-cta-sub   { font-size: 12px; color: rgba(255,255,255,.75); }

/* ── SIDEBAR ── */
.formation-sidebar { position: sticky; top: 80px; }

.sidebar-title {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sub);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-title::before { content:''; width:18px; height:2px; background:var(--l); }

.sidebar-card {
  display: block;
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  margin-bottom: 8px;
  background: var(--white);
  transition: border-color .15s, background .15s;
  border-left: 3px solid transparent;
}
.sidebar-card:hover { border-left-color: var(--l); background: var(--pale); }
.sidebar-card-active {
  border-left: 3px solid var(--l) !important;
  background: #fce8ef !important;
  pointer-events: none;
}

.sidebar-card-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 4px;
}
.sidebar-card-badge {
  font-size: 9px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--l);
}
.sidebar-card-current {
  font-size: 9px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--l); color: #fff;
  padding: 2px 7px; border-radius: 2px;
}
.sidebar-card-title {
  font-size: 12px; font-weight: 600; color: var(--ink);
  line-height: 1.35; margin-bottom: 6px;
}
.sidebar-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.sidebar-tag {
  font-size: 9px; padding: 2px 7px;
  border: 1px solid var(--line); color: var(--sub); border-radius: 2px;
}
.sidebar-card-link {
  font-size: 11px; font-weight: 600; color: var(--l);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.sidebar-card:hover .sidebar-card-link { gap: 7px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .formation-layout {
    grid-template-columns: 1fr;
  }
  .formation-sidebar {
    position: static;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  }
  .sidebar-title { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════
   PAGES INTERNES ÉCOLE — Layout 2 colonnes
   ══════════════════════════════════════════ */

.ecole-interne-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: start;
}
.ecole-interne-main { }
.ecole-interne-sidebar { position: sticky; top: 80px; }

/* Surcharge hover sidebar en vert pour l'école */
.ecole-interne-sidebar .sidebar-card:hover {
  border-left-color: var(--e);
  background: var(--pale);
}
.ecole-interne-sidebar .sidebar-card-active {
  border-left: 3px solid var(--e) !important;
  background: #e6f7ef !important;
}

/* Contenu riche de l'école */
.ecole-content h2 {
  border-bottom-color: var(--e);
}
.ecole-content ul li::before {
  background: var(--e);
}

/* Equipe : grille membres */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.equipe-card {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  border-top: 3px solid var(--e);
  background: var(--white);
}
.equipe-card-role {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--e); margin-bottom: 4px;
}
.equipe-card-name {
  font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.equipe-card-classe {
  font-size: 11px; color: var(--sub); margin-top: 3px;
}

@media(max-width:860px) {
  .ecole-interne-layout { grid-template-columns: 1fr; }
  .ecole-interne-sidebar { position: static; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   PAGES INTERNES COLLÈGE
   ══════════════════════════════════════════ */

.college-interne-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: start;
}
.college-interne-sidebar { position: sticky; top: 80px; }

.college-interne-sidebar .sidebar-card:hover {
  border-left-color: var(--c);
  background: var(--pale);
}
.college-interne-sidebar .sidebar-card-active {
  border-left: 3px solid var(--c) !important;
  background: #e0f5f7 !important;
}
.college-content h2 { border-bottom-color: var(--c); }
.college-content ul li::before { background: var(--c); }

/* Atelier cards */
.atelier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.atelier-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--c);
  padding: 1rem 1.1rem;
  background: var(--white);
}
.atelier-card-title {
  font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 5px;
}
.atelier-card-desc {
  font-size: 12px; color: var(--sub); line-height: 1.55;
}

@media(max-width:860px) {
  .college-interne-layout { grid-template-columns: 1fr; }
  .college-interne-sidebar { position: static; }
  .atelier-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PAGE CONTACT
   ══════════════════════════════════════════ */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: start;
}
.contact-etab-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  padding: 1.5rem;
  background: #fff;
  margin-bottom: 0;
}
.contact-etab-title {
  font-size: 14px; font-weight: 800; color: var(--ink);
  margin-bottom: 3px;
}
.contact-etab-addr {
  font-size: 12px; color: var(--sub); margin-bottom: 1.2rem;
}
.contact-etab-rows { display: flex; flex-direction: column; gap: 1rem; }
.contact-etab-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.55;
}
.contact-etab-row svg {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 3px; stroke: var(--sub);
}
.contact-etab-row a { color: var(--ink); font-weight: 500; }
.contact-etab-row a:hover { color: var(--e); }

/* ══════════════════════════════════════════
   PAGE ACTUALITÉS
   ══════════════════════════════════════════ */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.actu-card {
  border: 1px solid var(--line);
  padding: 1.6rem;
  background: #fff;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
  overflow: hidden;
}
.actu-card:hover {
  border-color: var(--sub);
  transform: translateY(-2px);
}

@media(max-width:960px) {
  .contact-page-layout { grid-template-columns: 1fr; }
  .actu-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .actu-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   HERO — Bloc Découvrir l'établissement
   ══════════════════════════════════════════ */
.hero-discover {
  border: 1px solid var(--line);
  padding: 1.2rem 1.4rem;
  background: var(--pale);
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
}
.hero-discover-label {
  font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: .9rem;
}
.hero-discover-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-etab-btn {
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: 0;
  text-decoration: none; letter-spacing: .02em;
  transition: opacity .15s, transform .15s;
  display: inline-block; flex: 1; text-align: center;
  min-width: 100px;
}
.hero-etab-btn:hover { opacity: .88; transform: translateY(-1px); }
