.historique-section {
  padding: 2rem;
  background: #fff;
}

.historique-section h2 {
  font-size: 1.8rem;
  color: #c00;
  margin-bottom: 1rem;
}

.fac-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.fac-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.612);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.fac-box:hover {
  transform: translateY(-5px);
}

.fac-box img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 1rem;
  background-color: #f9f9f9;
}

.fac-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #007bff;
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.fac-info {
  padding: 1rem;
}

.fac-info h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.fac-info p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.fac-info a {
  text-decoration: none;
  color: #0056d2;
  font-weight: 500;
  font-size: 0.95rem;
}
