.latest__tabs {
  position: relative;
  border-bottom: 1px solid rgba(106, 106, 106, 0.2);
  font-size: 0;
  line-height: 0;
  background: #fff;
}
.latest__tabs:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
}
.latest__tabs li {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
  padding: 17px 0 13px;
  border-bottom: 4px solid transparent;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: bold;
  color: var(--grey);
  cursor: pointer;
}
.latest__tabs li.active {
  border-color: var(--blue);
  color: #000;
}
.latest__adv {
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.latest__adv a {
  display: block;
}
.latest-teasers {
  padding: 5px 0 0;
  text-align: center;
  background: #fff;
}
.latest-teaser {
  text-align: left;
}
.latest-teaser:nth-child(2n) {
  background: var(--lighter-grey);
}
.latest-teaser a {
  display: block;
  padding: 6px 10px;
}
.latest-teaser figure {
  display: none;
}
.latest-teaser time {
  display: block;
  margin: 0 0 5px;
}
.latest-teaser h5 {
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: bold;
}
.latest-teaser:hover h5 {
  color: var(--blue);
}
.latest-teaser + .more-link {
  margin: 15px 0;
}


@media screen and (max-width: 1024px) and (min-width: 601px) {
  .js-tab-content.latest-teasers {
    display: none;
  }
  .latest-teasers,
  .js-tab-content.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .latest-teaser {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 20px);
    flex: 1 0 calc(50% - 20px);
  }
  .latest-teaser:nth-child(2n) {
    border-left: 1px solid var(--light-grey);
    background: #fff;
  }
  .latest-teaser:nth-child(4n),
  .latest-teaser:nth-child(4n+3) {
    background: var(--lighter-grey);
  }
}

@media screen and (max-width: 600px) {
  .latest__tabs li {
    padding: 12px 0 9px;
    border-bottom: 3px solid transparent;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .latest__tabs li.active {
    border-color: var(--blue);
  }
  .latest-teaser a {
    position: relative;
    min-height: 72px;
    padding: 6px 10px 6px 70px;
  }
  .latest-teaser figure {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 60px;
  }
}