/* BurgerParity feature-request / suggest-a-feature page. */

.suggest-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 48px);
}

.suggest-card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 24px 24px;
}
.suggest-form { display: flex; flex-direction: column; gap: 16px; }
.sg-field { display: flex; flex-direction: column; gap: 7px; }
.sg-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.sg-opt { font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--char-soft); }
.sg-input {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--char);
  background: var(--cream);
  border: 2.5px solid var(--char);
  border-radius: 12px;
}
.sg-input:focus { outline: none; background: var(--paper); box-shadow: var(--shadow-sm); }
.sg-textarea { min-height: 130px; resize: vertical; line-height: 1.5; }

.sg-go { justify-content: center; width: 100%; }
.sg-go:disabled { opacity: .6; cursor: default; transform: none; box-shadow: var(--shadow-sm); }
.sg-msg {
  margin: 0;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ketchup-deep);
  background: #fdeae2;
  border: 2px solid var(--ketchup);
  border-radius: 10px;
}

/* Honeypot: in the DOM for bots, off-screen for humans. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.suggest-done { text-align: center; padding: 8px 4px 4px; }
.sg-badge {
  display: inline-grid;
  place-items: center;
  width: 60px; height: 60px;
  font-size: 30px;
  background: var(--lettuce);
  border: var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-4deg);
  margin-bottom: 12px;
}
.suggest-done h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 0 0 8px; }
.suggest-done p { margin: 0 0 18px; font-size: 15px; color: var(--char-soft); }

.suggest-aside {
  background: var(--cream-deep);
  border: 2.5px solid var(--char);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.sg-aside-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 0 0 12px; }
.sg-list { margin: 0 0 14px; padding-left: 18px; }
.sg-list li { margin: 7px 0; font-size: 14px; }
.sg-note { margin: 0; font-size: 13px; color: var(--char-soft); }
.sg-note a { font-weight: 700; color: var(--char); }

/* ---- "Most wanted" board ------------------------------------------------ */
.board { margin-top: clamp(36px, 6vw, 64px); max-width: 720px; }
.board-sub { margin: -14px 0 18px; font-size: 14px; color: var(--char-soft); }
.board-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.board-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 2.5px solid var(--char);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.vote-btn {
  flex: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 52px;
  padding: 8px 10px;
  font-family: var(--font-display);
  background: var(--cream);
  border: 2.5px solid var(--char);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .1s ease, background .12s ease, box-shadow .1s ease;
}
.vote-btn:hover:not(:disabled) { transform: translate(-1px, -1px); box-shadow: var(--shadow-sm); }
.vote-btn:disabled { cursor: default; }
.vote-btn.is-voted { background: var(--cheese); box-shadow: var(--shadow-sm); }
.vote-arrow { font-size: 13px; line-height: 1; }
.vote-count { font-size: 16px; font-weight: 800; line-height: 1.1; }
.board-body { margin: 4px 0 0; font-size: 15px; line-height: 1.5; overflow-wrap: anywhere; }

@media (max-width: 860px) {
  .suggest-wrap { grid-template-columns: 1fr; }
}
