header .burger-menu-nav .burger-menu-nav-content nav ul #news a {
  color: var(--accent);
}

#news-posts {
  padding: var(--m) var(--gutter) var(--l);
}
#news-posts .heading {
  text-align: center;
  margin-bottom: 0.5em;
}
#news-posts #posts-grids {
  position: relative;
  width: 100%;
  height: auto;
}
#news-posts #posts-grids .posts-grid {
  width: 100%;
  height: auto;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--l) var(--s);
}
#news-posts #posts-grids .posts-grid.active {
  display: grid;
}
#news-posts #posts-grids .posts-grid .post {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: var(--xs);
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
  transition: opacity 0.5s, transform 0.5s;
}
#news-posts #posts-grids .posts-grid .post .thumbnail {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background-color: var(--primary-alt2);
  overflow: hidden;
}
#news-posts #posts-grids .posts-grid .post .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transform-origin: center;
  transition: transform 0.4s ease-out;
}
#news-posts #posts-grids .posts-grid .post .thumbnail:hover img {
  transform: scale(1);
}
#news-posts #posts-grids .posts-grid .post .info {
  width: 100%;
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--xs);
}
#news-posts #posts-grids .posts-grid .post .info .date {
  color: var(--secondary-alt);
  font-size: 12px;
  line-height: 1em;
}
#news-posts #posts-grids .posts-grid .post .info .title {
  color: var(--secondary);
  font-weight: 600;
}
#news-posts #posts-grids .posts-grid .post .info .excerpt {
  color: var(--secondary-alt);
  font-size: 16px;
}
#news-posts #posts-grids .posts-grid .post .info .button {
  margin-top: auto;
}
@media (max-width: 1024px) {
  #news-posts #posts-grids .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  #news-posts #posts-grids .posts-grid {
    grid-template-columns: 1fr;
  }
  #news-posts #posts-grids .posts-grid .post .info .date {
    font-size: 10px;
  }
  #news-posts #posts-grids .posts-grid .post .info .excerpt {
    font-size: 14px;
  }
}
#news-posts #posts-grids.fade .posts-grid .post {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}/*# sourceMappingURL=news-archive.css.map */