@use "../../../styles/int.scss";

$description-max-width: 720px;
$comment-max-width: 720px;

.container {
  display: flex;
  flex-direction: column;
  gap: int.$spacing-2;
  padding-bottom: int.$spacing-4;
  border-bottom: 1px solid int.$warmgray-60;

  &.disableBorder {
    border-bottom: none;
  }
}

.description {
  max-width: $description-max-width;
}

.comment {
  max-width: $comment-max-width;
}
