.block-collection {
	width: 100%;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.block-collection-image {
	display: block;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.block-collection-image video,
.block-collection-image img {
	height: 100%;
	width: 100%;
	display: block;
	transition: transform .6s ease;
	object-fit: cover;
}

.block-collection-name {
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}

.block-collection-name span {
	position: relative;
	display: inline-block;
}

.block-collection-name span:after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-dark-alt);
	transition: width .6s ease;
}

.block-collection:hover .block-collection-name span:after {
	width: 0;
}

.block-collection:hover .block-collection-image img {
	transform: scale(1.05);
}

@media screen and (min-width: 768px) {
	.block-collection-name {
		font-size: 20px;
	}
}
