/* ============================================
   PAGE AUTEURS — /auteurs/{slug} (signal E-E-A-T, schema Person)
   ============================================ */

.auteur-hero {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(13, 148, 136, 0.03));
  padding: 3rem 1.5rem;
}

.auteur-hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.auteur-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.auteur-identite h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.2rem;
  color: var(--color3, #2c3e2d);
}

.auteur-fonction {
  font-size: 1.15rem;
  color: var(--color3-light, #5a6b5c);
  margin: 0 0 1rem 0;
}

.auteur-reseaux {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.auteur-reseaux a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white, #fff);
  border-radius: 24px;
  color: var(--color3, #0f766e);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease;
}

.auteur-reseaux a:hover {
  transform: translateY(-1px);
}

.auteur-bio {
  padding: 3rem 1.5rem;
}

.auteur-bio-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.auteur-bio p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color3, #2c3e2d);
  margin: 0 0 1.25rem 0;
}

.auteur-bio-intro {
  font-size: 1.15rem !important;
  font-weight: 500;
}

.auteur-expertise {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.auteur-expertise-titre {
  font-size: 1.2rem;
  color: var(--color3, #2c3e2d);
  margin: 0 0 1rem 0;
}

.auteur-expertise-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.auteur-expertise-liste li {
  padding: 0.4rem 0.9rem;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  font-size: 0.9rem;
  color: var(--color3, #0f766e);
}

.auteur-articles {
  background: var(--color9, #f7f5ef);
  padding: 3rem 1.5rem;
}

.auteur-articles-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.auteur-articles-wrapper > h2 {
  font-size: 1.8rem;
  color: var(--color3, #2c3e2d);
  margin: 0 0 2rem 0;
}

.auteur-articles-count {
  color: var(--color3-light, #5a6b5c);
  font-weight: 400;
  font-size: 1.3rem;
}

.auteur-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.auteur-articles-empty {
  text-align: center;
  color: var(--color3-light, #5a6b5c);
  padding: 3rem 1rem;
  font-style: italic;
}

.auteur-articles-pagination {
  margin-top: 2.5rem;
  text-align: center;
}

.auteur-cta {
  text-align: center;
  background: var(--white, #fff);
  padding: 3rem 1.5rem;
}

.auteur-cta h2 {
  font-size: 1.7rem;
  margin: 0 0 0.75rem 0;
  color: var(--color3, #2c3e2d);
}

.auteur-cta p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--color3, #2c3e2d);
  line-height: 1.6;
}

.auteur-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .auteur-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .auteur-photo img {
    width: 160px;
    height: 160px;
  }
  .auteur-identite h1 {
    font-size: 1.7rem;
  }
  .auteur-reseaux {
    justify-content: center;
  }
}
