.response-center {
  margin-top: 18px;
}

.response-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.response-choice {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
}

.response-choice:hover,
.response-choice[aria-pressed="true"] {
  background: var(--blue);
}

.response-choice.featured {
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(42, 78, 125, .22);
}

.response-choice.secondary {
  background: var(--soft-blue);
  color: var(--navy);
}

.response-choice.secondary:hover,
.response-choice.secondary[aria-pressed="true"] {
  background: #dce9f7;
}

.response-panel {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfaf7;
}

.response-panel[hidden] {
  display: none;
}

.response-panel h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}

.response-panel > p {
  margin: 0 0 18px;
  color: var(--slate);
  line-height: 1.6;
}

.response-form {
  display: grid;
  gap: 14px;
}

.response-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.response-field {
  display: grid;
  gap: 7px;
}

.response-field.wide {
  grid-column: 1 / -1;
}

.response-field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.response-field input,
.response-field select,
.response-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 35, 59, .2);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.response-field textarea {
  min-height: 100px;
  resize: vertical;
}

.response-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.response-submit,
.response-upload-link,
.response-confirm-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.response-submit:hover,
.response-upload-link:hover,
.response-confirm-link:hover {
  background: var(--blue);
}

.response-submit:disabled {
  cursor: wait;
  opacity: .6;
}

.response-form-status {
  min-height: 22px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.response-form-status.error {
  color: var(--danger);
}

.response-center .walkthrough-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.response-confirmation {
  margin-top: 16px;
  padding: 24px;
  border: 2px solid var(--success);
  border-radius: 16px;
  background: var(--success-bg);
  text-align: center;
}

.response-confirmation[hidden] {
  display: none;
}

.response-confirmation h3 {
  margin: 0 0 8px;
  color: var(--success);
  font-size: 1.45rem;
}

.response-confirmation p {
  margin: 0 0 18px;
  color: var(--slate);
}

.response-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.response-confirm-link.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.response-confirm-link.secondary:hover {
  background: var(--soft-blue);
}

.response-small-note {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

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

@media (max-width: 760px) {
  .response-choice-grid,
  .response-form-grid {
    grid-template-columns: 1fr;
  }

  .response-field.wide {
    grid-column: auto;
  }

  .response-choice,
  .response-submit,
  .response-upload-link,
  .response-confirm-link {
    width: 100%;
  }
}