/* ── À PROPOS ── */
.apropos-main {
  padding-top: 8rem; /* augmente le padding-top existant */
}

.apropos-main {
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero */
.apropos-hero {
  padding: 4rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.apropos-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #828a6a;
  font-family: "Instrument Sans", sans-serif;
}

.apropos-title {
  font-family: "Ovo", serif;
  font-weight: 400;
  font-size: 5rem;
  color: #354523;
  line-height: 1;
  margin: 0;
}

.apropos-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a5a34;
  max-width: 680px;
}

/* Divider */
.apropos-divider {
  width: 100%;
  height: 1px;
  background-color: #c8d4a0;
  margin: 2.5rem 0;
}

/* Sections */
.apropos-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.apropos-section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #828a6a;
  font-family: "Instrument Sans", sans-serif;
  padding-top: 0.3rem;
  position: sticky;
  top: 5rem;
}

.apropos-section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.apropos-section-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #354523;
}

.hangul {
  font-family: "Gowun Batang", serif;
}

/* Équipe */
.apropos-equipe .apropos-equipe-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.equipe-titre {
  font-family: "Ovo", serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #354523;
  margin-bottom: 1.2rem;
}

.equipe-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.equipe-liste li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #e4edbe;
}

.equipe-liste li:last-child {
  border-bottom: none;
}

.role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #828a6a;
}

.noms {
  font-size: 1rem;
  color: #354523;
  font-family: "Ovo", serif;
}

/* Responsive */
@media (max-width: 700px) {
  .apropos-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .apropos-section-label {
    position: static;
  }

  .apropos-equipe .apropos-equipe-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .apropos-title {
    font-size: 3.5rem;
  }
}

/* Footer toujours en bas de page */
footer {
  position: initial;
}

