/* ============================================================
   Investor / Seller widget component
   Extracted from parent style.css
   ============================================================ */

/* Consolidated investor widget rules. Removed unused `.mapp-layout a:visited`
   and redundant global `.nc-inv-name` declaration. */

/* ============================================================
   6) INVESTOR PANEL (BLACK)
   ============================================================ */
#nc-investor-widget {
    font-family: 'Manrope', sans-serif;
    border: none;
    background: #1a202c;
    color: white;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

#nc-investor-widget .nc-inv-label {
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Inactive project notice inside investor widget */
.nc-inv-inactive-notice {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    color: #f8fafc;
}

.nc-inv-inactive-notice p {
    margin: 0 0 8px 0;
}

.nc-inv-inactive-notice .view-other {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none !important;
    font-weight: 800;
}

.nc-inv-inactive-notice .view-other a:visited {
    color: #fff !important;
    text-decoration: none !important;
}


#nc-investor-widget .nc-inv-name {
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 0 18px 0;
    border: none;
    padding: 0;
}

#nc-investor-widget a:visited {
    color: white !important;
    text-decoration: none !important;
}

.nc-inv-actions-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nc-btn-inv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px 16px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    line-height: 1;
}

.nc-btn-inv.call {
    background: #2563eb;
    color: white;
}

.nc-btn-inv.call:hover {
    background: #1d4ed8;
    color: white;
}

.nc-btn-inv.email {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nc-btn-inv.email:hover {
    background: rgba(255, 255, 255, 0.20);
    color: white;
}

.nc-btn-inv.web {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.55);
    color: #e2e8f0;
}

.nc-btn-inv.web:hover {
    border-color: rgba(226, 232, 240, 0.85);
    color: #ffffff;
}

/* Investor widget logo */
.nc-inv-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}

.nc-inv-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile investor adjustments moved from parent stylesheet */
@media (max-width: 640px) {
    #nc-investor-widget {
        padding: 18px;
    }

    #nc-investor-widget .nc-inv-name {
        font-size: 1.35rem;
    }

    .nc-btn-inv {
        padding: 14px;
        font-size: 1rem;
    }
}


/* Sticky investor widget positioning (moved from style.css) */
@media (min-width: 992px) {
    aside.sidebar .default-widget:has(#nc-investor-widget) {
        height: auto !important;
        min-height: 150vh !important;
    }

    #nc-investor-widget {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        z-index: 100;
    }
}