/* RENZHIWANG_STAGE21_TOOL_FEEDBACK */
.rzw-tool-feedback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 30px 0;
  padding: 24px;
  border: 1px solid #dbe4ea;
  border-radius: 8px;
  background: #f7faf8;
  box-shadow: 0 8px 24px rgba(20, 37, 32, 0.06);
}

.rzw-tool-feedback h2 {
  margin: 4px 0 8px;
  font-size: 24px;
  line-height: 1.3;
  color: #16352d;
}

.rzw-tool-feedback p {
  margin: 0;
  color: #44546a;
  line-height: 1.8;
}

.rzw-tool-feedback .rzw-section-kicker {
  margin: 0;
  color: #2f7d62;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rzw-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.rzw-feedback-actions .rzw-btn {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #b9c8c0;
  background: #ffffff;
  color: #16352d;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.rzw-feedback-actions .rzw-btn-primary {
  border-color: #1f6f55;
  background: #1f6f55;
  color: #ffffff;
}

.rzw-feedback-actions .rzw-btn:focus,
.rzw-feedback-actions .rzw-btn:hover {
  border-color: #174f3f;
  box-shadow: 0 0 0 3px rgba(31, 111, 85, 0.14);
  outline: none;
}

@media (max-width: 720px) {
  .rzw-tool-feedback {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .rzw-feedback-actions {
    justify-content: stretch;
  }

  .rzw-feedback-actions .rzw-btn {
    width: 100%;
    text-align: center;
  }
}
