.sigpo-card:hover { transform: none !important; }

/* ═══════════════════════════════════════════ */
/* PERSONA NAV — Horizontal bar with dropdowns */
/* ═══════════════════════════════════════════ */

.persona-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 25px;
    padding: 6px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.persona-nav-group {
    position: relative;
}

.persona-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    background: transparent;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.persona-nav-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

.persona-nav-btn.active {
    background: linear-gradient(135deg, #2d8a4e 0%, #1a5c32 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(45, 138, 78, 0.3);
}

/* Direct links (a tags) that act as nav buttons */
a.persona-nav-btn {
    text-decoration: none;
}

a.persona-nav-btn:hover {
    text-decoration: none;
    color: #2d3748;
}

a.persona-nav-btn.active:hover {
    color: white;
}

/* Dropdown */
.persona-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 6px;
    min-width: 220px;
    z-index: 1000;
}

.persona-nav-dropdown-inner {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 6px;
}

/* Show dropdown on hover of the group */
.persona-nav-group:hover .persona-nav-dropdown,
.persona-nav-group:focus-within .persona-nav-dropdown {
    display: block;
}

/* Dropdown items */
.persona-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.15s ease;
}

.persona-nav-item:hover {
    background: #f0fff4;
    color: #2d8a4e;
    text-decoration: none;
}

.persona-nav-item.active {
    background: #f0fff4;
    color: #2d8a4e;
    font-weight: 700;
}

.persona-nav-item i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

/* Counter badges */
.nav-count {
    background: rgba(45, 138, 78, 0.12);
    color: #2d8a4e;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    margin-left: auto;
}

.persona-nav-item.active .nav-count {
    background: rgba(45, 138, 78, 0.2);
}

.persona-nav-btn .nav-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
}

.persona-nav-btn.active .nav-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Caret icon in dropdown buttons */
.persona-nav-btn .fa-caret-down {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.2s;
}

.persona-nav-group:hover .persona-nav-btn .fa-caret-down {
    transform: rotate(180deg);
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE                                  */
/* ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .persona-nav {
        gap: 2px;
        padding: 4px;
    }

    .persona-nav-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .persona-nav-btn .btn-label {
        display: none;
    }

    .persona-nav-dropdown {
        min-width: 200px;
    }
}

