/* ==============================
   Réalisations – Desktop (web)
   ============================== */

.ic-realisation-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #f5f5f5;
}

.ic-realisation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


/* ==============================
   Réalisations – Mobile (apps)
   ============================== */

/* UNIQUEMENT dans la grille appmobile */
.ic-realisation-grid .ic-realisation-figure {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #000;
  border-radius: 1px;
  overflow: hidden;
  padding: 6px;
}

.ic-realisation-grid .ic-realisation-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .ic-realisation-grid .ic-realisation-figure {
    aspect-ratio: 10 / 16;
  }
}


/* ==============================
   Détails visuels
   ============================== */

.ic-visual-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  text-align: center;
  margin-bottom: 0.75rem;
}

.ic-realisation-figure:hover {
  transform: scale(1.01);
  transition: transform 0.2s ease-in-out;
}
