/* ── Fiche personnalité ──────────────────────────────────────── */
.perso-photo-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0,0,0,.13);
}
.perso-photo-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}
.perso-photo-wrap .photo-copyright {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.45);
    color: rgba(255,255,255,.85);
    font-size: .65rem;
    padding: 4px 10px;
    text-align: right;
}
.perso-table {
    font-size: .88rem;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.perso-table tr { border-bottom: 1px solid #f0f0f0; }
.perso-table tr:last-child { border-bottom: none; }
.perso-table td { padding: .55rem .5rem; vertical-align: top; }
.perso-table td:first-child {
    width: 38%;
    color: #888;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding-right: .75rem;
    white-space: nowrap;
}
.perso-table td:last-child { color: #222; font-weight: 500; }
.perso-table .perso-specialite td { padding-top: .75rem; padding-bottom: .35rem; }
.perso-specialite-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vert-default,#144d47);
    border-left: 3px solid var(--vert-default,#144d47);
    padding-left: .6rem;
}
.perso-city-link {
    color: var(--vert-default,#144d47);
    font-weight: 600;
    text-decoration: none;
    font-size: .82rem;
}
.perso-city-link:hover { text-decoration: underline; }
.perso-countdown {
    background: #f0fdf4;
    border-radius: 8px;
    padding: .5rem .75rem;
    margin-top: .5rem;
    font-size: .8rem;
    border-left: 3px solid #16a34a;
}
.perso-birthday {
    background: linear-gradient(135deg,#f0fdf4,#dcfce7);
    border-radius: 8px;
    padding: .6rem .75rem;
    margin-top: .5rem;
    font-size: .82rem;
    border-left: 3px solid #16a34a;
}

/* ════════════════════════════════════════════════════════════
   BARRE D'ACTIONS
   ════════════════════════════════════════════════════════════ */
.action-bar {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
    padding: .85rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin: 1.25rem 0 1.5rem;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    color: #555;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .18s;
    line-height: 1;
    white-space: nowrap;
    font-family: inherit;
}
.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
    text-decoration: none;
}
/* Favoris */
.action-btn--fav:hover,
.action-btn--fav.active {
    border-color: #e11d48;
    color: #e11d48;
    background: rgba(225,29,72,.04);
}
.action-btn--fav.active i { color: #e11d48; }
/* Vote */
.action-btn--vote:hover,
.action-btn--vote.active {
    border-color: var(--vert-default,#144d47);
    color: var(--vert-default,#144d47);
    background: rgba(20,77,71,.04);
}
.action-btn--vote.active i { color: var(--vert-default,#144d47); }
/* Vues — non cliquable */
.action-btn--views {
    cursor: default;
    border-color: transparent;
    background: transparent;
    color: #9ca3af;
    pointer-events: none;
}
/* Signaler */
.action-btn--report { color: #9ca3af; }
.action-btn--report:hover {
    border-color: #f59e0b;
    color: #d97706;
    background: rgba(245,158,11,.04);
}
/* Compteur vote */
.vote-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #555;
    font-size: .62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    transition: all .18s;
}
.vote-badge.active {
    background: var(--vert-default,#144d47);
    color: #fff;
}
.action-btn.loading { opacity: .45; pointer-events: none; }

/* ── Modal signalement ───────────────────────────────────────── */
.report-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(2px);
}
.report-modal.open { display: flex; }
.report-modal__box {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 430px;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    animation: slideUp .2s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.report-modal__header {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.report-modal__close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 1rem;
    padding: 2px;
    line-height: 1;
    transition: color .15s;
}
.report-modal__close:hover { color: #374151; }
.report-reason-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1rem;
}
.report-reason-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .8rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: .83rem;
    color: #374151;
    transition: all .15s;
    user-select: none;
}
.report-reason-label:has(input:checked) {
    border-color: #f59e0b;
    background: rgba(245,158,11,.06);
    color: #92400e;
    font-weight: 600;
}
.report-reason-label input { margin: 0; flex-shrink: 0; }
.report-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: .6rem .75rem;
    font-size: .83rem;
    font-family: inherit;
    outline: none;
    margin-bottom: .75rem;
    transition: border-color .15s;
}
.report-input:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.1); }
textarea.report-input { resize: vertical; min-height: 80px; }
.report-btn-submit {
    width: 100%;
    padding: .7rem;
    background: #f59e0b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: inherit;
}
.report-btn-submit:hover { background: #d97706; transform: translateY(-1px); }
.report-btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.report-success {
    text-align: center;
    padding: 1rem 0;
    display: none;
}
.report-success .success-icon {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: .75rem;
    display: block;
}