.news{
	padding: 70px 0;
}

.news__wrapper{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}

.news__link{
	display: block;
	width: 32%;
	height: 100%;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, .3);
}
.news__item{
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}

.news__top{
	width: 100%;
	height: 350px;
	overflow: hidden;
	width: 100%;
}

.news__top img{
	transition: all .3s;
}
.news__top img:hover{
	transform: scale(1.04);
}

.news__headTitle{
	margin-bottom: 40px;
}

.news__bottom{
	width: 100%;
	height: 230px;
	padding: 40px;
	background-color: #e6e6e6;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.news__img{
	width: 100%;
	height: 100%;
	object-fit: cover;  /* Заполнение с сохранением пропорций */
	object-position: center; /* Центрирование изображения */
}

.news__date{
	color: #1e1e2f;
	font-family: 'Open sans';
	font-size: 13px;
	font-weight: 400;
}

.news__title{
	color: #1e1e2f;
	font-family: 'Open sans';
	font-size: 20px;
	font-weight: 600;
	height: 70%;
}

.news__more{
	color: #97c680;
	font-size: 18px;
	font-family: 'Open sans';
	font-weight: 600;
}
.news__more:hover{
	color: #feba88;
}

.news__paginator{
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}



/* 📱 Мобильные устройства: портретные (до 480px) */
@media (max-width: 480px) {
	.news__link{
		width: 100%;
	}
	.news__title{
		font-size: 15px;
	}
	.news__top{
		height: 270px;
	}
  }
  
  /* 📱 Мобильные устройства: типичный смартфон (481px – 767px) */
  @media (min-width: 480px) and (max-width: 767px) {
	.news__link{
		width: 100%;
	}
	.news__title{
		font-size: 15px;
	}
  }
  
  /* 📱 Мобильные устройства: ландшафт или большие телефоны (768px – 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
	.news__link{
		width: 45.8%;
	}
	.news__title{
		font-size: 15px;
	}
  }
  
  /* 💻 Планшеты и небольшие ноутбуки (992px – 1199px) */
  @media (min-width: 992px) and (max-width: 1199px) {
	.news__link{
		width: 45.8%;
	}
  }
  



  
