.news-page__footer {
  padding: 12px 16px;
  background-color: #f1f5fa; }
  @media (min-width: 576px) {
    .news-page__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .news-page__footer-title {
    margin-bottom: 0.5rem; }
    @media (min-width: 576px) {
      .news-page__footer-title {
        margin-bottom: 0;
        margin-right: 16px; } }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #001d2d;
  padding: 0;
  border: 1px solid #e8e8e8;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background-color: #ffffff;
  text-align: left; }
  @media (min-width: 1200px) {
    .news-item:hover {
      border-color: #ffffff;
      -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
              box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); }
    .news-item:hover .news-item__header::before {
      -webkit-animation: 0.5s ease-in-out shine;
              animation: 0.5s ease-in-out shine;
      opacity: 1; } }
  .news-item__header {
    position: relative;
    overflow: hidden;
    min-height: 1px;
    width: 100%;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .news-item__header {
        margin: 0 auto; } }
    .news-item__header::before {
      content: '';
      position: absolute;
      top: 0;
      left: -45%;
      z-index: 2;
      display: block;
      width: 25%;
      height: 100%;
      opacity: 0;
      background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.4)));
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.4) 100%);
      -webkit-transform: skewX(-25deg);
              transform: skewX(-25deg); }
  .news-item__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 16px; }
    @media (min-width: 768px) {
      .news-item__body {
        padding: 20px; } }
  .news-item__image {
    display: block;
    margin: 0 auto; }
  .news-item__title {
    display: block;
    font-weight: 600;
    line-height: 1.25; }
  .news-item__desc {
    display: block;
    margin-top: 0.5rem;
    color: #7a7d81;
    font-size: 0.8rem;
    line-height: 1.25; }
  @media (min-width: 992px) {
    .news-item:hover .news-item__header::before {
      opacity: 0.4; } }
