h1 {
  font-weight: 800;
}

.cat-content {
  padding: 80px 0 40px 0;

  font-family: "Nunito", sans-serif;
  font-size: clamp(0.75rem, 0.6184rem + 0.7018vw, 1.25rem);
}
.cat-content > div {
  max-width: 90%;
  margin: 0 auto;
}

.catlist-row {
  margin: 80px 0 60px 0;
  flex-wrap: wrap;
}
.catlist-item {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #09a9d1;
  border: 1px solid #e4e3e0;
  background-color: white;
  border-radius: 999px;
  padding: 0.4em 0.8em;
}

.grid-post {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}
.grid-post li {
  border-radius: 16px;
  border: 1px solid #e4e3e0;
  background-color: white;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.grid-post li a {
  font-size: clamp(1rem, 0.9342rem + 0.3509vw, 1.25rem);
  color: #222628;
}
.grid-post li h2 {
  margin-bottom: 0;
}
.grid-post li time {
  font-size: 14px;
  color: #838584;
  font-weight: 700;
}
.grid-post li figure {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}
.grid-post li figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

nav.wp-block-query-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  font-weight: 700;
}
nav.wp-block-query-pagination a {
  text-decoration: none;
  color: #09a9d1;
}
