.latest-news-module {
  width: 100%;
  background-color: var(--grey-5);
}

.latest-news-module-wrapper {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 44px 20px 44px;
}



@media (min-width: 840px) {
  .latest-news-module-wrapper {
    padding: 88px 5px 69px;
  }
}

@supports (padding: max(0px)) {
  .latest-news-module-wrapper {
    padding: 44px calc(var(--sar) + 20px) 44px calc(var(--sal) + 20px);
  }

  @media (min-width: 840px) {
    .latest-news-module-wrapper {
      padding: 88px calc(var(--sar) + 5px) 69px calc(var(--sal) + 5px);
    }
  }
}

.latest-news-module__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

@media (min-width: 840px) {

  .latest-news-module__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
  }
}

.latest-news-module__header p {
  color: var(--grey-3);
}

.latest-news-module__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 840px) {

  .latest-news-module__items {
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
  }
}

.latest-news-module__items .button--tertiary {
  width: auto;
}

.latest-news-module__items article {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

@media (min-width: 540px) {
  .latest-news-module__items article {
    width: calc(50% - 10px);
  }
}

@media (min-width: 840px) {
  .latest-news-module__items article {
    padding: 15px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
}

.latest-news-module__items article a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  color: var(--near-black);
}

.latest-news-module__header a { color: #6f5e80;}
.latest-news-module__items figure {
  background: #fff;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  height: 300px;
}

.latest-news-module__items article img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  transform: scale(1.000000001);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(.36,.06,.14,1);
}
@supports not (aspect-ratio: 1 / 1) {
  .latest-news-module__items article {
    max-width: 400px;
  }

  .latest-news-module__items article figure {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc((248 / 370) * 100%);
    margin-bottom: 20px;
  }

  .latest-news-module__items article figure img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.latest-news-module__items article a:hover img {
  transform: scale(1.1);
}

.latest-news-module__items article a:hover {
  color: var(--violet);

}

.latest-news-module__items article h1 {
  flex: 1 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.latest-news-module__items article .posted {
  font-size: var(--toRem13px);
  line-height: var(--toRem32px);
  letter-spacing: -0.05px;
  color: var(--grey-3);
  text-transform: uppercase;
}

.latest-news-module__items article .posted-tag {
  display: inline-flex;
  font-size: var(--toRem13px);
  line-height: var(--toRem18px);
  letter-spacing: -0.05px;
  color: var(--white);
  background-color: var(--violet-3);
  border-radius: 5px;
  text-transform: uppercase;
  padding: var(--toRem2px) var(--toRem10px);
  margin-left: var(--toRem8px);
}
