.associations-list {}

.associations-list .article-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}

.association-item {
  border-radius: 25px;
  flex: 1;
}

.association-item .badge {
  font-size: 0.8rem
}

h5.association-title {
  font-size: 1rem;
  font-weight: 700;
}


@media screen and (min-width: 768px) {
  .associations-list .article-content {
    flex-direction: row;
  }

  .association-item {
    flex: 0 0 calc(50% - 30px);
  }
}


.association-item.theme-green {
  background-color: var(--sna-green-1);
  color: var(--sna-black, #333);
}

.association-item.theme-blue {
  background-color: var(--sna-blue-1);
  color: var(--sna-black, #333);
}

.association-item.theme-orange {
  background-color: var(--sna-orange-0);
  color: var(--sna-black, #333);
}

/* ---------- Couleur des icônes et textes accentués (.text-teal) ---------- */
.association-item.theme-green .text-teal {
  color: var(--sna-green);
}

.association-item.theme-blue .text-teal {
  color: var(--sna-blue);
}

.association-item.theme-orange .text-teal {
  color: var(--sna-orange);
}

/* ---------- Fond des badges ---------- */
.association-item.theme-green .badge {
  background-color: var(--sna-green-7);
  color: white;
}

.association-item.theme-blue .badge {
  background-color: var(--sna-blue-7);
  color: white;
}

.association-item.theme-orange .badge {
  background-color: var(--sna-orange-7);
  color: white;
}

.association-item .badge {
  color: white;
}