.block-cta-kafelki-reveal {
	position: relative;
	z-index: 2;
	overflow: hidden;
	color: #fff;
	background: transparent;
	isolation: isolate;
}

.block-cta-kafelki-reveal__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 3vh, 42px);
}

.block-cta-kafelki-reveal__content-inner {
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.block-cta-kafelki-reveal__h1 {
	color: #fff;
	font-weight: 600;
	font-size: var(--font-size-h4);
	line-height: 1.12;
	margin: 0;
}

.block-cta-kafelki-reveal__h2 {
	color: #fff;
	font-weight: 400;
	font-size: calc(var(--font-size-h1) * 1.4);
	line-height: 1.15;
	font-style: normal;
	margin: 0;
}

.block-cta-kafelki-reveal__body {
	color: rgba(255, 255, 255, 0.92);
	font-size: var(--font-size-normal);
	line-height: 1.5;
	margin: 0;
	max-width: 800px;
	margin: auto;
}

.block-cta-kafelki-reveal__body p {
	margin: 0 0 16px;
}

.block-cta-kafelki-reveal__body p:last-child {
	margin-bottom: 0;
}

.block-cta-kafelki-reveal__buttons,
.block-cta-kafelki-reveal__tile-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.block-cta-kafelki-reveal__buttons {
	justify-content: center;
}

.block-cta-kafelki-reveal__tile-buttons {
	justify-content: center;
	margin-top: 20px;
}

.block-cta-kafelki-reveal__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 100px;
	font-weight: 400;
	font-size: var(--font-size-normal);
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.block-cta-kafelki-reveal__btn--primary {
	background: var(--color);
	color: #fff;
	border: 1px solid var(--color);
}

.block-cta-kafelki-reveal__btn--primary:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.block-cta-kafelki-reveal__btn--ghost {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border: 1px solid #ffffff33;
	border-radius: 100px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.block-cta-kafelki-reveal__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.2);
}

.block-cta-kafelki-reveal__tiles-wrap {
	position: relative;
	width: 100%;
	--sweep-size: clamp(120px, 18vh, 260px);
}

.block-cta-kafelki-reveal__tiles {
	display: flex;
	flex-direction: row;
	gap: 20px;
	width: 100%;
}

.block-cta-kafelki-reveal__tile {
	flex: 1 1 0;
	min-width: 0;
	padding: 30px;
	border: 2px solid #ffffff33;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.block-cta-kafelki-reveal__tile-icon-wrap {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.block-cta-kafelki-reveal__tile-icon {
	height: 100px;
	width: auto;
	max-width: 100%;
	display: block;
	object-fit: contain;
	object-position: center center;
}

.block-cta-kafelki-reveal__tile-title {
	margin: 0 0 10px;
	font-size: var(--font-size-h5);
	line-height: 1.12;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.block-cta-kafelki-reveal__tile-title a {
	color: inherit;
	text-decoration: none;
}

.block-cta-kafelki-reveal__tile-title a:hover {
	text-decoration: none;
}

.block-cta-kafelki-reveal__tile:hover {
	background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 787px) {
	.block-cta-kafelki-reveal__tile {
		background: #0b2d57;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.block-cta-kafelki-reveal__tile:hover {
		background: #123a6d;
	}
}

.block-cta-kafelki-reveal__tile-text {
	font-size: var(--font-size-normal);
	line-height: 1.75;
	font-weight: 300;
}

.block-cta-kafelki-reveal__tile-text p {
	margin: 0 0 0.75em;
}

.block-cta-kafelki-reveal__tile-text p:last-child {
	margin-bottom: 0;
}

.block-cta-kafelki-reveal__sweep {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 3;
}

.block-cta-kafelki-reveal__sweep img {
	display: block;
	height: var(--sweep-size);
	width: auto;
	max-width: none;
}

@media (min-width: 787px) {
	.block-cta-kafelki-reveal__sweep {
		width: max-content;
	}
}

@media (max-width: 786px) {
	.block-cta-kafelki-reveal__tile-title a {
		font-size: 22px;
	}

	.block-cta-kafelki-reveal__buttons {
		flex-direction: column;
		width: 100%;
	}

	.block-cta-kafelki-reveal__btn {
		width: 100%;
		max-width: 320px;
	}

	.block-cta-kafelki-reveal__tiles {
		flex-direction: column;
	}

	.block-cta-kafelki-reveal__tile {
		padding: 20px;
	}

	.block-cta-kafelki-reveal__tile-icon-wrap {
		height: 60px;
	}

	.block-cta-kafelki-reveal__tile-icon {
		height: 60px;
	}

	.block-cta-kafelki-reveal__sweep {
		top: 0;
		left: 50%;
		width: auto;
		transform: translateX(-50%);
	}

	.block-cta-kafelki-reveal__sweep img {
		height: auto;
		width: clamp(140px, 42vw, 260px);
	}
}
