/* Titre */
.custom-heading{
  font-size: 60px;
  font-weight: bold;
  color: #87CEEB;
  text-align: center;
  margin: 10px 0;
}

/* Grille */
.grid-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Carte cliquable */
.project-card{
  display: block;
  text-decoration: none;
  color: inherit;

  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10);
  padding: 20px;

  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.project-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.20);
}

/* ✅ Wrapper béton : centre toujours l’image */
.project-image-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* Image */
.custom-image{
  width: 80px;
  height: 80px;

  /* pour des icônes : souvent mieux que cover */
  object-fit: contain;
  object-position: center;

  border-radius: 50%;
  display: block;
}

/* Contenu */
.custom-content{
  margin-top: 10px;
}

.custom-title{
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}

.custom-description{
  font-size: 14px;
  color: #555555;
  margin-top: 5px;
}

.custom-technologies{
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
  font-style: italic;
}
