.posts_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.post-card {
  background: white;
  padding: 32px;
  border: 1px solid var(--stb-border-gray);
}

.post-card .entry-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-card .category-link {
  padding: 4px 12px;
  background: #E14B00;
  border-radius: 400px;
  color: var(--stb-white) !important;
}

.entry-header,
.post-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-card img {
  height: 300px;
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .posts_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .posts_container {
    grid-template-columns: 1fr;
  }
}