.dream-comments {
  margin-top: 2.5rem;
}

.dream-comments-shell {
  border: 1px solid rgba(35, 54, 69, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(35, 54, 69, 0.08);
  padding: 24px;
}

.dream-comments-head,
.dream-comments-actions,
.dream-comments-grid {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dream-comments-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.dream-comments-head h2 {
  margin: 0;
}

.dream-comments-form input,
.dream-comments-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 54, 69, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #233645;
  padding: 12px 14px;
  font: inherit;
}

.dream-comments-form textarea {
  min-height: 160px;
  resize: vertical;
  margin: 14px 0;
}

.dream-comments-actions {
  justify-content: space-between;
}

.dream-comments-actions button,
.dream-comments-refresh {
  border: none;
  border-radius: 14px;
  background: #2b7f88;
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
  font: inherit;
}

.dream-comments-status {
  color: #5f7382;
  font-size: 14px;
}

.dream-comments-results {
  margin-top: 18px;
}

.dream-comments-empty {
  border-radius: 16px;
  background: #f6fafb;
  padding: 20px;
  color: #607585;
  text-align: center;
}

.dream-comments-list {
  display: grid;
  gap: 14px;
}

.dream-comment-item {
  border: 1px solid rgba(35, 54, 69, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.dream-comment-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  color: #607585;
  font-size: 14px;
}

.dream-comment-head strong {
  color: #233645;
  font-size: 16px;
}

.dream-comment-head a {
  margin-left: 8px;
  color: #2b7f88;
  text-decoration: none;
}

.dream-comment-item p {
  margin: 0;
  line-height: 1.8;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 720px) {
  .dream-comments-grid,
  .dream-comments-head,
  .dream-comments-actions,
  .dream-comment-head {
    flex-direction: column;
    align-items: stretch;
  }
}
