.engb {
	box-sizing: border-box;
	max-height: min(220px, 35vh);
	padding: 16px 0;
	overflow-y: auto;
}

.engb *,
.engb *::before,
.engb *::after {
	box-sizing: border-box;
}

.engb .engb-row {
	display: grid;
	grid-template-columns: minmax(210px, 0.85fr) minmax(280px, 1.65fr) minmax(180px, 0.55fr);
	gap: 24px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.engb .engb-title,
.engb .engb-text,
.engb .engb-action {
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
}

.engb .engb-title span {
	display: block;
	font-size: 18px;
	line-height: 1.3;
}

.engb .engb-text {
	font-size: 14px;
	line-height: 1.45;
}

.engb .engb-text p {
	margin: 0 0 6px;
}

.engb .engb-action {
	text-align: right;
}

.engb .engb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 170px;
	max-width: 220px;
	height: auto;
	min-height: 44px;
	padding: 10px 18px;
	white-space: normal;
	line-height: 1.25;
}

.engb .engb-close {
	top: 8px;
	right: 10px;
}

.engb .engb-close .engb-close-trigger {
	width: 26px;
	height: 26px;
}

@media screen and (max-width: 1023px) {
	.engb {
		max-height: min(260px, 42vh);
		padding: 14px 0;
	}

	.engb .engb-row {
		grid-template-columns: minmax(0, 1fr) 190px;
		gap: 10px 18px;
		padding: 0 42px 0 22px;
	}

	.engb .engb-title {
		grid-column: 1 / -1;
	}

	.engb .engb-text {
		max-height: 92px;
		overflow-y: auto;
	}

	.engb .engb-action {
		margin: 0;
	}
}

@media screen and (max-width: 766px) {
	.engb {
		max-height: 190px;
		padding: 12px 0;
	}

	.engb .engb-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0 42px 0 16px;
	}

	.engb .engb-title span {
		font-size: 16px;
	}

	.engb .engb-text {
		display: none;
	}

	.engb .engb-action {
		text-align: left;
	}

	.engb .engb-button {
		width: 100%;
		max-width: 260px;
		min-height: 40px;
	}
}
