/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.card {
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wp-block-post-template {
  gap: 2rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .wp-block-post-template {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: none;
  }
}



