/*
Mobile First Stylings
*/

/*
Cut off first line of text in "the lates frist page"
*/
.collection-item-body {
  width: 576px;
  display: block;
  height: 160px;
  white-space: inherit;
  overflow: hidden;
  text-overflow:ellipsis;

}

/*
larger screen phones
https://material.io/devices/
*/
@media screen and (min-width: 411px) {

}

/*
iPad Vertical
*/
@media screen and (min-width: 768px) {
    
}

/*
 iPad Horizontal
*/
@media screen and (min-width: 1024px) {
    
}

/*
 Widescreen: desktop nav is shown
*/
@media screen and (min-width: 1192px) {
     
}