/* home-hero-cta.css — CTA hero home injecté par home-hero-cta.js */
.eg-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
  max-width: 520px;
}
.eg-hero-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  border: 2px solid transparent;
}
.eg-hero-cta__btn:hover, .eg-hero-cta__btn:focus {
  transform: translateY(-1px);
  text-decoration: none;
}
.eg-hero-cta__btn:active { transform: translateY(0); }
.eg-hero-cta__btn--primary {
  background: #79a500;
  color: #fff;
  border-color: #79a500;
  box-shadow: 0 4px 14px rgba(121, 165, 0, .35);
}
.eg-hero-cta__btn--primary:hover, .eg-hero-cta__btn--primary:focus {
  background: #5e8200; border-color: #5e8200; color: #fff;
  box-shadow: 0 6px 18px rgba(121, 165, 0, .45);
}
.eg-hero-cta__btn--secondary {
  background: #fff;
  color: #000F8F;
  border-color: #000F8F;
}
.eg-hero-cta__btn--secondary:hover, .eg-hero-cta__btn--secondary:focus {
  background: #000F8F; color: #fff;
}
.eg-hero-cta__ico { font-size: 18px; line-height: 1; }
.eg-hero-cta__meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 6px;
  font-size: 13px; color: #4b5563;
}
.eg-hero-cta__meta span { white-space: nowrap; }

/* Desktop : boutons côte à côte */
@media (min-width: 640px) {
  .eg-hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .eg-hero-cta__btn { flex: 0 0 auto; }
  .eg-hero-cta__meta { width: 100%; margin-top: 4px; }
}
