/* Pages Organisation P.A.S — bureau, CA, associations, mot présidente */
:root {
    --org-nav-offset: 70px;
}

@media (min-width: 900px) {
    :root {
        /* Navbar sur 2 lignes (logo + menu étendu) */
        --org-nav-offset: 124px;
    }
}

.org-page-hero {
    position: relative;
    z-index: 1;
    padding: calc(var(--org-nav-offset) + 2.75rem) 1.25rem 3rem;
    background: linear-gradient(135deg, #0B1D35 0%, #023E8A 55%, #0073CF 100%);
    color: white;
    text-align: center;
}
.org-page-hero .container {
    max-width: 960px;
    margin: 0 auto;
}
.org-page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}
.org-page-hero h1 i {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    opacity: 0.9;
}
.org-page-hero p {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}
.org-subnav {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
    position: sticky;
    top: var(--org-nav-offset);
    z-index: 900;
}
.org-subnav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.org-subnav a {
    color: #023E8A;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}
.org-subnav a:hover,
.org-subnav a.active {
    background: #E8F4FD;
    color: #0073CF;
}
.org-section {
    padding: 3rem 0;
}
.org-section.bg-light { background: #f8fafc; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.member-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(2, 62, 138, 0.06);
}
.member-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #E8F4FD;
}
.member-photo.member-logo-img {
    object-fit: contain;
    padding: 1.25rem;
    background: #f8fafc;
}
.member-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0073CF;
}
.member-body { padding: 1rem 1.1rem 1.25rem; }
.member-body h3 { margin: 0 0 0.25rem; font-size: 1rem; color: #1e293b; }
.member-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0073CF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.member-body p { margin: 0; font-size: 0.88rem; color: #64748b; line-height: 1.55; }
.contexte-grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contexte-grid { grid-template-columns: 1fr; }
}
.contexte-quote {
    border-left: 4px solid #0073CF;
    padding: 1rem 1.25rem;
    margin: 0 0 1.25rem;
    background: #f8fafc;
    font-style: italic;
    color: #334155;
    line-height: 1.65;
}
.contexte-text {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.assoc-logos-section {
    margin-bottom: 2.5rem;
}
.assoc-logos-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #023E8A;
    margin-bottom: 1.5rem;
}
.assoc-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}
.assoc-logo-tile {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.75rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.assoc-logo-tile:hover {
    box-shadow: 0 8px 24px rgba(2, 62, 138, 0.1);
    transform: translateY(-2px);
}
.assoc-logo-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.assoc-logo-tile--dark {
    background: #0f172a;
}
.assoc-card .assoc-logo--dark {
    background: #0f172a;
}
.assoc-logo-badge {
    background: linear-gradient(135deg, #E8F4FD, #f0f9ff);
    border: 2px dashed #0073CF;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #023E8A;
    padding: 0.5rem;
}
.assoc-logo-badge i { font-size: 1.5rem; color: #0073CF; }
.assoc-tagline {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
    font-style: italic;
    font-size: 0.95rem;
}
.assoc-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.1rem;
}
.assoc-card .assoc-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    border: 2px solid #E8F4FD;
}
.assoc-card .assoc-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    flex-shrink: 0;
}
.assoc-card .assoc-logo-badge i { font-size: 1.35rem; }
    background: #f8fafc;
    padding: 4px;
}

/* Conseil d'administration — profils enrichis (Plan d'Actions PAS 2026) */
.ca-governance-intro {
    max-width: 920px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.ca-governance-intro p {
    color: #475569;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}
.ca-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .ca-stats-grid { grid-template-columns: 1fr; }
}
.ca-stat-card {
    background: linear-gradient(135deg, #E8F4FD 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 1.1rem 1rem;
    text-align: center;
}
.ca-stat-card strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #023E8A;
    line-height: 1.2;
}
.ca-stat-card span {
    display: block;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.35rem;
}
.ca-section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.ca-section-heading h2 {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    color: #023E8A;
    margin: 0 0 0.5rem;
}
.ca-section-heading p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}
.ca-profiles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.ca-profile-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(2, 62, 138, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ca-profile-card:hover {
    box-shadow: 0 12px 36px rgba(2, 62, 138, 0.11);
    transform: translateY(-2px);
}
.ca-profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #0B1D35 0%, #023E8A 70%, #0073CF 100%);
    color: white;
}
.ca-profile-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    background: #E8F4FD;
}
.ca-profile-photo.logo-placeholder {
    object-fit: contain;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.95);
}
.ca-profile-identity h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.ca-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.ca-profile-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.ca-profile-badge.primary {
    background: #FFD166;
    color: #0B1D35;
    border-color: transparent;
}
.ca-profile-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 768px) {
    .ca-profile-body { grid-template-columns: 1fr; }
    .ca-profile-header { flex-direction: column; text-align: center; }
}
.ca-profile-text,
.ca-profile-functions {
    padding: 1.35rem 1.5rem;
}
.ca-profile-text {
    border-right: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .ca-profile-text { border-right: none; border-bottom: 1px solid #e2e8f0; }
}
.ca-profile-text h4,
.ca-profile-functions h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0073CF;
    margin: 0 0 0.75rem;
}
.ca-profile-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
}
.ca-profile-functions ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ca-profile-functions li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.55rem;
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.55;
}
.ca-profile-functions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0073CF;
}
.ca-footer-note {
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding: 1.1rem 1.25rem;
    background: #f8fafc;
    border-left: 4px solid #0073CF;
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}
.ca-source-ref {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
}
.ca-source-ref i { margin-right: 0.35rem; }
