/* Содержание новости */
.article-content {
	background: white;
	border-radius: 28px;
	padding: 50px;
	margin-bottom: 50px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.article-content p {
	margin-bottom: 20px;
	font-size: 1.05rem;
	color: #2c3e50;
}
.article-content h2 {
	margin: 40px 0 20px;
	color: #1a405e;
	font-size: 1.6rem;
}
.article-content h3 {
	margin: 30px 0 15px;
	color: #2c5f8a;
	font-size: 1.3rem;
}
.article-content ul,
.article-content ol {
	margin: 20px 0;
	padding-left: 25px;
}
.article-content li {
	margin-bottom: 8px;
}
.article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	margin: 30px 0;
}
.article-content blockquote {
	background: #f8fafe;
	border-left: 4px solid #2c5f8a;
	padding: 20px 30px;
	margin: 30px 0;
	border-radius: 16px;
	font-style: italic;
	color: #4a6a7e;
}

/* Кнопка "Назад" */
.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	padding: 12px 24px;
	border-radius: 40px;
	color: #2c5f8a;
	text-decoration: none;
	margin-bottom: 30px;
	font-weight: 500;
	transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.back-link:hover {
	background: #2c5f8a;
	color: white;
	transform: translateX(-3px);
}

/* Кнопки шаринга */
.share-section {
	margin: 40px 0;
	padding: 30px;
	background: #f8fafe;
	border-radius: 20px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.share-title {
	font-weight: 700;
	color: #1a405e;
}
.share-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.share-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 40px;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.2s;
}
.share-btn.telegram {
	background: #0088cc;
	color: white;
}
.share-btn.vk {
	background: #4a76a8;
	color: white;
}
.share-btn.whatsapp {
	background: #25d366;
	color: white;
}
.share-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

/* Похожие новости */
.related-section {
	margin: 50px 0;
}
.related-section h2 {
	text-align: center;
	margin-bottom: 30px;
	color: #1a405e;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.related-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
}
.related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
}
.related-card .image {
	height: 180px;
	background-size: cover;
	background-position: center;
}
.related-card .info {
	padding: 20px;
}
.related-card .date {
	font-size: 0.75rem;
	color: #2c5f8a;
	margin-bottom: 8px;
}
.related-card h3 {
	font-size: 1.1rem;
	line-height: 1.4;
	margin-bottom: 10px;
	color: #1a405e;
}
.related-card p {
	font-size: 0.9rem;
	color: #5a6e7e;
}

@media (max-width: 768px) {
	.article-content {
		padding: 25px;
	}
	.share-section {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}
