.employee-phone-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.employee-phone-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  min-height: 42px;
}

.employee-phone-line-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex: 1 1 auto;
}

.employee-phone-line-label {
  font-size: 12px;
  line-height: 1.2;
  color: #94a3b8;
  font-weight: 600;
}

.employee-phone-line-value {
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
  word-break: break-word;
  letter-spacing: -0.01em;
}

.employee-phone-line-value.is-empty {
  color: #94a3b8;
  font-weight: 500;
}

.employee-phone-call-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #475569;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
  justify-self: end;
  align-self: center;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.employee-phone-call-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.employee-phone-call-btn:hover:not(:disabled) {
  background: rgba(241, 245, 249, 0.95);
  color: #0f172a;
}

.employee-phone-call-btn:active:not(:disabled) {
  transform: scale(0.97);
}

.employee-phone-call-btn:disabled {
  opacity: 0.42;
  cursor: default;
}

.member-metrics-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
  width: 100%;
}

.member-metric-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.member-metric-inline strong {
  font-size: 15px;
  line-height: 1;
  color: #0f172a;
  font-weight: 700;
}

.member-metric-inline span {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.member-metric-inline--danger strong,
.member-metric-inline--danger span {
  color: #b91c1c;
}

.member-metric-separator {
  color: #cbd5e1;
  font-size: 13px;
}

@media (max-width: 640px) {
  .member-metrics-row {
    gap: 6px;
  }

  .employee-phone-line {
    align-items: flex-start;
  }

  .employee-phone-line-main {
    gap: 3px;
  }
}
