/* Container principale delle card */
.cert-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

/* Ogni card */
.cert-card {
  flex: 1 1 calc(33.333% - 24px);
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Hover elegante */
.cert-card:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Titolo della certificazione */
.cert-card h4 {
  margin-top: 0;
  font-size: 18px;
  color: #1d71b8;
}

/* Testo base */
.cert-card p {
  font-size: 15px;
  margin: 6px 0;
  color: #444;
}

/* Stato della certificazione */
.cert-card .status-ok {
  color: #2e7d32;
  font-weight: 600;
}

.cert-card .status-attention {
  color: #ef6c00;
  font-weight: 600;
}

.cert-card .status-warning {
  color: #c62828;
  font-weight: 600;
}

/* Link al PDF */
.cert-card a {
  display: inline-block;
  margin-top: 10px;
  color: #1d71b8;
  text-decoration: underline;
  font-weight: 500;
}

/* Responsive: 1 colonna su mobile */
@media (max-width: 768px) {
  .cert-card {
    flex: 1 1 100%;
  }
}
