.travail {
  height: 100vh;
  width: 100vw;
  background: var(--colorv12);
}

.travail__partie--haute {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 20%;
  margin-bottom: 2rem;
}

.travail__partie--haute h4 {
  margin-bottom: 3rem;
  font-size: 3.5rem;
  color: var(--text-colorv2);
}

.travail__h4 {
  margin-bottom: 3rem;
  font-size: 3.5rem;
  color: var(--colorv1);
}

.travail__partie--basse {
  height: 60%;
}

.travail__card__container {
  width: 70%;
  height: 45%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  margin: auto;
  gap: 2rem;
}

.travail__card {
  flex: 0.45;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
  background-color: white; /* pour la cohérence visuelle */
}

.travail__card--haut {
  height: 45%;
  width: 100%;
}

.travail__card--haut img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travail__card--bas {
  background-color: var(--text-colorv2);
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.travail__card--bas h5 {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.travail__card--bas p {
  text-align: justify;
  line-height: 1.5;
  font-size: 1rem;
}

/* Tablettes et écrans intermédiaires (< 1200px) */
@media screen and (max-width: 1199px) {
  .travail__card__container {
    width: 90%;
    gap: 1.5rem;
  }

  .travail__partie--haute h4,
  .travail__h4 {
    font-size: 2.8rem;
  }

  .travail__card--bas h5 {
    font-size: 1.1rem;
  }

  .travail__card--bas p {
    font-size: 0.95rem;
  }
}

/* Mobiles larges et tablettes en portrait (< 768px) */
@media screen and (max-width: 767px) {
  .travail {
    height: auto;
    padding-bottom: 2rem;
  }

  .travail__partie--haute {
    flex-direction: column;
    height: auto;
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .travail__partie--haute h4,
  .travail__h4 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .travail__card__container {
    flex-direction: column;
    width: 90%;
    height: auto;
    align-items: center;
    gap: 2rem;
  }

  .travail__card {
    width: 100%;
    flex: none;
    max-width: 400px;
  }

  .travail__card--haut {
    height: 200px;
  }

  .travail__card--bas h5 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .travail__card--bas p {
    font-size: 0.95rem;
  }
}

/* Mobiles très petits (< 480px) */
@media screen and (max-width: 479px) {
  .travail__partie--haute h4,
  .travail__h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .travail__card--bas {
    padding: 1rem;
  }

  .travail__card--bas h5 {
    font-size: 0.95rem;
  }

  .travail__card--bas p {
    font-size: 0.85rem;
  }
}
