/*
Theme Name: Assisted_living Theme
*/
.auto-height-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.blog-posts-row {
    display: flex;
    gap: 20px; /* Adjust the gap between posts */
    justify-content: space-between; /* Ensures even spacing */
    flex-wrap: wrap; /* Allows wrapping if there are too many posts for the row */
}

.blog-post {
    flex: 1 1 30%; /* Each post takes 30% of the container's width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-date {
    font-size: 0.9em;
    color: #666;
}
.equal-image-size img {
  width: 100%;  /* Ensures the image fits the container's width */
  height: 250px;  /* Fixed height to make all images equal */
  object-fit: cover;  /* Ensures the image covers the container without distorting */
}

.isotope-item {
  padding: 10px; /* Adds space between the images */
}


