.text-style {
	max-width: 800px;
	margin: 0 auto;
}

/* Стили для контента */
.text-style h1 {
	font-size: 36px;
	margin-bottom: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.text-style h2 {
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.text-style h3 {
	font-size: 28px;
	margin-bottom: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.text-style h4 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.text-style h5 {
	font-size: 20px;
	margin-bottom: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.text-style h6 {
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.text-style p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.text-style a {
	color: var(--blue);
	text-decoration: none;
	transition: color 0.3s ease;
}

.text-style a:hover {
	color: var(--dark-blue);
	text-decoration: underline;
}

.text-style ul,
.text-style ol {
	margin-bottom: 20px;
	padding-left: 24px;
}

.text-style li {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.text-style ul li {
	list-style-type: disc;
}

.text-style ol li {
	list-style-type: decimal;
}

.text-style blockquote {
	border-left: 4px solid var(--border-color);
	padding: 12px 20px;
	margin: 20px 0;
	font-style: italic;
	background-color: var(--light-gray);
}

.text-style img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
	display: block;
}

.text-style table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.text-style table th,
.text-style table td {
	border: 1px solid var(--border-color);
	padding: 10px;
	text-align: left;
}

.text-style table th {
	background-color: var(--light-gray);
	font-weight: 600;
}

.text-style pre,
.text-style code {
	font-family: monospace;
	background-color: var(--light-gray);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
}

.text-style pre {
	padding: 16px;
	overflow-x: auto;
	margin: 20px 0;
}

.text-style hr {
	border: none;
	border-top: 1px solid var(--border-color);
	margin: 30px 0;
}

/* Адаптивные стили */
@media (max-width: 992px) {
	.textblock {
		padding: 50px 0;
	}

	.text-style h1 {
		font-size: 32px;
	}

	.text-style h2 {
		font-size: 28px;
	}

	.text-style h3 {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.textblock {
		padding: 40px 0;
	}

	.text-style h1 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.text-style h2 {
		font-size: 24px;
		margin-bottom: 18px;
	}

	.text-style h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.text-style h4 {
		font-size: 20px;
	}

	.text-style h5 {
		font-size: 18px;
	}

	.text-style h6 {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.textblock {
		padding: 30px 0;
	}

	.textblock__container {
		padding: 0 15px;
	}

	.text-style h1 {
		font-size: 24px;
		margin-bottom: 18px;
	}

	.text-style h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.text-style h3 {
		font-size: 20px;
		margin-bottom: 14px;
	}

	.text-style h4 {
		font-size: 18px;
	}

	.text-style h5,
	.text-style h6 {
		font-size: 16px;
	}

	.text-style p,
	.text-style li {
		font-size: 15px;
	}
}