.card-img-top {
	object-fit: cover;
	height: 300px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

.card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.card-body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.selectable-card .selected {
    border: 3px solid #007bff;
    border-radius: 8px;
}

#list .card-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	max-width:100%;
}
