.required-asterisk {
  color: var(--danger, #c0392b);
  margin-left: .15rem;
  font-weight: 700;
}
.form-field--checkbox {
  display: block;
  margin: .8rem 0;
}
.form-field--checkbox label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: .6rem;
  align-items: center;
}
.form-field--checkbox input[type="checkbox"] {
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
}
.form-field--checkbox .checkbox-yes {
  font-weight: 600;
}
.form-field--checkbox .checkbox-text {
  font-weight: normal;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-warm, #f4ece1);
  color: var(--ink, #1d1d1d);
  font-weight: 700;
}
.avatar--nav { width: 40px; height: 40px; font-size: 1rem; }
.avatar--profile { width: 80px; height: 80px; font-size: 2rem; }
.avatar img, img.avatar { width: 100%; height: 100%; object-fit: cover; }
.avatar-section {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: .5rem 0 1.5rem;
}

.inline-form {
  display: inline;
}
