
.affichage-cours-filtre {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.affichage-cours-filtre .cours-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.affichage-cours-filtre .cours-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.affichage-cours-filtre .cours-item .meta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
}
.affichage-cours-filtre .cours-item h3 {
  text-align: center;
  font-size: 20px;
  margin: 15px 10px 10px;
  color: #333;
}
.affichage-cours-filtre .cours-item p {
  font-size: 14px;
  color: #666;
  padding: 0 15px;
  flex-grow: 1;
  margin: 0;
}
.affichage-cours-filtre .cours-item a.more-link {
  background-color: #f1c40f;
  color: #000;
  text-align: center;
  display: inline-block;
  padding: 10px 15px;
  margin: 15px auto 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  width: fit-content;
}
