/*
This is a NEW, separate file - none of your existing CSS files were touched.
Fixes: package card photos were showing at different heights (some big, some
small) depending on each photo's original size. This makes them all crop to
the same consistent height while keeping the same classes/layout.
*/

.pack_1l {
	height: 100%;
}

.pack_1l img {
	height: 260px;
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width: 767px) {
	.pack_1l img {
		height: 220px;
	}
}
.pack_1m p.mt-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
 

