/* Homepage — Global Network location cards */

.nx-loc-grid { row-gap: 16px !important; }

.nx-loc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(20, 24, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    height: 100%;
}

.nx-loc-card:hover {
    transform: translateY(-3px);
    border-color: var(--tertiary-color);
    background: rgba(20, 24, 38, 0.85);
}

.nx-loc-card img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.nx-loc-text { min-width: 0; }

.nx-loc-text h5 {
    margin: 0 0 2px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nx-loc-text span {
    font-size: 12px;
    color: #aab3c2;
}
