.news{
	padding: 6rem 0;
}

.news__wrapper{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 3rem;
}

.news__title{
	font-size: 4rem;
	font-weight: 600;
}

.news__time{
	color: #00A850;
	font-size: 1.3rem;
	font-weight: 400;
}

.news__img{
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	object-position: center;
}

.news__text{
	font-size: 2rem;
	font-weight: 500;
	padding: 0 5rem;
}

.news__link{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 600;
	width: 150px;
	height: 45px;
	background-color: #00A850;
	border: 2px solid  #00A850;
	color: #fff;
}

.news__link:hover{
	background-color: #fff;
	color: #00A850;
}



@media (max-width: 419px) {
	.news__title {
		font-size: 2rem;
	}
	.news__text{
		font-size: 1.5rem;
		font-weight: 500;
		padding: 0 1rem;
	}
	.news__img {
		width: 100%;
		max-height: 240px;
	}
 }
/* Мобильные устройства (до 576px) */
@media (min-width: 420px) and (max-width: 575px) {
	.news__title {
		font-size: 3rem;
	}
	.news__text{
		font-size: 1.5rem;
		font-weight: 500;
		padding: 0 2rem;
	}
	.news__img {
		width: 100%;
		max-height: 300px;
	}
 }

/* Планшеты (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) { 
	.news__title {
		font-size: 3rem;
	}
	
}

