.feed-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  padding: 0;
  margin: 0;
  max-width: 60rem;
  height: auto;
  overflow: hidden;
}
.feed-articles h3 {
  font-size: 1rem;
  line-height: 1.35rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem 0;
}
.feed-articles .itemLabel {
  font-size: 0.8rem;
  color: #545454;
  font-weight: 700;
  text-transform: uppercase;
}
.feed-articles .departmentItem {
  color: #545454;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
}

.primaryTopStory {
  display: flex;
  position: relative;
  width: calc(100% - 2px - 1rem);
  grid-column-start: 1;
  grid-column-end: 4;
  height: auto;
  overflow: hidden;
  flex-wrap: nowrap;
  align-items: center;
  border: 1px solid #ccc;
  margin: 0 0.5rem 1rem 0.5rem;
}
.primaryTopStory h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.primaryTopStory .imageMedia {
  max-width: 66%;
}
.primaryTopStory .contentArea {
  width: calc(34% - 2rem)
}

.topStory {
  display: flex;
  position: relative;
  width: calc(100% - 2px - 1rem);
  grid-column-start: 1;
  grid-column-end: 4;
  height: auto;
  overflow: hidden;
  flex-wrap: nowrap;
  align-items: center;
  border: 1px solid #ccc;
  margin: 0 0.5rem 1rem 0.5rem;
}
.topStory h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.topStory .departmentItem::before {
  content: "  •  ";
}
.topStory .imageMedia {
  max-width: 32.2%;
}
.topStory .contentArea {
  width: calc(67.8% - 2rem)
}

.articleCard {
  display: inline-block;
  position: relative;
  border: 1px solid #ccc;
  margin: 0 0.5rem 1rem 0.5rem;
}
.imageMedia {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.imageMedia .imageSpacer {
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
}
.imageMedia .imageMediaItem {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.imageMedia .imageMediaItem.shown {
  opacity: 1;
}
.contentArea {
  display: inline-block;
  position: relative;
  padding: 1rem;
  margin: 0;      
}

.placeholder .imageSpacer {

}
.placeholder .contentArea {

}

.feedlink {
  -webkit-transition: border-color 0.17s linear;
  transition: border-color 0.17s linear;
  border-color: #ccc;
}
.feedLink:hover {
  cursor: pointer;
  border-color: #333;
}

.advanceButtonHolder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: calc(100% - 1rem);
  margin: 0.5rem;
  padding: 0;
}
.advanceButtonHolder.hidden {
  display: none;
}

button.loadMore {
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  height: 3rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  margin: .5rem auto 1.5rem;
  border: 3px solid #545454;
  color: #545454;
}
button.loadMore .icon {
  display: inline;
  vertical-align: middle;
}
button.loadMore .chevronIcon {
  border-radius: 0;
  background-color: transparent;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  fill: #545454;
}
button.loadMore:hover {
  color: #fff;
  background-color: #545454;
}
button.loadMore:hover .chevronIcon {
  fill: #fff;
}

@media only screen and (max-width: 960px) {
  .feed-articles {
    grid-template-columns: repeat(2, 1fr);
  }

  .primaryTopStory {
    flex-wrap: wrap;
    grid-column-end: 3;
  }
  .primaryTopStory .imageMedia {
    max-width: 100%;
  }
  .primaryTopStory .contentArea {
    width: calc(100% - 2rem);
  }

  .topStory {
    flex-wrap: wrap;
    grid-column-end: 3;
  }
  .topStory .imageMedia {
    max-width: 100%;
  }
  .topStory .contentArea {
    width: calc(100% - 2rem);
  }

}