.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 86px;
  font: 700 8px Cinzel;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.status.approved { color: #6ed683; }
.status.approved i { background: #6ed683; }
.status.pending { color: #e2a84c; }
.status.pending i { background: #e2a84c; }
.status.denied { color: #ee7568; }
.status.denied i { background: #ee7568; }
