/* Custom Style Sheet */

body {
    font-family: "Poppins", sans-serif;
}

.blog-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* Adjust based on line-height */
    line-height: 1.5em; /* Adjust for readability */
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 66.66%; /* (2 / 3) * 100 */
    overflow: hidden;
}
  
.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
