/* ========================= PAGE TÉMOIGNAGES ========================= */
.temoignages-page{
  padding-top: 110px;
  padding-bottom: 40px;
}

/* HERO */
.tem-hero{
  padding: 70px 0 30px;
  position: relative;
}

.tem-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 50% -10%, rgba(59,130,246,0.22), rgba(59,130,246,0) 60%),
    radial-gradient(700px 320px at 18% 10%, rgba(255,255,255,0.06), rgba(255,255,255,0) 65%);
  pointer-events:none;
}

.eyebrow{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}

.tem-hero h1{
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.accent{
  position: relative;
}

.accent::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:10px;
  background: rgba(59,130,246,0.22);
  border-radius: 999px;
  z-index: -1;
}

.lead{
  max-width: 760px;
  color: var(--text-muted);
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* LISTE */
.section{
  padding: 42px 0;
}

.tem-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CARTE */
.tem-card{
  display: flex;
  gap: 18px;
  align-items: stretch;
  background: rgba(17,26,46,0.65);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 18px;
}

.tem-photo{
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
  flex: 0 0 auto;
}

.tem-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tem-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 8px;
}

.tem-name{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 750;
  font-size: 16px;
}

.tem-formation{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-muted);
  font-size: 13px;
}

.tem-text{
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .tem-hero h1{ font-size: 42px; }
}

@media (max-width: 640px){
  .tem-card{
    flex-direction: column;
    align-items: flex-start;
  }
  .tem-photo{
    width: 84px;
    height: 84px;
  }
}
