/**
 * Layout: Brochures
 * Slug: brochures
 */

.brochures-layout {
	background-color: #ffffff;
	border-radius: 2rem;
	overflow: hidden;
	padding-block: max(5rem, calc(6 * var(--su)));
}
.brochures-layout .pk-grid-container {
	align-items: end;
}

.brochures-layout .image-col {
	position: relative;
	z-index: 1;
}
.brochures-layout .image-col::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	translate: -50% -50%;
	width: 90%;
	aspect-ratio: 1;
	display: block;
	pointer-events: none;
	background-color: rgba(var(--dia-blue-rgb), 0.05);
	border-radius: 100%;
}

.brochures-layout .image-col .image-wrapper {
	position: relative;
	z-index: 5;
}
.brochures-layout .image-col .rings {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	translate: -50% -50%;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.brochures-layout .image-col .rings .ring {
	border: 1px solid rgba(10, 55, 124, 1);
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	border-radius: 100%;
	aspect-ratio: 1;
}
.brochures-layout .image-col .rings .ring-1 {
	width: calc(100% + max(150px, calc(15 * var(--su))));
	opacity: 15%;
	filter: blur(1px);
}
.brochures-layout .image-col .rings .ring-2 {
	width: calc(100% + max(150px, calc(30 * var(--su))));
	opacity: 5%;
	filter: blur(0.5px);
}
.brochures-layout .image-col .rings .ring-3 {
	width: calc(100% + max(150px, calc(45 * var(--su))));
	opacity: 10%;
	filter: blur(2.5px);
}

.brochures-layout .image-col .custom-button {
	position: absolute;
	bottom: 10%;
	right: 10%;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 1em;
	background-color: #ffffff;
	box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
	padding: max(1rem, calc(1.5 * var(--su)))
	max(1.5rem, calc(2 * var(--su)));
	border-radius: 1rem;
	text-decoration: none;
	font-size: 1.25rem;
	color: inherit;
	max-width: max(275px, calc(21.5 * var(--su)));
}
.brochures-layout .image-col .custom-button .icon-wrapper {
	width: max(2.25rem, calc(2.5 * var(--su)));
	flex-shrink: 0;
	aspect-ratio: 1;
	border-radius: 100%;
	background-color: var(--dia-green);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.brochures-layout .image-col .custom-button:hover .icon-wrapper {
	background-color: var(--dia-blue);
	color: #ffffff;
}

.brochures-layout .content-col {
	position: relative;
	z-index: 5;
}

@media screen and (min-width: 993px) {
	.tarieven-layout + .brochures-layout {
		position: relative;
		z-index: 1;
		margin-top: -200px;
		padding-top: 400px;
	}
}

@media screen and (max-width: 992px) {
	.brochures-layout {
		padding-top: 3rem;
		border-radius: 0;
	}
	.brochures-layout .image-col {
		margin-top: 4rem;
		order: 2;
	}
}

@media screen and (max-width: 767px) {
	.brochures-layout .image-col .custom-button {
		bottom: 0;
		font-size: 1rem;
	}
}
