.novel-comment {
  margin-top: 32px;
  color: #fff;
}

.novel-comment__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.novel-comment__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #1a1a1a;
  padding: 12px 14px;
  border-radius: 4px;
}

.novel-comment__textarea {
  width: 100%;
  min-height: 84px;
  border-radius: 4px;
  border: none;
  resize: none;
  font-size: 14px;
  background-color: #1a1a1a;
  color: #fff;
}

.novel-comment__textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.novel-comment__textarea::placeholder {
  color: #777;
}

.novel-comment__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.novel-comment__input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  background-color: #1a1a1a;
  color: #fff;
}

.novel-comment__input::placeholder {
  color: #777;
}

.novel-comment__submit {
  flex: 0 0 auto;
  min-width: 96px;
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  background-color: #3E7DFF;
  color: #000;
  cursor: pointer;
  align-self: flex-end;
}

.novel-comment__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 824px) {

  .novel-comment__actions {
    flex-direction: column;
    align-items: stretch;
  }

}


