/* ---------- Modal content ---------- */
.portfolio-modal .modal-content {
  border-radius: 0.5rem;
  padding: 0;
}

/* ---------- Scrollable body ---------- */
.portfolio-modal .modal-dialog-scrollable .modal-body {
  max-height: 80vh; /* limite pour le scroll */
  overflow-y: auto; /* scroll vertical actif */
  padding: 1.5rem 2rem;
}

/* ---------- Titres ---------- */
.portfolio-modal-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

/* ---------- Diviseur ---------- */
.divider-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 2rem 0;
}

.divider-custom-line {
  height: 4px;
  width: 70px;
  background-color: #d1d1d1;
  margin: 0 10px;
}

.divider-custom-icon {
  font-size: 1.2rem;
  color: #6c757d;
}

/* ---------- Image ---------- */
.modal-body img {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 80%;
  border-radius: 0.5rem;
}

/* ---------- Paragraphes et listes ---------- */
.modal-body p,
.modal-body ul {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-body ul li {
  margin-bottom: 0.8rem;
}

/* ---------- Bouton ---------- */
.modal-body .btn {
  display: block;
  margin: 2rem auto 0 auto;
}