/* Add these styles for uniform card sizes */
#homilias .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#homilias .card-img-top {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

#homilias .card-img-top img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#homilias .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#homilias .card-title {
    height: 3em; /* Adjust this value based on your needs */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem;
}

#homilias .card-text {
    margin-top: auto;
}
