@charset "UTF-8";
/* CSS Document */

.tile-link, .blog-tile-link, .product-link {
	text-decoration: none;
}

.tile-item {
	height: 500px;
	background-size: cover;
	background-position: center;
	align-content: space-between;
	border-radius: var(--std-radius);
}

.tile-item .top {
	justify-self: end;
	padding: 10px 20px;
	background-color: var(--act-primary);
	color: var(--white);
	gap: 5px;
	border-bottom-left-radius: var(--std-radius);
	border-top-right-radius: var(--std-radius);
	font-size: 18px;
	font-weight: 600;
}

.tile-item line {
	width: 70px;
	height: 5px;
	background-color: var(--act-primary);
	border-radius: var(--btn-radius);
}

.tile-item .bottom {
	padding: 30px;
	gap: 5px;
	background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
	border-bottom-right-radius: var(--std-radius);
	border-bottom-left-radius: var(--std-radius);
}

.tile-item .bottom h4 {
	font-size: 24px;
}

.blog-tile-item .content {
	padding: 30px;
	background-color: var(--shd-light);
	color: var(--text);
	gap: 15px;
	box-shadow: 0px 2px 13px -3px rgba(0,0,0,0.15);
}

.blog-tile-item .tekst {
	gap: 10px;
}

.blog-tile-item .datum {
	align-items: center;
	font-size: 14px;
	gap: 10px;
}

.blog-tile-item .datum svg {
	font-size: 18px;
}


.blog-tile-item button {
	border: none;
	padding: 0;
	justify-self: start;
	cursor: pointer;
	font-size: 17px;
	color: var(--act-primary);
	font-weight: 700;
	background-color: rgba(0,0,0,0);
}

.blog-tile-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.blog-tile-item h3 {
	font-size: 20px;
}

.tile-item h4 {
	color: var(--white);
}

.product-item {
	color: var(--text);
	box-shadow: 0 0 13px 4px rgba(0,0,0,0.07);
}

.product-item .content {
	padding: 20px 30px;
	background-color: var(--white);
}

.product-item .content .tekst {
	gap: 10px;
}

.product-item .content p {
	font-size: 14px;
	line-height: 24px;
}

.product-item .content .button {
	width: calc(100% - 60px);
	padding: 10px;
	text-align: center;
}

.product-item .img-wrapper {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-size: cover;
	position: relative;
}

.product-item .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: linear-gradient(0deg, rgba(150,150,150,0.3) 0%, rgba(150,150,150,0) 50%);
}

.product-item h5 {
	font-size: 16px;
	color: var(--act-primary);
}

.product-item h3 {
	font-size: 20px;
	line-height: 24px;
}

.product-item .button {
	justify-self: center;
	margin-top: 20px;
}

.product-item .kleuren {
	padding: 10px;
	gap: 5px;
}

.product-item .kleur {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}