/**
 * CSS for News Blocks
 */
.news-blocks .block-style-list .block {
  animation: loadUp 0.4s ease-in-out;
  animation-fill-mode: forwards;
  margin-bottom: 20px;
  opacity: 0; }
  .news-blocks .block-style-list .block .block-post-image {
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 4px;
    height: 140px;
    overflow: hidden; }
    @media (min-width: 992px) {
      .news-blocks .block-style-list .block .block-post-image {
        height: 160px; } }
    .news-blocks .block-style-list .block .block-post-image:hover {
      opacity: 0.9;
      transition: opacity 0.25s ease-in-out; }
  .news-blocks .block-style-list .block .block-post-info a {
    color: #606060; }
  .news-blocks .block-style-list .block .block-post-info .block-post-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.25em; }
  .news-blocks .block-style-list .block .block-post-info .block-post-date {
    color: #999;
    display: block;
    font-size: 0.8em;
    margin-bottom: 0.5em; }
.news-blocks .block-style-grid .block {
  animation: loadUp 0.4s ease-in-out;
  animation-fill-mode: forwards;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 4px;
  height: 200px;
  margin-bottom: 20px;
  opacity: 0;
  overflow: hidden;
  position: relative; }
  @media (min-width: 992px) {
    .news-blocks .block-style-grid .block {
      height: 240px;
      margin-bottom: 30px; } }
  .news-blocks .block-style-grid .block > a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0; }
  .news-blocks .block-style-grid .block .block-post-info {
    background: rgba(0, 0, 0, 0.75);
    bottom: 0;
    left: 0;
    padding: 1em 1.2em;
    position: absolute;
    width: 100%; }
    .news-blocks .block-style-grid .block .block-post-info .block-post-title {
      color: white;
      display: block;
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 0.25em; }
    .news-blocks .block-style-grid .block .block-post-info .block-post-date {
      color: rgba(255, 255, 255, 0.5);
      display: block; }
  .news-blocks .block-style-grid .block:hover > a {
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.25s ease-in-out; }
.news-blocks .block-wrapper:nth-child(1) .block {
  animation-delay: 0.5s; }
.news-blocks .block-wrapper:nth-child(2) .block {
  animation-delay: 0.7s; }
.news-blocks .block-wrapper:nth-child(3) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(4) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(5) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(6) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(7) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(8) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(9) .block {
  animation-delay: 0.9s; }
.news-blocks .block-wrapper:nth-child(10) .block {
  animation-delay: 0.9s; }

@keyframes loadUp {
  from {
    opacity: 0;
    transform: translateY(15px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
