/**
 * Key Figures Section - Dioqa Model Corporate
 * 
 * @package Dioqa_Model_Corporate
 */

.key-figures-section {
  /* Padding géré dynamiquement via ACF */
}

.key-figure-content {
  min-width: 0; /* Pour permettre le text-overflow si nécessaire */
}

.key-figure-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
}

.key-figure-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.key-figure-title h5 {
  font-weight: 700;
  color: var(--bs-primary) !important;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  line-height: normal;
  margin-bottom: 0;
  text-transform: uppercase;
}

.key-figure-label p {
  font-weight: 400;
  color: var(--bs-gray-medium);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: normal;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .key-figure-icon {
    width: 60px;
    height: 60px;
  }
}

