/* Establish a new block formatting context so floats inside don't escape */
.pm-comments,
ul.pm-ul-comments,
#primary,
#wrapper { display: flow-root; }

/* Fallback for very old browsers that don't support flow-root */
@supports not (display: flow-root) {
  .pm-comments,
  ul.pm-ul-comments,
  #primary,
  #wrapper { overflow: hidden; }
}

/* Prevent the comment text row from creating odd bars/wraps */
.pm-comment-info {
  background-color: transparent; /* override the black background */
  overflow: hidden;              /* keep action buttons/avatars from overlapping text */
}

/* Ensure the footer sits below any floats no matter what */
footer { clear: both; }

