.article-hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.article-hub-nav-link {
  display: inline-flex;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 999px;
  background: #f3f3f3;
}

.article-hub-section {
  margin-bottom: 72px;
  scroll-margin-top: 120px;
}

.article-hub-section-header {
  margin-bottom: 60px;
}

.article-hub-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
}

@media (max-width: 1024px) {
  .article-hub-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .article-hub-posts-grid {
    grid-template-columns: 1fr;
  }
}
.article-hub-post-item {
  display: flex;
}

.article-hub-post-item > * {
  width: 100%;
  /*display: flex;*/
  flex-direction: column;
}

.article-hub-post-item .elementor-element {
  height: 100%;
}