@media (min-width: 768px) {
  .posts-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-flow: row wrap;
  }
  .posts-grid .post {
    flex: 0 0 47%;
  }
}
@media (min-width: 1280px) {
  .posts-grid .post.news-media {
    flex: 0 0 40%;
    margin-bottom: 120px;
  }
}

.post {
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
  margin-bottom: 50px;
}
.post .post-thumb {
  margin-bottom: 30px;
}
.post .post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.post .post-meta {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 22px;
  line-height: 1.375rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.post .post-meta a {
  color: var(--highlightColor);
}
.post .more {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 700;
  color: var(--highlightColor);
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: solid 3px var(--highlightColor);
}
.post.news-media {
  text-align: center;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 70px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}
.post.news-media .thumb {
  display: block;
  position: relative;
  height: 380px;
  width: 100%;
  margin-bottom: 40px;
}
.post.news-media .thumb-wrapper {
  position: relative;
  height: 380px;
  width: 100%;
  display: block;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.post.news-media .thumb-wrapper picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.post.news-media .thumb-wrapper picture img {
  width: 100%;
  height: 100%;
  object-position: center top;
  object-fit: cover;
}
.post.news-media .post-title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 38px;
  line-height: 2.375rem;
  font-weight: 300;
  margin-bottom: 30px;
}
.post.news-media .btn {
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.post.news-media .modal {
  display: none;
}
.post.news-media .modal.open {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 99;
  background-color: var(--bgColor);
  padding: 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  overflow-x: auto;
}
.post.news-media .modal.open .modal-close {
  position: absolute;
  right: 25px;
  top: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.post.news-media .modal.open .modal-close svg {
  display: block;
  width: 100%;
  height: auto;
}
.post.news-media .modal.open .inner {
  text-align: left;
}
.post.news-media .modal.open .inner picture {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.post.news-media .modal.open .inner picture img {
  width: 100%;
  height: auto;
}
.post.news-media .modal.open .inner .cta {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .post.news-media .modal.open {
    width: 100%;
    height: 100%;
    padding: 50px 0;
    z-index: 10;
  }
  .post.news-media .modal.open .inner {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .post.news-media .modal.open {
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    position: absolute;
    padding: 100px 150px 50px;
    z-index: 4;
    min-height: 1400px;
  }
  .post.news-media .modal.open .inner {
    max-width: none;
    margin: 0 auto;
  }
}

.pagination .nav-links {
  display: flex;
  gap: 20px;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  line-height: 1.875rem;
}
