.ludorum-contact-suggestion {
	position: relative;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: auto minmax( 0, 1fr ) auto;
	align-items: center;
	gap: 18px;
	width: 100%;
	margin: 24px 0 22px;
	padding: 22px 24px;
	overflow: hidden;
	border: 1px solid #dfe7f3;
	border-radius: 18px;
	background: linear-gradient( 135deg, #ffffff 0%, #f5f9ff 100% );
	box-shadow: 0 12px 28px rgba( 20, 48, 90, 0.09 );
	color: #111c34;
}

.ludorum-contact-suggestion::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient( 90deg, #0757b9 0 34%, #ffbe00 34% 67%, #ef3340 67% 100% );
	content: '';
}

.ludorum-contact-suggestion *,
.ludorum-contact-suggestion *::before,
.ludorum-contact-suggestion *::after {
	box-sizing: border-box;
}

.ludorum-contact-suggestion__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: #fff3c9;
	color: #8a6100;
	box-shadow: inset 0 0 0 1px rgba( 255, 190, 0, 0.3 );
}

.ludorum-contact-suggestion__icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
}

.ludorum-contact-suggestion__content {
	min-width: 0;
}

.ludorum-contact-suggestion__eyebrow {
	display: block;
	margin-bottom: 4px;
	color: #0757b9;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ludorum-contact-suggestion__content h2 {
	margin: 0 0 5px;
	padding: 0;
	color: #111c34;
	font-size: clamp( 19px, 2vw, 23px );
	font-weight: 900;
	line-height: 1.2;
}

.ludorum-contact-suggestion__content p {
	margin: 0;
	padding: 0;
	color: #5b6880;
	font-size: 14px;
	line-height: 1.5;
}

.ludorum-contact-suggestion__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 11px 17px;
	border: 0;
	border-radius: 13px;
	background: #0757b9;
	box-shadow: 0 8px 18px rgba( 7, 87, 185, 0.2 );
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.ludorum-contact-suggestion__button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ludorum-contact-suggestion__button:hover,
.ludorum-contact-suggestion__button:focus-visible {
	background: #064996;
	box-shadow: 0 10px 22px rgba( 7, 87, 185, 0.26 );
	color: #ffffff;
	transform: translateY( -1px );
}

.ludorum-contact-suggestion__button:focus-visible {
	outline: 3px solid rgba( 255, 190, 0, 0.55 );
	outline-offset: 3px;
}

@media ( max-width: 767px ) {
	.ludorum-contact-suggestion {
		grid-template-columns: auto minmax( 0, 1fr );
		gap: 14px;
		padding: 20px 18px;
	}

	.ludorum-contact-suggestion__icon {
		width: 46px;
		height: 46px;
	}

	.ludorum-contact-suggestion__button {
		grid-column: 1 / -1;
		width: 100%;
		white-space: normal;
	}
}

@media ( max-width: 420px ) {
	.ludorum-contact-suggestion {
		grid-template-columns: 1fr;
	}

	.ludorum-contact-suggestion__icon {
		display: none;
	}

	.ludorum-contact-suggestion__button {
		grid-column: auto;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.ludorum-contact-suggestion__button {
		transition: none;
	}
}
