.ajf-pbw {
	--ajf-pbw-accent: #d99a11;
	position: relative;
	overflow: hidden;
	background: #f5f6f8;
	padding: 115px 48px 120px;
}

.ajf-pbw::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 8%, rgba(255,255,255,.85) 0%, rgba(245,246,248,0) 38%),
		linear-gradient(180deg, rgba(255,255,255,.25), rgba(245,246,248,.05));
	pointer-events: none;
	z-index: 0;
}

.ajf-pbw__watermark {
	position: absolute;
	top: 0;
	right: 0;
	width: 760px;
	aspect-ratio: 1.8 / 1;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
	opacity: .32;
	pointer-events: none;
	z-index: 1;
}

.ajf-pbw__inner {
	position: relative;
	z-index: 2;
	max-width: 1580px;
	margin: 0 auto;
}

.ajf-pbw__panel {
	background: #fff;
	border-radius: 36px;
	padding: 72px 38px 64px;
	box-shadow: 0 26px 52px rgba(15, 24, 45, .08);
}

.ajf-pbw__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 34px;
	row-gap: 34px;
}

.ajf-pbw__item {
	position: relative;
	border-left: 1px solid #e4e7ed;
}

.ajf-pbw__item:first-child {
	border-left: 0;
}

.ajf-pbw__item-link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 34px;
	align-items: flex-start;
	height: 100%;
	text-decoration: none;
	color: inherit;
	padding: 0 10px;
}

.ajf-pbw__icon {
	width: 94px;
	height: 94px;
	border: 2px solid var(--ajf-pbw-accent);
	border-radius: 999px;
	color: var(--ajf-pbw-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	transition: transform .25s ease, box-shadow .25s ease;
}

.ajf-pbw__icon i {
	font-size: 43px;
	line-height: 1;
}

.ajf-pbw__icon svg {
	width: 43px;
	height: 43px;
	fill: currentColor;
}

.ajf-pbw__item:hover .ajf-pbw__icon {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(217, 154, 17, .16);
}

.ajf-pbw__title {
	margin: 24px 0 18px;
	color: #06133d;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.ajf-pbw__small-line {
	width: 36px;
	height: 2px;
	background: var(--ajf-pbw-accent);
	margin: 0 0 24px;
}

.ajf-pbw__description {
	color: #4c566f;
	font-size: 17px;
	line-height: 1.7;
	font-weight: 400;
	max-width: 285px;
}

@media (max-width: 1200px) {
	.ajf-pbw {
		padding: 86px 32px 86px;
	}

	.ajf-pbw__panel {
		padding: 52px 34px;
	}

	.ajf-pbw__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ajf-pbw__item:nth-child(odd) {
		border-left: 0;
	}

	.ajf-pbw__item-link {
		padding: 0 18px;
	}
}

@media (max-width: 767px) {
	.ajf-pbw {
		padding: 56px 16px;
	}

	.ajf-pbw__watermark {
		width: 320px;
		opacity: .18;
	}

	.ajf-pbw__panel {
		border-radius: 26px;
		padding: 34px 22px;
	}

	.ajf-pbw__grid {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.ajf-pbw__item,
	.ajf-pbw__item:first-child {
		border-left: 0;
		border-top: 1px solid #e4e7ed;
		padding-top: 26px;
		padding-bottom: 26px;
	}

	.ajf-pbw__item:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.ajf-pbw__item:last-child {
		padding-bottom: 0;
	}

	.ajf-pbw__item-link {
		grid-template-columns: 72px 1fr;
		gap: 20px;
		padding: 0;
	}

	.ajf-pbw__icon {
		width: 72px;
		height: 72px;
	}

	.ajf-pbw__icon i {
		font-size: 32px;
	}

	.ajf-pbw__icon svg {
		width: 32px;
		height: 32px;
	}

	.ajf-pbw__title {
		margin: 8px 0 12px;
		font-size: 20px;
	}

	.ajf-pbw__small-line {
		margin-bottom: 14px;
	}

	.ajf-pbw__description {
		font-size: 15px;
		line-height: 1.55;
		max-width: none;
	}
}
