mots.css
/* ============================
   MOTS ILLUSTRÉS — STYLE GLOBAL
============================ */
.mots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 25px 0;
}
/* ============================
   CARTE MOT
============================ */
.mot-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* ============================
   IMAGE
============================ */
.mot-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
/* ============================
   INFOS DU MOT
============================ */
.mot-info {
  padding: 15px;
  text-align: center;
}
.mot-info .soureth.big {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.mot-info .latin {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0033a0;
  margin-bottom: 4px;
}
.mot-info .fr {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #444;
}
/* ============================
   BOUTON AUDIO
============================ */
.audio-btn {
  background: #0033a0;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}
.audio-btn:hover {
  background: #0050d4;
}
/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
  .mot-card img {
    height: 150px;
  }
  .mot-info .soureth.big {
    font-size: 1.9rem;
  }
}
