 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .heroA {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 580px;
    min-height: 480px;
    margin: 100px auto auto auto;
    display: flex;
    align-items: center;
	max-width: 1240px;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 -4px 60px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.7);
  }

  .heroA video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* shade : assombrissement global + vignette sur tous les bords */
  .heroA::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .heroA::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%),
      linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 55%);
    z-index: 1;
  }

  .heroA-content {
    position: relative;
    z-index: 2;
    padding: 0 56px;
    max-width: 560px;
  }

  .heroA-content em {
    font-style: normal;
    color: var(--accent-light);
  }

  .heroA-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }

  .heroA-content p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
  }



    /* ===== PROJECT :  Mocap cards (Article 2) ===== */
    .mocap-cards {
        display: grid;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .mocap-card {
        background: #e9e9e9;
        padding: 1.5rem;
        border-radius: 12px;
        transition: all 0.25s ease;
    }

    .mocap-card:hover {
        transform: translateY(-3px);
    }

    .mocap-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.75rem;
    }

    .mocap-number {
        font-weight: 700;
        color: var(--primary, #78b84a);
        font-size: 0.9rem;
    }

    .mocap-card h3 {
        margin: 0;
        font-size: 1.1rem;
    }

    .mocap-card p {
        margin: 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }












    #logos-572 {
        padding: clamp(3.75rem, 8vw, 8.125rem) 1rem;
        background-color: rgb(250, 250, 252);
    }

    #logos-572 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    @media only screen and (min-width: 48rem) {
        #logos-572 .cs-container {
            justify-content: space-between;
        }
    }

    .cs-topper {
        font-size: clamp(0.8125rem, 1.6vw, 1rem);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: .1em;
        font-weight: 700;
        color: rgb(131, 201, 90);
        margin-bottom: 0.25rem;
        display: block;
    }

    #logos-572 .cs-logo {
        width: auto;
        max-width: 90%;
        height: auto;
    }





    /* ===== SECTION GLOBAL ===== */
.publications-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* ===== LEFT PANEL ===== */
.publications-left {
    background-color: #7cc04b;
    display: flex;
    align-items: flex-start;   /* ⬅️ en haut */
    justify-content: flex-start; /* ⬅️ à gauche */
    padding: 3rem;
}

.publications-left h2 {
    color: white;
    font-size: 3.3rem; /* +10% */
    font-weight: 700;
    margin: 0;
}

/* ===== RIGHT PANEL ===== */
.publications-right {
    background: #f5f5f5;
    padding: 3rem;
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* ⬅️ centrage vertical */
    gap: 2.2rem;
}

/* ===== PUBLICATION ITEM ===== */
.publication-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* ICON */
.pub-icon {
    width: 28px;
    height: 28px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* TEXT (+10%) */
.pub-content h3 {
    margin: 0;
    font-size: 1.43rem; /* +10% */
    font-weight: 700;
}

.pub-content p {
    margin: 0.45rem 0;
    color: #555;
    font-size: 1.05rem; /* +10% */
}

.pub-content .authors {
    font-style: italic;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .publications-split {
        grid-template-columns: 1fr;
    }

    .publications-left {
        padding-bottom: 1.5rem;
    }

    .publications-right {
        justify-content: flex-start; /* plus naturel en mobile */
    }
}