.feedback-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feedback-field {
  display: grid;
  gap: 8px;
}

.feedback-label {
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.feedback-message {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid var(--site-line-strong);
  border-radius: 14px;
  padding: 14px;
  color: var(--site-text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  outline: none;
}

.feedback-message:focus-visible {
  border-color: rgba(120, 212, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(120, 212, 255, 0.1);
}

.feedback-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feedback-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feedback-count,
.feedback-status {
  color: var(--site-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.feedback-submit {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.feedback-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.feedback-status {
  min-height: 1.4em;
}

.feedback-status[data-tone="success"] {
  color: #8ee7d4;
}

.feedback-status[data-tone="error"] {
  color: #ffb09a;
}

@media (max-width: 680px) {
  .feedback-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
