.legal-page {
	max-width: 920px;
	color: #252525;
	font-size: 16px;
	line-height: 1.7;
	overflow-wrap: break-word;
}

.legal-page h2 {
	margin: 48px 0 20px;
	font-size: 24px;
	line-height: 1.35;
	font-weight: 600;
	color: #1d1d1d;
}

.legal-page h2:first-child {
	margin-top: 0;
}

.legal-page p {
	margin: 0 0 16px;
}

.legal-page ul,
.legal-page ol {
	margin: 16px 0 24px;
	padding-left: 28px;
}

.legal-page li {
	padding-left: 4px;
}

.legal-page li + li {
	margin-top: 8px;
}

.legal-page li > p {
	margin: 0;
}

.legal-page a {
	text-underline-offset: 3px;
}


/* Вводный блок */

.legal-page__intro {
	margin-bottom: 40px;
	padding: 22px 24px;
	background: #f7f7f7;
	border-radius: 12px;
	font-size: 17px;
	line-height: 1.65;
}


/* Разделы */

.legal-section {
	margin-bottom: 42px;
}

.legal-section h2 {
	margin-top: 0;
}


/* PDF */

.pdf-download {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	color: #d32f2f;
	text-decoration: none;
	font-weight: 500;
	transition: opacity .2s ease;
}

.pdf-download:hover {
	opacity: .7;
}

.pdf-download__icon {
	flex-shrink: 0;
}


/* Сведения об операторе / реквизиты */

.legal-operator {
	margin-top: 44px;
	padding: 24px;
	background: #f7f7f7;
	border-radius: 12px;
}

.legal-operator .legal-operator__title {
	margin: 0 0 18px;
	font-size: 22px;
}

.legal-operator p {
	margin: 0;
}

.legal-operator p + p {
	margin-top: 7px;
}


/* Другие документы */

.legal-documents {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid #e5e5e5;
}

.legal-documents__title {
	margin: 0 0 20px !important;
	font-size: 22px !important;
	line-height: 1.35;
	font-weight: 600;
	color: #1d1d1d;
}

.legal-documents__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.legal-documents__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 72px;
	padding: 16px 20px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fff;
	color: #222;
	text-decoration: none;
	transition:
		border-color .2s ease,
		box-shadow .2s ease,
		transform .2s ease;
}

.legal-documents__item:hover {
	border-color: #cfcfcf;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
	transform: translateY(-1px);
}

.legal-documents__name {
	line-height: 1.4;
}

.legal-documents__arrow {
	flex-shrink: 0;
	font-size: 22px;
	line-height: 1;
	transition: transform .2s ease;
}

.legal-documents__item:hover .legal-documents__arrow {
	transform: translateX(4px);
}


/* Мобильная версия */

@media (max-width: 700px) {
	.legal-page {
		font-size: 15px;
		line-height: 1.65;
	}

	.legal-page h2 {
		margin-top: 36px;
		font-size: 20px;
	}

	.legal-page__intro {
		margin-bottom: 32px;
		padding: 18px;
		font-size: 15px;
	}

	.legal-section {
		margin-bottom: 32px;
	}

	.legal-operator {
		margin-top: 32px;
		padding: 18px;
	}

	.legal-documents {
		margin-top: 40px;
		padding-top: 24px;
	}

	.legal-documents__list {
		grid-template-columns: 1fr;
	}

	.legal-documents__item {
		min-height: auto;
		padding: 16px;
	}
}

/* 
// Made by Clomance
//  /\_/\
// ( o.o )
//  > ^ <
*/