/*
 * Theme Name: Mother Daughter Team
 * Template:   astra
 */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-post img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}