@media only screen and (width < 1024px) {
  .page-blog aside {
    padding: 0;
    position: static;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    place-items: stretch;
  }
  aside > :not(.page-blog__sidebar-card) {
    display: none;
  }
}
@media only screen and (width < 768px) {
  .page-blog aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.page-blog .blog-content {
  width: 1152px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (width < 1440px) {
  .page-blog .blog-content {
    width: 960px;
  }
}
@media only screen and (width < 1024px) {
  .page-blog .blog-content {
    width: 672px;
  }
}
@media only screen and (width < 768px) {
  .page-blog .blog-content {
    width: 100%;
  }
}

/*# sourceMappingURL=blog.css.map */
