.company-news-container {
  display: flex;
  align-items: center;
  justify-content: stretch;
  padding-bottom: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;

  .company-news-image {
    display: flex;
    width: 50%;
    img {
      width: 100%;
      height: auto;
    }
  }
  .company-news-content {
    width: 50%;
    padding: 0 3rem;

    .page-content {
      line-height: 3rem;
      font-size: 1.6rem;
    }
  }
}

@media screen and (max-width: 749px) {
  .company-news-container {
    flex-direction: column;

    .company-news-image {
      width: 100%;
      img {
        width: 100%;
        height: auto;
      }
    }

    .company-news-content {
      width: 100%;
    }
  }
}


.latest-story-container {
  padding-top: 50px;
}

.latest-story-list {
  padding: 0 50px;
}

.latest-story-list-item {
  list-style: none;
  padding: 15px 0px 15px 20px;
  border-bottom: 1px dashed #e5e5e5;
  
  a:any-link {
    color: #000;
  }

  &:hover {
    background-color: #f5f5f5;
  }

  .article-link {
    text-decoration: none;
    display: flex;

    .article-date {
      flex: 1.5;
      margin-right: 5px;
    }

    .article-title {
      flex: 10;
    }

    svg {
      flex: 0.5;
    }
  }
}

.priority-read-container {
  padding-top: 50px;
}


@media screen and (max-width: 749px){
  .latest-story-list {
    padding: 0;
  }
  .latest-story-list-item {
    padding-left: 0;
  }
}