/* Position du hero — Tilu */
.proj-hero-img {
  object-position: center 60%;
  transform: scale(1.3);
  transform-origin: center 60%;
}

.proj-section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem; color: var(--text);
  letter-spacing: -0.01em;
}

/* ============ IMG SLIDER ============ */
.img-slider {
  position: relative;
  width: 85%;
  margin: 0 auto 0;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
}
.img-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}
.img-slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  transition: none;
}
.img-slider-track img.active {
  opacity: 1;
}
.img-slider-bar {
  position: relative;
  display: flex;
  gap: 4px;
  width: 100%;
  margin: 0 auto;
}
.img-slider-seg {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s;
}
.img-slider-seg.active {
  background: rgba(255,255,255,0.9);
}
.img-slider-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  cursor: grab;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #000;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.img-slider-handle::after {
  content: '◀▶';
  font-size: 0.5rem;
}
.img-slider-handle:active { cursor: grabbing; }
