/* ── PHONE ROWS ── */
.field-section-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.phone-row { margin-bottom: 0.7rem; }

.phone-row__inputs {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.6rem;
  align-items: center;
}

.field--grow  { min-width: 0; }
.field--category { width: 100px; }
.field--category .field-select { padding-right: 1.8rem; }

.remove-phone-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(13,17,23,0.14);
  background: transparent;
  color: var(--ink-60);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.remove-phone-btn:hover {
  border-color: #e04040;
  color: #e04040;
  background: #fdecea;
}

.add-phone-btn {
  margin-top: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue);
  background: transparent;
  border: 1.5px dashed var(--blue-mid);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, border-color 0.15s;
}
.add-phone-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}