/*** 

  css_homepage_news.css
  
  Styles for the homepage news list.
  
***/

.homepage #news-container {
}

.homepage #news-container .news {
  justify-content: space-between;
}

.homepage #news-container .top-story {
  margin: 2em 0;
}

.homepage #news-container .story {
  padding: 0;
  margin: 1em 0;
}

.homepage #news-container .story a {
  display: block;
  height: 100%;
  color: #333;
  background-color: #eee;
  text-decoration: none;
}
.homepage #news-container .story a:hover,
.homepage #news-container .story a:active {
  color: #fff;
  background-color: #c28e0e;
}

.homepage #news-container .story .image {
  height: 200px;
  background-size: cover;
  background-position-y: 20%;
  background-position-x: 50%;
}

.homepage #news-container .story .title {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem;
}

/*.homepage #news-container #suggestions {
  margin-top: 1em;
}*/




/* Media queries for a given screen size or LARGER */

/* Extra small devices (portrait phones, less than 576px)
   No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

  .homepage #news-container .story {
    max-width: 45%;
  }
  
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  .homepage #news-container .story {
    max-width: 30%;
  }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}




/* Media queries for a given screen size or SMALLER */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

/* Extra large devices (large desktops)
   No media query since the extra-large breakpoint has no upper bound on its width */