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;
}
.coverflow-slider__caption {
display:none;
}
.btn.btn-style.news-btn-link{
width:300px;
    margin: 0 auto;
}
.back_news{
padding: 20px 0;}

.back_news a {
    display: inline-flex;
    align-items: center;
    gap: 8px;               /* расстояние между стрелкой и текстом */

    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: color .2s ease;
}

.back_news a::before {
    content: "←";          /* сама стрелка */
    font-size: 18px;
    display: inline-block;
    transition: transform .2s ease;
}

.back_news a:hover {
   color: rgb(0, 153, 130);
}

.back_news a:hover::before {
    transform: translateX(-3px);   /* легкая анимация при ховере */
}