.news {
  background-color: var(--white);
}
.news .news-grid {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1/13;
}
.news .news-grid h2 {
  margin-bottom: 0.9375rem;
  font-size: 1.875rem;
  line-height: 2.9375rem;
}
.news .news-grid h2.larger {
  margin-bottom: 1.875rem;
  font-size: 2.5rem;
  line-height: 3.125rem;
}

.news ul.news li {
  list-style-type: none;
}
.news ul.news li .image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 107/79;
  margin-bottom: 1.25rem;
}
.news ul.news li .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 107/79;
  border-radius: 0.375rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news ul.news li .date {
  color: #519A9C;
  font-size: 0.875rem;
  line-height: 0.875rem;
  margin-bottom: 0.3125rem;
  display: block;
}
.news ul.news li h3 {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  font-family: var(--font-family);
  margin-bottom: 0.75rem;
}
.news ul.news li a {
  text-decoration: none;
}
.news ul.news li .readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
}
.news ul.news li .readmore span:after {
  width: 0.875rem;
  height: 1rem;
}
.news ul.news li:hover .image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news ul.news li:hover a {
  text-decoration: underline;
}

.news .archive-link {
  margin-top: 3.125rem;
}
.news .archive-link .button {
  padding: 0.625rem 1.25rem;
  background-color: var(--yellow);
  color: var(--dark-blue);
  border-radius: 0.3125rem;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
  text-decoration: none;
  position: relative;
}
.news .archive-link .button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 0.3125rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.news .archive-link .button:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}
.news .archive-link .button.blue {
  background-color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  color: var(--white);
}
.news .archive-link .button.blue:before {
  background-color: rgba(255, 255, 255, 0.15);
}
.news .archive-link .button.blue span:after {
  background: var(--white);
  width: 1.125rem;
  height: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news .archive-link .button.blue:hover:before {
  opacity: 1;
}
.news .archive-link .button.inversed {
  background-color: transparent;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
}
.news .archive-link .button.inversed span:after {
  background: var(--dark-blue);
  width: 1rem;
  height: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news .archive-link .button.inversed:hover:before {
  opacity: 1;
}