div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}



/* Мобильные стили (базовые, до 992px) */
.quote-wrapper {
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

/* Блок с автором */
.quote-autor-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.author-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}

.quote-autor-name {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 5px;
}

.quote-autor-specialization {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
}

.quote-text-wrapper {
	background-color: #EEF4FA;
	border-radius: 12px;
	padding: 18px 20px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.quote-text-wrapper img {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.quote-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--ds-ink,#0a225e);
	font-weight: 400;
	margin: 0;
}
@media (min-width: 992px) {
	.quote-wrapper {
		border-radius: 20px;
		padding: 40px 30px;
	}

	.quote-autor-wrapper {
		gap: 30px;
		margin-bottom: 25px;
	}

	.author-img {
		width: 100px;
		height: 100px;
	}

	.quote-autor-name {
		font-size: 24px;
	}

	.quote-autor-specialization {
		font-size: 18px;
	}

	.quote-text-wrapper {
		border-radius: 15px;
		padding: 25px 30px;
		gap: 20px;
	}

	.quote-text-wrapper img {
		width: 26px;
		height: 26px;
	}

	.quote-text {
		font-size: 18px;
	}
}