.suggestion-wall {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #10213d;
  background: #f7f9fd;
  border: 1px solid #dfe6f2;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(13, 36, 75, .08);
}

.wall-intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: 2rem;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dfe6f2;
}

.wall-intro h2 { margin: .25rem 0 .4rem; }
.wall-intro p { margin: 0; color: #60708a; }
.suggestion-form label { display: block; margin-bottom: .45rem; font-weight: 800; }
.suggestion-form > div { display: flex; gap: .75rem; align-items: stretch; }
.suggestion-form textarea {
  width: 100%;
  min-height: 86px;
  padding: .85rem 1rem;
  resize: vertical;
  color: #10213d;
  background: #fff;
  border: 1px solid #c9d5e6;
  border-radius: 14px;
  font: inherit;
}
.suggestion-form textarea:focus { outline: 3px solid rgba(8, 86, 202, .15); border-color: #0856ca; }
.suggestion-form .button { align-self: flex-end; border: 0; cursor: pointer; }

.suggestion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.suggestion-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem 1rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid #dfe6f2;
  border-radius: 16px;
}
.suggestion-meta { display: flex; gap: .75rem; align-items: center; font-size: .82rem; }
.suggestion-meta time { color: #7a879a; }
.suggestion-card > p { grid-column: 1; margin: 0; line-height: 1.55; overflow-wrap: anywhere; }
.suggestion-card > form { grid-column: 2; grid-row: 1 / span 2; }
.vote-button {
  display: flex;
  min-width: 76px;
  height: 100%;
  padding: .6rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  color: #52627a;
  background: #f1f5fb;
  border: 1px solid #d8e1ef;
  border-radius: 12px;
  cursor: pointer;
}
.vote-button strong { color: #10213d; font-size: 1.15rem; }
.vote-button.voted { color: #0756ca; background: #e8f1ff; border-color: #91b9f3; }
.vote-button:disabled { cursor: default; opacity: .65; }
.wall-empty { grid-column: 1 / -1; padding: 2rem; text-align: center; color: #718097; }
.wall-closed { justify-self: end; color: #718097; font-weight: 700; }

@media (max-width: 760px) {
  .wall-intro, .suggestion-list { grid-template-columns: 1fr; }
  .suggestion-form > div { flex-direction: column; }
  .suggestion-form .button { align-self: stretch; }
  .wall-closed { justify-self: start; }
}
