.composer {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 12px 16px 16px;
}

.composer__fields {
  display: grid;
  gap: 10px;
}

.composer__title,
.composer__text {
  width: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 12px 12px;
  outline: none;
  font: inherit;
}

.composer__title:focus-visible,
.composer__text:focus-visible {
  background: rgba(37, 99, 235, 0.06);
}

.composer__title {
  font-size: 18px;
}

.composer__text {
  resize: none;
  overflow: hidden;
  min-height: 52px;
}

.composer__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}


