/* Style the blog post list as a 2x3 grid layout */
body.blog .ast-article-post {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.blog .ast-article-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.blog .ast-archive-description,
body.blog .ast-article-post {
  width: 100%;
}

/* Grid container */
body.blog .ast-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 30px 0;
}

/* Responsive for tablets and phones */
@media screen and (max-width: 768px) {
  body.blog .ast-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
