#comments {
  /* background-color: var(--content-background-color); */
  font-size: 14px;
}

#comments .comments-title {
  margin: 30px 0;
}

#comments .comments-list {
  margin-bottom: 30px;
}

#comments .comments-list .comment {
  max-width: 800px;
  width: 100%;
  margin-bottom: 20px;
}

#comments .comments-list .comment .comment-info {
  color: #b6bdcc;
  margin-bottom: 7px;
}

#comments .comments-list .comment .comment-info .comment-author {
  font-weight: bold;
  color: #49b42f;
}

#comments .comments-list .comment .comment-info .comment-date {
  color: #b6c1c6;
  font-size: 12px;
}

#comments .comments-list .comment .comment-content {
  color: #b6c1c6;
}

#comments .comment-form {
  max-width: 800px;
  width: 100%;
  margin: 30px 0;
}

#comments .comment-form textarea,
#comments .comment-form input[type="text"],
#comments .comment-form input[type="email"] {
  width: 100%;
  /* color: var(--design-color-3); */
  outline: none;
  border-radius: 4px;
  background-color: #fff;

  /* фінальні значення після перевизначень */
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  font-size: 12px;
  padding: 5px 10px; /* якщо треба лише 5px, заміни на 5px */
}

#comments .comment-form textarea.error,
#comments .comment-form input[type="text"].error,
#comments .comment-form input[type="email"].error {
  border: 1px solid #ff0000;
}

#comments .comment-form input[type="text"],
#comments .comment-form input[type="email"] {
  width: 60%;
}

#comments .comment-form .comment-form-comment textarea {
  width: 96%;
}

#comments .comment-form .form-submit .submit {
  color: #fff;
  padding: 10px 15px;
  background: #e64946;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
