.container-list-all-blogs {
  background-color: var(--secondary);
  box-shadow: 0px 9px 24.1px 0px #00000014;
}

.content-list-all-blogs {
  @media (max-width: 480px) {
    padding-left: 0;
    padding-right: 0;
  }
}

.list-tag-blogs {
  z-index: 0;
  
    @media (max-width: 480px) {
      z-index: 1;
    }
}

.blog-tags {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  padding-top: 250px;
  
    @media (max-width: 480px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.blog-tags a {
  color: #B0B9AF;
  font-size: 18px;
  font-weight: 500;
}

.blog-tags a.active {
  color: #222222;
  font-weight: 500;
}

.blog-posts {
  width: 100%;
}

.post-blog-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 41px;
  padding-left: 0;
  margin: 0;
  padding-bottom: 120px;
  
    @media (max-width: 480px) {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
     grid-template-columns: 1fr 1fr;
  }
}

.items-post {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.post-date {
  color: var(--primary);
  font-size: 1rem;
}



.limit-image {
  height: 295px;
}

.limit-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.post-title-list {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding: 11px 0 20px 0;      
}

.post-info {
   margin-top: 20px;
}

.post-info a {
  color: #222222;
  text-decoration: underline;
}

.pagination {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}
.pagination a {
  padding: 8px 12px;
  background: #eee;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}
.pagination a.active {
  background: #000;
  color: #fff
  font-weight: bold;
}