.blog__container {
  align-items: center;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  display: flex;
}

.blog-grid {
  display: grid;
  gap: 60px 30px;
}
@media only screen and (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog__load {
  cursor: pointer;
}
