/* === ADLG Cards === */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  border-top: 4px solid #4a9c4e;
  padding: 1.6rem 1.4rem;  /* plus d'espace interne */
}

.card.accent-red   { border-top-color: #c0392b; }
.card.accent-yellow { border-top-color: #f5a623; }
.card.accent-green { border-top-color: #4a9c4e; }

.card-icon-fa {
  font-size: 2rem;
  color: #4a9c4e;
  margin-bottom: 0.8rem;
}
.card.accent-yellow .card-icon-fa { color: #f5a623; }
.card.accent-red .card-icon-fa { color: #c0392b; }

.card-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 13px;
  font-weight: 600;
  color: #4a9c4e;
  text-decoration: none;
}
.card.accent-yellow .card-link { color: #f5a623; }
.card.accent-red .card-link { color: #c0392b; }

.card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 9px;
  border-radius: 20px;
  background: #eaf5ea;
  color: #4a9c4e;
  margin-bottom: 8px;
}

.card.accent-red   .card-badge { background: #faecea; color: #c0392b; }
.card.accent-yellow .card-badge { background: #fef6e4; color: #b37a10; }

.card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  margin-bottom: 10px;  /* plus d'espace entre titre et texte */
  color: #1a1a1a;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  text-align: left;  /* si le thème centre le texte par défaut */
}

.section-cards-title {
  font-size: 1.8rem;  /* augmente selon goût */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2rem 0 0.3rem;
  text-align: center;
}

.section-cards-sub {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  color: #666;
  margin-bottom: 1.5rem;
}

.cards-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

.section-divider {
  margin: 2.5rem 0;
  border-top: 2px solid #4a9c4e;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}
.card-cta {
  background: #f9f9f9;
  border: 0.5px solid #e0e0e0;
  border-left: 4px solid #4a9c4e;
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.card-cta h3 {
  font-size: 1.8rem;  /* était 1.3rem */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.card-cta p {
  color: #555;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;  /* était 1rem */
}

.cta-button {
  display: inline-block;
  background: #4a9c4e;
  color: #fff !important;
  padding: 1rem 2.5rem;  /* était 0.7rem 1.8rem */
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.2rem;  /* était 0.95rem */
  text-decoration: none;
  letter-spacing: 0.04em;
}

.cta-button:hover {
  background: #
}

.card ul {
  list-style: none;
  text-align: left;
  padding-left: 0;
  margin: 0.5rem 0 0 0;
}

.card ul li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

.card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4a9c4e;
}

.card.accent-yellow ul li::before { color: #f5a623; }
.card.accent-red ul li::before { color: #c0392b; }
