.newPosts {
  background-color: #fff;
  position: relative;
  border-radius: 30px 30px 0 0;
  padding: 50px 20px 100px;
  z-index: 1;
}
.newPosts::before {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(-25%);
  width: 200vw;
  top: 0;
  height: 100%;
  background-color: var(--wp--preset--color--base);
  z-index: -1;
}
.newPosts .grass {
  max-width: 723px;
  width: 90%;
}
.newPosts .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.75rem;
}
.newPosts .post-item {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 437px;
  max-width: 370px;
}
.newPosts .post-item .post-date {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  text-transform: uppercase;
  padding: 20px 30px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
}
.newPosts .post-item .post-title {
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: clamp(1.125rem, 1.0263rem + 0.4211vw, 1.5rem);
  line-height: 1;
  display: block;
}
.newPosts .post-item .post-excerpt {
  font-size: clamp(0.85rem, 0.8105rem + 0.1684vw, 1rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.newPosts .post-item .post-thumbnail {
  width: 100%;
  margin: 0;
  aspect-ratio: 370/180;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  background-size: cover;
}
.newPosts .post-item .post-thumbnail.thumbnail-full {
  height: 100%;
}
.newPosts .post-item .post-thumbnail .post-thumbnail-link {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  text-indent: -9999px;
}
.newPosts .post-item .read-more-btn {
  font-weight: 600;
  font-size: 1rem;
  color: var(--wp--preset--color--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.newPosts .post-item .post_desc {
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  flex-grow: 1;
}
.newPosts .post-item .post_desc .post_content {
  width: 100%;
}
.newPosts .post-item .post_desc .post_content a {
  text-decoration: none;
}
.newPosts .see-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
.newPosts .see-all-wrapper a {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}/*# sourceMappingURL=block.css.map */