 p,span {
        font-size: 0.8rem !important; /* Adjust as needed */
    }
.monbuton:hover  {
  position: relative;
  color: var(--theme-button-text-initial-color);
  border: var(--theme-button-border);
  background-color: var(--theme-button-background-initial-color);
}
.monbuton{
  color: var(--theme-link-initial-color);
  -webkit-text-decoration: var(--has-link-decoration);
  text-decoration: var(--has-link-decoration,);
  color: var(--theme-button-text-initial-color);
  background-color: var(--theme-link-initial-color);
  border-color: var(--theme-button-text-initial-color) !important;
}
a {
  transition: var(--theme-transition);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}
.icon-svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: #007bff;
}

    .card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -0.5rem; /* compense les marges internes */
  }

  .card-flex {
    flex: 0 0 calc(20% - 1rem); /* 4 cartes max */
    margin: 0.5rem; /* espace entre les cartes */
  }

  @media (max-width: 992px) {
    .card-flex {
      flex: 0 0 calc(33.333% - 1rem); /* 3 par ligne */
    }
  }

  @media (max-width: 768px) {
    .card-flex {
      flex: 0 0 calc(50% - 1rem); /* 2 par ligne */
    }
  }

  @media (max-width: 576px) {
    .card-flex {
      flex: 0 0 100%; /* 1 par ligne */
    }
  }
