﻿.carte {
  width: 250px;
  height: 250px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* dégradé bleu */
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* répartit haut/milieu/bas */
  align-items: center;
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
  padding: 12px;
  box-sizing: border-box;
}

.label {
  font-size: 1.1em;
  font-weight: bold;
}

.valeur {
  font-size: 1.6em;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 8px;
}

.note {
  font-size: 0.8em;
  opacity: 0.85;
  font-style: italic;
}
