.news{
	padding: 70px 0;
}

.news__wrapper{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
}

.news__main{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 70%;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, .3);
}



.news__bottom{
	background-color: #eeeded;
	padding: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.news__title{
	font-family: 'Open sans';
	font-size: 42px;
	font-weight: 700;
	color: #1e1e2f;
}

.news__date{
	color: #7a7a7a;
	font-family: 'Open sans';
	font-size: 16px;
	font-weight: 400;
}

.news__img{
	width: 100%;
	height: 500px;
	overflow: hidden;
}
.news__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;  /* Заполнение с сохранением пропорций */
	object-position: center; /* Центрирование изображения */
}

.news__content{
	font-family: 'Open sans';
	font-size: 24px;
	font-weight: 400;
	color: #1e1e2f;
	width: 100%;
}

.news__link{
	display: block;
	margin-bottom: 20px;
}

.news__link button{
	background-color: #97c680;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 200px;
	height: 40px;
	cursor: pointer;
	outline: none;
	border: none;
	margin-top: 20px;
	font-family: 'Open sans';
	font-weight: 500;
	font-size: 16px;
	color: #1e1e2f;
	transition: all .3s;
	
}

.news__link button:hover{
	background-color: #feba88;
}

.news__latest{
	width: 30%;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, .3);
}



.latest{
	background-color: #eeeded;
	padding: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.latest__content{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.latest__headTitle{
	font-family: 'Open sans';
	font-size: 22px;
	font-weight: 600;
}

.latest__item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	position: relative;
	width: 100%;
}

.latest__item::after{
	content: '';
	position: absolute;
	bottom: -20px;
	height: 1px;
	width: 90%;
	background-color: #d5d5d5;
}

.latest__title{
	font-family: 'Open sans';
	font-weight: 400;
	font-size: 16;
	width: 100%;
}

.latest__img{
	width: 80px;
	height: 65px;
	overflow: hidden;
	border-radius: 10px;
}

.latest__img img{
	object-position: center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}



/* 📱 Мобильные устройства: портретные (до 480px) */
@media (max-width: 480px) {
	.news__img{
		height: 200px;
	}
	.news__latest{
		width: 100%;
	}
	.news__main{
		width: 100%;
	}
	.news__wrapper{
		flex-direction: column;
	}
	.latest__title{
		font-size: 14px;
	}
	.news__title{
		font-size: 20px;
	}
	.news__content{
		font-size: 12px;
	}
	.news__link button{
		width: 140px;
	}
  }
  
  /* 📱 Мобильные устройства: типичный смартфон (481px – 767px) */
  @media (min-width: 480px) and (max-width: 767px) {
	.news__img{
		height: 350px;
	}
	.news__latest{
		width: 100%;
	}
	.news__main{
		width: 100%;
	}
	.news__wrapper{
		flex-direction: column;
	}
	.latest__title{
		font-size: 14px;
	}
	.news__title{
		font-size: 30px;
	}
  }
  
  /* 📱 Мобильные устройства: ландшафт или большие телефоны (768px – 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
	.news__img{
		height: 350px;
	}
	.news__latest{
		width: 100%;
	}
	.news__main{
		width: 100%;
	}
	.news__wrapper{
		flex-direction: column;
	}
	.latest__title{
		font-size: 14px;
	}
  }
  
  /* 💻 Планшеты и небольшие ноутбуки (992px – 1199px) */
  @media (min-width: 992px) and (max-width: 1199px) {
	.latest__title{
		font-size: 14px;
	}
  }
  

  

  

  