.howl {
  display: flex;
  flex-direction: column;
  gap: 1em;

  .howlHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .userInfo {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    align-items: end;
    text-decoration: none;
    color: black;

    &:hover {
      cursor: pointer;
    }

    * {
      margin: 0;
    }
  }

  .username {
    color: gray;
  }

  .timestamp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    .time {
      font-size: 0.8em;
      color: gray;
    }
  }
}

@media screen and (max-width: 500px) {
  .howl .howlHeader {
    flex-direction: column;
    align-items: start;
    gap: 0.5em;

    .userInfo {
      width: 100%;
      border-bottom: 1px solid gray;
    }

    .timestamp {
      gap: 0.5em;
      flex-direction: row;
      align-items: end;

      color: gray;
      font-size: 0.8em;
    }
  }
}
