/* News headline list */
/* Gavin Wray, ITS, 9 Dec 2016 */

/* Extra small screens first */

.newsSchedule {
  padding-bottom: 10px;
}

.newsItems {
  padding: 10px 0;
  clear: both;
}

.newsItems:nth-last-child(n+2) {
  /* optional - for news in box styles with solid background */
  /* border-bottom: 2px solid #fff; */
}

.news-thumbnail {
  float: right;
  width: 100px;
  height: 100px;
  margin-left: 20px;
  margin-bottom: 10px;
}

/* small screens and above */

@media (min-width: 480px) {
  
  .newsSchedule {
    padding-bottom: 0;
  }
  
  .news-thumbnail {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 0;
  }
  
  /* prevent abstract wrapping beneath thumbnail */
  .newsItem p {
    margin-left: 120px;
  }
}