/* Force thumbnails in browse and item set views to be uniform squares */
.resource-list .resource img, 
.item-set-view .resource img {
    width: 150px; /* Adjust to your preferred size */
    height: 150px; /* Must match width for a square */
    object-fit: cover; /* Ensures images fill the square without warping */
}
/* Truncate item descriptions in browse/item-set views */
.resource-list .description, 
.item-set-view .description {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Set number of lines here */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
