/*
  Hide the floating label that sometimes appears above the comment textarea.
  Seen as: <label class="float-label" for="comment">Comment</label>
*/

/* Most specific: label explicitly for the comment textarea */
.comment-respond label.float-label[for="comment"],
#commentform label.float-label[for="comment"],
form#commentform label.float-label[for="comment"] {
  display: none !important;
}

/* Fallback: any float-label inside the comment field wrapper */
.comment-respond .comment-form-comment > label.float-label,
#commentform .comment-form-comment > label.float-label {
  display: none !important;
}

/* Remove any leftover spacing the theme might reserve for the label */
.comment-respond .comment-form-comment,
#commentform .comment-form-comment {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
