.teaching-list {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.teaching-list li {
  margin-bottom: 0.35rem;
}

.accordion-button {
  font-weight: 600;
}

.accordion-body p {
  margin-bottom: 0.3rem;
}


.module-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;   /* enlève le soulignement */
  color: inherit;          /* conserve la couleur du texte */
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  text-decoration: none;
}

.module-img {
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.module-body {
  padding: 1rem;
  flex-grow: 1;
}

.module-body h5 {
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.module-body p {
  font-size: 0.9rem;
  line-height: 1.35;
}
