/* ══════════════════════════════
   PAGE MOT DU PRÉSIDENT
══════════════════════════════ */
.president-page-section {
    background: var(--dark);
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.president-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.president-page-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* ── Visual ── */
.president-page-visual {
    position: relative;
    z-index: 2;
}

.president-main-photo-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 420px;
    z-index: 2;
}

.president-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.president-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
}

.president-name-card {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 16px;
    z-index: 4;
}

.president-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.president-role {
    color: var(--blue-light, #60a5fa);
    font-size: 0.83rem;
    margin-top: 2px;
}

/* Thumbnails */
.president-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.president-thumb {
    flex: 1;
    height: 80px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: opacity 0.3s, border-color 0.3s;
    display: block;
}

.president-thumb:hover,
.president-thumb.active {
    opacity: 1;
    border-color: var(--blue-light, #60a5fa);
}

/* ── Text ── */
.president-page-text {
    position: relative;
    z-index: 2;
}

.president-quote-icon {
    font-size: 2.5rem;
    color: var(--blue-light, #60a5fa);
    opacity: 0.35;
    margin-bottom: 20px;
    line-height: 1;
}

.president-body p {
    color: var(--gray, #94a3b8);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.president-axes-title {
    color: #fff;
    font-size: 0.97rem;
    font-weight: 600;
    margin: 28px 0 16px;
}

/* Axes — fond solide w z-index */
.president-axes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid var(--blue-light, #60a5fa);
    border-radius: 0 10px 10px 0;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.president-axe {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.president-axe-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(96, 165, 250, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.president-axe-icon i {
    color: var(--blue-light, #60a5fa);
    font-size: 0.9rem;
}

.president-axe-content strong {
    color: #fff;
    font-size: 0.88rem;
    display: block;
    margin-bottom: 4px;
}

.president-axe-content span {
    color: var(--gray, #94a3b8);
    font-size: 0.83rem;
    line-height: 1.6;
    display: block;
}

/* Signature */
.president-sign-block {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.president-signature {
    font-style: italic;
    color: var(--blue-light, #60a5fa) !important;
    font-size: 1rem !important;
    margin-bottom: 14px !important;
}

.president-sign-name strong {
    color: #fff;
    display: block;
    font-size: 1rem;
}

.president-sign-name span {
    color: var(--gray, #94a3b8);
    font-size: 0.83rem;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .president-page-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .president-main-photo-wrap {
        height: 300px;
    }

    .president-thumb {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .president-main-photo-wrap {
        height: 240px;
    }
}