.tourgides_news{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	gap: 30px;
}
.tourgides_news__item{
	background: var(--gray, #F0F0F0);
	padding: 10px 20px 10px 10px;
	border-radius: 100px;
	text-decoration: none;
	display: flex;
	transition-duration: 0.3s;
	gap: 15px;
}
.tourgides_news__item:hover .tourgides_news__item_img img{
	width: 110px;
	height: 110px;
	left: -5px;
	top: -5px;
}
.tourgides_news__item_img{
	flex-shrink: 0;
	width:100px;
	height: 100px;
	position: relative;
	border-radius: 100%;
	overflow: hidden;
}
.tourgides_news__item_img img{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width:100px;
	height: 100px;
	transition-duration: 0.3s;
	object-fit: cover;
	object-position: top;
}
.tourgides_news__item_text{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}
.tourgides_news__item_title{
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
}
.tourgides_news__item_desc{
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Разрешает перенос текста на новые строки */
}
@media screen and (max-width: 1200px) {
	.tourgides_news{
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px) {
	.tourgides_news{
		grid-template-columns: 1fr;
	}
}