/* ══════════════════════════════════════════
   LEADERSHIP BLOCK  (prefix: ld-)
   ══════════════════════════════════════════ */

/* ── SECTION ── */
.ld-section {
    padding: 90px 0;
    position: relative;
}

.ld-section .ld-member:not(.ld-member--reverse) [data-dot-sphere] {
    top: -50% !important;
    left: auto;
    right: calc(100% - 700px);
}

.ld-section .ld-member.ld-member--reverse [data-dot-sphere] {
    top: 200px !important;
    left: 400px;
}

/* ── BLOCK HEADER ── */
.ld-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-bottom: 60px;
}

/* ── HEADING (H2) ── */
.ld-heading {
    font-family: var(--font-main);
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.86px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

/* ── MEMBER ROW ── */
.ld-member {
    display: flex;
    gap: 46px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* Photo on the right: reverse column order */
.ld-member--reverse {
    flex-direction: row-reverse;
}

/* ── PHOTO COLUMN ── */
.ld-photo-col {
    flex: 0 0 45.83%;   /* 550 / 1200 */
    max-width: 45.83%;
}

.ld-photo-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 20px;
    aspect-ratio: 550 / 609;
    background: #111;
}

.ld-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
}

.ld-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

/* Subtle gradient fade at bottom of card */
.ld-photo-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 55%,
        rgba(0, 0, 0, 0.55) 100%
    );
    border-radius: 20px;
    pointer-events: none;
}

/* ── CONTENT COLUMN ── */
.ld-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 49px;
    padding-top: 3px;
}

/* ── IDENTITY (name + role + separator) ── */
.ld-identity {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ld-name {
    font-family: var(--font-main);
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.86px;
    color: #ffffff;
    margin-bottom: 0;
}

.ld-role {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #ffffff;
    display: block;
}

/* ── BIO ── */
.ld-bio {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
}
.ld-bio p             { margin: 0; font-size: 20px; line-height: 30px; font-weight: 300; }
.ld-bio p + p         { margin-top: 30px; }
.ld-bio strong,
.ld-bio b             { font-weight: 700; }

/* ── TIMELINE ── */
.ld-timeline {
    display: flex;
    flex-direction: column;
    gap: 53px;
    margin-bottom: 60px;
}

.ld-timeline:last-child {
    margin-bottom: 0;
}

/* ── TIMELINE HEADER ── */
.ld-timeline-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}

.ld-timeline-label {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #03cfff;
    display: block;
}

/* ── TIMELINE GRID (2-col) ── */
.ld-timeline-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 53px;
}

.ld-timeline-item {
    flex: 0 0 calc(50% - 23px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── ORGANISATION NAME (H3) ── */
.ld-org {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    line-height: 28.9px;
    color: #03cfff;
    margin-bottom: 0;
}

/* ── POSITION ── */
.ld-position {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ld-position-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #ffffff;
    display: block;
}

.ld-position-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

/* ══ RESPONSIVE ══════════════════════════ */

@media (max-width: 1199.98px) {
    .ld-name {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1.4px;
    }
}

@media (max-width: 991.98px) {
    .ld-section          { padding: 72px 0; }

    .ld-heading {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .ld-member {
        flex-direction: column;
        gap: 40px;
    }

    .ld-photo-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ld-photo-card {
        aspect-ratio: 16 / 9;
    }

    .ld-name {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .ld-timeline-item {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 767.98px) {
    .ld-section          { padding: 56px 0; }

    .ld-heading {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .ld-header           { margin-bottom: 40px; }

    .ld-name             { font-size: 28px; letter-spacing: -0.5px; }

    .ld-content-col      { gap: 32px; }

    .ld-timeline-item    { flex: 0 0 100%; }

    .ld-org              { font-size: 24px; }

    .ld-bio,
    .ld-bio p,
    .ld-position-title,
    .ld-position-desc    { font-size: 17px; line-height: 26px; }
}

@media (max-width: 575.98px) {
    .ld-section          { padding: 40px 0; }

    .ld-heading          { font-size: 26px; }
    .ld-name             { font-size: 26px; }

    .ld-member           { gap: 28px; margin-bottom: 40px; }

    .ld-photo-card       { aspect-ratio: 4 / 3; }
}
