
div#divTravelBlogs {
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;
  /*overflow: auto;*/
  /*background-color: yellow;*/
}

div.TravelBlog {
  clear: both;
  float: left;
  display: block;
  width: 90%;
  /*border: thin gray solid;*/
  border-top: thin lightgray solid;
  border-left: thin lightgray solid;
  padding: 0.75em;
  margin: 0;
  margin-bottom: 1em;
}

div.TravelBlog picture {
  display: block;
  height: 8em;
  max-height: 175px;
}

div.TravelBlog picture img {
  width: 99%;
  height: 99%;
/*  max-width: 300px;
  max-height: 175px;
*/}

div.TravelBlogText {
  display: block;
}

/* title */
div.TravelBlogText p:nth-child(1) {
  height: 2.5em;
  font-weight: bold;
  font-style: italic;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* no more than 2 lines for titles */
  -webkit-box-orient: vertical;
}

div.TravelBlogText p:nth-child(2) {
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* no more than 2 lines for titles */
  -webkit-box-orient: vertical;
}

div.TravelBlogBottom a {
  float: left;
  display: block;
}

div.TravelBlogBottom p {
  display: none;
}

div.lineBreak 
{
  clear: both;
  width: 100%;
  display: none;
}

@media (min-width: 360px) {

  /* show two blogs side-by-side on tablet-vertical */
  div.TravelBlog {
    clear: none;
    float: left;
    display: inline;
    width: 40%;
    /*border: thin green solid;*/
    margin: 0;
    margin-bottom: 1em;
    /*background-color: pink;*/
  }

  div.TravelBlog picture img {
    width: 90%;
    height: 98%;
    max-width: 300px;
    max-height: 150px;
  }

  div.TravelBlog.box2L {
    clear: left;
    margin-right: 0.5em;
  }

  div.TravelBlog.box2R {
    clear: right;
    margin-right: 0;
  }

  div.lineBreak.box2R {
    display: block;
  }

}

@media (min-width: 768px) {

  /* show three blogs side-by-side on laptop */
  div.TravelBlog {
    clear: none;
    float: left;
    width: 29%;
    margin: 0;
    margin-bottom: 1em;
    /*border: thin orange solid;*/
    /*background-color: lightblue;*/
  }

  picture.TravelBlogImage img {
    width: 90%;
    height: 98%;
    max-width: 300px;
    max-height: 200px;
  }

  div.TravelBlog.box3L {
    clear: left;
    margin-right: 0.5em;
  }

  div.TravelBlog.box3C {
    clear: none;
    margin-right: 0.5em;
  }

  div.TravelBlog.box3R {
    clear: right;
    margin-right: 0;
  }

  div.TravelBlogBottom p {
    float: right;
    width: 100%;
    margin-top: 1em;
    font-style: italic;
    display: block;
    font-size: 80%;
    text-align: right;
  }

  div.lineBreak.box2R {
    display: none;
  }

  div.lineBreak.box3R {
    display: block;
  }

}

@media (min-width: 990px) {

  /* show four blogs side-by-side on laptop */
  div.TravelBlog {
    clear: none;
    float: left;
    width: 20%;
    margin: 0;
    margin-bottom: 1em;
    /*border: thin red solid;*/
    /*    background-color: lightgreen;
*/
  }

    div.TravelBlog.box4L {
      clear: left;
      margin-right: 0.5em;
    }

    div.TravelBlog.box4C {
      clear: none;
      margin-right: 0.5em;
    }

    div.TravelBlog.box4R {
      clear: right;
      margin-right: 0;
    }

  div.TravelBlogBottom a {
    float: left;
    /*width: 50%;*/
    display: inline;
    text-align: left;
  }

  div.TravelBlogBottom p {
    float: right;
    /*width: 50%;*/
    margin-top: 1em;
    font-style: italic;
    display: inline;
    font-size: 80%;
    text-align: right;
  }

  div.lineBreak.box2R,
  div.lineBreak.box3R {
    display: none;
  }

  div.lineBreak.box4R {
    display: block;
  }

/*  div.TravelBlog.box4R::after {
    clear: both;
  }*/
}


