/* Grille 2 colonnes (2 par 2) */
.aco-services-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Responsive : 1 colonne sur mobile */
@media (max-width: 767px){
  .aco-services-grid{
    grid-template-columns: 1fr;
  }
}

/* Carte */
.aco-service-card{
  position: relative;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 34px 34px 26px;
  min-height: 260px;
}

/* Badge 01/02 */
.aco-service-badge{
  position: absolute;
  top: 16px;
  right: 16px;
  background: #00a6a6;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 8px;
}

/* Icône */
.aco-service-iconwrap{
  margin-bottom: 18px;
}
.aco-service-icon{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

/* Titre */
.aco-service-title{
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Texte */
.aco-service-excerpt{
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

/* Permet d’avoir une phrase en gras comme sur la capture si tu mets <strong> dans l’extrait */
.aco-service-excerpt strong{
  font-weight: 800;
}

/* Lien */
.aco-service-link{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #00a6a6;
  font-weight: 700;
  text-decoration: none;
}
.aco-service-link:hover{
  text-decoration: underline;
}
