.trombinoscope-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.trombinoscope-header {
  margin-bottom: 1.5rem;
}
.trombinoscope-header h2 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.trombinoscope {
  gap: clamp(1rem, 2vw, 2rem) clamp(0.75rem, 1.5vw, 1.5rem);
  width: 100%;
  max-width: clamp(20rem, 90vw, 68.75rem);
  margin: auto;
}

.trombi-item {
  padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.trombi-photo {
  width: clamp(5rem, 12vw, 7.5rem);
  height: clamp(5rem, 12vw, 7.5rem);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: #fff;
}

.trombi-name {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-blanc, #f4f4f4);
  margin-bottom: 0.3rem;
  text-align: center;
}

.trombi-role {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-grey, #b3afab);
  text-align: center;
}

.section-rdv {
  width: 100%;
  display: flex;
}

.rdv-content {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    width: 100%;
    max-width: 68.75rem;
    box-sizing: border-box;
}

.rdv-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.rdv-title {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--color-orange, #e85426);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.rdv-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-blanc, #f4f4f4);
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.rdv-btn {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: clamp(0.5rem, 1.5vw, 0.9rem) clamp(1.2rem, 3vw, 2rem);
  margin-top: 0.5rem;
}

.rdv-img {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 20rem;
  width: 40vw;
}
.rdv-img img {
  width: 100%;
  max-width: 20rem;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.10);
}

/* Responsive */
@media (max-width: 900px) {
  .rdv-content {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 0 clamp(0.5rem, 4vw, 1.5rem);
  }
  .rdv-img {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .rdv-text {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .section-rdv {
    padding: clamp(0.5rem, 3vw, 1.2rem) 0;
  }
  .rdv-title {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }
  .rdv-desc {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 1.2rem;
  }
  .rdv-btn {
    width: 100%;
    text-align: center;
    padding: clamp(0.5rem, 2vw, 0.8rem) clamp(0.5rem, 4vw, 1.2rem);
  }
  .rdv-img {
    max-width: 13.75rem;
    width: 100%;
  }
}
