/* ── Company sidebar list ── */
.company-list { list-style: none; }

.company-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  border-left: 3px solid transparent;
  transition: background 0.1s;
}
.company-list a:hover  { background: var(--bg); }
.company-list a.active { background: var(--bg); border-left-color: var(--text); font-weight: 500; }

.company-list .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.company-list a.active .dot { background: var(--text); }

/* ── Company header ── */
.company-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-header-left { display: flex; align-items: center; gap: 14px; }

.company-logo {
  width: 42px; height: 42px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--muted);
}

.company-name     { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.company-domain   { font-size: 13px; color: var(--muted); margin-top: 2px; }
.company-web-link { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; font-size: 12px; }
.company-web-link:hover { color: var(--text); }

/* ── Company meta bar ── */
.company-meta-bar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }

.cmeta-pill {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 11px;
  text-decoration: none;
}
.cmeta-pill--highlight { background: var(--high-bg); color: var(--high-text); border-color: transparent; font-weight: 600; }
.cmeta-pill--link:hover { border-color: var(--text); color: var(--text); }

/* ── Company notes ── */
.company-notes {
  font-size: 12.5px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 1rem;
  line-height: 1.55;
}

/* ── User contact card (dentro de vista empresa) ── */
.user-row { align-items: center; }

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}

.user-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

.user-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 3px; }
.user-meta-item {
  font-size: 11.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.1s;
}
.user-meta-item:hover { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

.user-contact { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.user-contact strong { color: var(--text); font-weight: 500; }
