.documents__catalog-link-wrap {
	position: relative;
	z-index: 2;
	margin: 0 0 34px;
}

.documents__catalog-link {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 18px 20px;
	overflow: hidden;
	border: 1px solid rgba(70, 80, 114, 0.13);
	border-radius: 22px;
	color: #465072;
	background:
		radial-gradient(circle at 92% 15%, rgba(102, 194, 177, 0.2) 0, rgba(102, 194, 177, 0) 31%),
		linear-gradient(135deg, #ffffff 0%, #f2f5fb 52%, #edf8f5 100%);
	box-shadow: 0 14px 35px rgba(44, 58, 89, 0.09);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.documents__catalog-link::after {
	content: "";
	position: absolute;
	right: 76px;
	bottom: -36px;
	width: 116px;
	height: 116px;
	border: 1px solid rgba(70, 80, 114, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.documents__catalog-link-icon,
.documents__catalog-link-arrow {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.documents__catalog-link-icon {
	width: 54px;
	height: 54px;
	border-radius: 17px;
	color: #ffffff;
	background: linear-gradient(145deg, #465072 0%, #293a68 100%);
	box-shadow: 0 9px 20px rgba(46, 59, 102, 0.2);
}

.documents__catalog-link-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.documents__catalog-link-copy {
	position: relative;
	z-index: 1;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.documents__catalog-link-kicker {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: #398678;
}

.documents__catalog-link-title {
	font-family: GOSHAAlternates, Montserrat, sans-serif;
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 700;
	line-height: 1.15;
	color: #394361;
}

.documents__catalog-link-title sup {
	font-size: 0.55em;
}

.documents__catalog-link-text {
	font-size: 14px;
	line-height: 1.45;
	color: #6b7285;
}

.documents__catalog-link-arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(70, 80, 114, 0.18);
	border-radius: 50%;
	color: #465072;
	background: rgba(255, 255, 255, 0.72);
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.documents__catalog-link-arrow::after {
	content: none;
	display: none;
}

.documents__catalog-link-arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.documents__catalog-link:hover {
	border-color: rgba(57, 134, 120, 0.3);
	box-shadow: 0 18px 42px rgba(44, 58, 89, 0.14);
	transform: translateY(-2px);
}

.documents__catalog-link:hover .documents__catalog-link-arrow {
	color: #ffffff;
	background: #465072;
	transform: translateX(3px);
}

.documents__catalog-link:focus-visible {
	outline: 3px solid rgba(57, 134, 120, 0.28);
	outline-offset: 3px;
}

@media (max-width: 640px) {
	.documents__catalog-link-wrap {
		margin-bottom: 26px;
	}

	.documents__catalog-link {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 12px;
		padding: 15px;
		border-radius: 18px;
	}

	.documents__catalog-link-icon {
		width: 46px;
		height: 46px;
		border-radius: 14px;
	}

	.documents__catalog-link-icon svg {
		width: 23px;
		height: 23px;
	}

	.documents__catalog-link-kicker {
		font-size: 9px;
	}

	.documents__catalog-link-title {
		font-size: 17px;
	}

	.documents__catalog-link-text {
		display: none;
	}

	.documents__catalog-link-arrow {
		width: 36px;
		height: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.documents__catalog-link,
	.documents__catalog-link-arrow {
		transition: none;
	}
}
