.box-link-container {
	width: 100%;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
	position: relative;
	box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0 8px 16px -8px;
	border-radius: 4px;
	overflow: hidden;
	flex-grow: 1;
	height: 100%;
}

.box-link-img-wrap {
	overflow: hidden;
	height: 100%;
	width: 100%;
	border-radius: 4px 4px 0 0;
}

.box-link-img-overlay {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--color-white);
	opacity: 0.15;
}
.box-link-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* opacity: .7; */
}

.box-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:  4px;
	min-height: 100px;
	color: white;
	position: absolute;
	bottom: 0;
}

.box-link{
	font-size: 12px;
	color: white;
	display: block;
	width: 100%;
	padding: 10px 15px;
	text-shadow: 0 0 4px var(--color-text-dark);
}
.box-type-false .box-link {
	margin-top: 23px;
}

p.box-link {
	margin: 0;
	padding: 10px 15px;
}

.box-title {
	font-size: 26px;
	line-height: 1.4;
	word-break: break-word;
}
.box-type,
.box-description{
	font-size: 14px;
	display: block;
}

@media (min-width: 600px) and (max-width: 781px) {
	.box-link {
		font-size: 20px;
		line-height: 1.4;
	}
}
