/* Blocs pleine largeur */
.inst-section { padding: var(--section-pad) 0; }
.inst-section--alt { background: var(--gris-05); }

.venue-block { display: grid; gap: 1rem; }
.venue-block h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.venue-block .desc { color: var(--gris-60); }

/* Chiffres clés (Stade de l'Épopée) */
.venue-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.venue-fact {
  background: var(--blanc);
  border-left: 4px solid var(--rouge);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  padding: .7rem .85rem;
}
.inst-section:not(.inst-section--alt) .venue-fact { background: var(--gris-05); box-shadow: none; }
.venue-fact:nth-child(2) { border-left-color: var(--or); }
.venue-fact:nth-child(3) { border-left-color: var(--noir-pur); }
.venue-fact:nth-child(4) { border-left-color: var(--or); }
.venue-fact b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.venue-fact span {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gris-60);
}

/* Photos : toutes au même format, quelle que soit la section */
.venue-photos { display: grid; gap: .9rem; grid-template-columns: 1fr; margin-top: .5rem; }
.venue-photos figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
}
.venue-photos img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.8,.3,1);
}
.venue-photos figure:hover img { transform: scale(1.04); }

    /* Le saviez-vous (repris des autres pages) */
.epopee-note { background: var(--gris-05); padding: var(--section-pad) 0; }
.epopee-note__box {
  background: var(--blanc);
  border-left: 5px solid var(--or);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.25rem, 3.5vw, 2rem);
  display: grid;
  gap: .6rem;
}
.epopee-note__box h2 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }
.epopee-note__box p { color: var(--gris-60); }

/* Breakpoints */
@media (min-width: 640px) {

  .venue-facts { grid-template-columns: repeat(4, 1fr); }
  .venue-photos { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {

  .venue-photos { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1080px) {

  /* Page active */
  .nav__list > li.is-active > a { color: var(--rouge); }
  .nav__list > li.is-active > a::after { transform: scaleX(1); }
  .drop a.is-active { color: var(--rouge); background: var(--gris-05); }
  .drop-group__label {
    display: block;
    font-size: .86rem;
    font-weight: 700;
    padding: .35rem .3rem;
    margin-bottom: .3rem;
  }
}
