/* =========================
   PAGE PROFESSEURS
   ========================= */

.prof-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.prof-card{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:28px;
}

.prof-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:22px;
}

.prof-role{
  margin:0;
  color:var(--success);
  font-family:"Manrope", system-ui, sans-serif;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
}

.prof-card h2{
  margin:0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:2rem;
}

.prof-text{
  margin:0;
  color:var(--text-muted);
  font-family:"Manrope", system-ui, sans-serif;
}

.prof-list{
  margin:0;
  padding-left:18px;
  color:var(--text-muted);
  font-family:"Manrope", system-ui, sans-serif;
}

.prof-list li + li{
  margin-top:10px;
}

.prof-method{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap:28px;
  padding:32px;
}

.prof-method h2{
  margin:0 0 12px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:2.2rem;
}

.prof-method p{
  margin:0;
  color:var(--text-muted);
  font-family:"Manrope", system-ui, sans-serif;
}

.prof-method-list{
  margin:0;
  padding-left:18px;
  color:var(--text-muted);
  font-family:"Manrope", system-ui, sans-serif;
}

.prof-method-list li + li{
  margin-top:12px;
}

@media (max-width: 900px){
  .prof-grid,
  .prof-method{
    grid-template-columns:1fr;
  }

  .prof-card,
  .prof-method{
    padding:24px;
  }
}
