/* ═══════════════════════════════════════════════════
   Animateur Profile — Frontend
   ═══════════════════════════════════════════════════ */

.gas-animateur-profile {
    padding: 40px 20px 60px;
}

.gas-animateur-profile__container {
    max-width: 800px;
    margin: 0 auto;
}

/* ─── Header ───────────────────────────────── */

.gas-animateur-profile__header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.gas-animateur-profile__photo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gas-animateur-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gas-animateur-profile__identity {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}

.gas-animateur-profile__name {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

/* ─── Meta ─────────────────────────────────── */

.gas-animateur-profile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.gas-animateur-profile__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #64748b;
}

.gas-animateur-profile__meta-item svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.gas-animateur-profile__meta-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.gas-animateur-profile__meta-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ─── Badges ───────────────────────────────── */

.gas-animateur-profile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.gas-animateur-profile__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.gas-animateur-profile__badge--membre {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

a.gas-animateur-profile__badge--membre:hover {
    background: #d1fae5;
    border-color: #6ee7b7;
    color: #064e3b;
}

/* ─── Sections ─────────────────────────────── */

.gas-animateur-profile__section {
    margin-bottom: 28px;
}

.gas-animateur-profile__intro {
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.gas-animateur-profile__intro p {
    margin: 0;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
}

.gas-animateur-profile__section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.gas-animateur-profile__bio-content {
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
}

.gas-animateur-profile__bio-content p {
    margin: 0 0 14px 0;
}

.gas-animateur-profile__bio-content p:last-child {
    margin-bottom: 0;
}

/* ─── Responsive ───────────────────────────── */

@media (max-width: 640px) {
    .gas-animateur-profile {
        padding: 24px 16px 40px;
    }

    .gas-animateur-profile__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .gas-animateur-profile__photo {
        width: 120px;
        height: 120px;
    }

    .gas-animateur-profile__name {
        font-size: 24px;
    }

    .gas-animateur-profile__meta {
        justify-content: center;
    }

    .gas-animateur-profile__badges {
        justify-content: center;
    }

    .gas-animateur-profile__identity {
        padding-top: 0;
    }
}