/* Styles for the Latest News block */
.os-section.latest-news .block-title {
  color: var(--os-colours-Secondary-dark);
}
.os-section.latest-news .os-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .os-section.latest-news .os-container {
    align-items: center;
    justify-content: center;
  }
}
.os-section.latest-news .pagination {
  width: 100%;
  gap: 4px;
}
.os-section.latest-news .pagination, .os-section.latest-news .pagination > * {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}
.os-section.latest-news .pagination > * {
  width: 48px;
  height: 48px;
}
.os-section.latest-news .pagination a:visited {
  color: var(--os-colours-Primary-base);
}
.os-section.latest-news .pagination a:visited:hover {
  color: var(--os-colours-Primary-hover);
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 96px;
}
@media (min-width: 468px) {
  .news-list {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .news-list {
    gap: clamp(32px, 4.166vw, 64px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.news-list .news-post {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}
.news-list .news-post:hover .post-title {
  color: var(--os-colours-Secondary-hover);
}
.news-list .news-post:hover .post-link {
  color: var(--os-colours-Primary-hover);
}
.news-list .news-post:hover .post-thumbnail {
  opacity: 0.65;
}
.news-list .post-thumbnail {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
}
.news-list .post-thumbnail img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-list .post-thumbnail .missing-pic img {
  padding: 32px 48px;
  object-fit: contain;
}
.news-list .post-title,
.news-list .post-thumbnail,
.news-list .post-link {
  transition: all 0.4s ease-in-out;
}
.news-list .post-title {
  color: var(--os-colours-Secondary-base);
  margin: 0;
}
.news-list .post-date {
  color: var(--os-colours-Secondary-mid-light, #5B6FC1);
  font-weight: 500;
  margin: 0 0 8px 0;
}
.news-list .post-content {
  flex-grow: 1;
}
.news-list .post-excerpt {
  margin-top: 16px;
}
.news-list .post-link {
  color: var(--os-colours-Primary-base);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/*# sourceMappingURL=style.css.map */
