/* ─── PARTENAIRE PAGE ─── */
  .partenaire-hero {
    background: linear-gradient(160deg, #B2D8F5 0%, #72D9D5 40%, #C6A0F0 80%, #F5AAAA 100%);
    padding: 32px 5% 40px;
  }

  .partenaire-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .part-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 300;
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .part-intro-text {
    font-size: 18px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 28px;
  }

  /* Plaquette */
  .part-plaquette {
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(12,44,96,0.18);
    margin-bottom: 40px;
  }

  .part-plaquette img {
    width: 100%;
    display: block;
  }

  /* Bio card */
  .part-bio-card {
    background: rgba(255,255,255,0.92);
    border-radius: 24px;
    padding: 52px 56px;
    box-shadow: 0 8px 40px rgba(12,44,96,0.12);
    backdrop-filter: blur(14px);
  }

  .part-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .part-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .part-title span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .part-title span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
  }

  .part-title span:first-child::before { display: none; }

  .part-diplomes {
    background: rgba(12,44,96,0.04);
    border-left: 3px solid var(--navy);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 36px;
  }

  .part-diplomes-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .part-diplomes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .part-diplomes li {
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .part-diplomes li::before {
    content: '▸';
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .part-para {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .part-para strong { color: var(--navy-dark); }

  .part-highlight {
    background: linear-gradient(135deg, rgba(0,168,158,0.08), rgba(115,32,192,0.06));
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0 20px;
    border: 1px solid rgba(0,168,158,0.15);
  }

  .part-highlight p {
    font-size: 17px;
    color: var(--navy-dark);
    line-height: 1.8;
    font-style: italic;
  }

  .part-highlight p strong {
    font-style: normal;
    color: var(--teal);
  }

  .part-section {
    background: var(--navy-dark);
    padding: 80px 5%;
  }

  .part-section-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .part-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 300;
    color: white;
    margin-bottom: 16px;
  }

  .part-section h2 em { color: var(--teal-pale); font-style: italic; }

  .part-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
  }

  .part-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #00C853;
    color: white;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .part-cta-btn:hover { background: #00E676; color: var(--navy-dark); transform: translateY(-2px); }

  @media (max-width: 768px) {
    .part-bio-card { padding: 28px 22px; }
    .partenaire-hero { padding: 40px 5% 40px; }
    .part-title { flex-direction: column; gap: 6px; }
    .part-title span:first-child::before { display: inline-block; }
  }
