/* news techology*/
.news {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 40px 15px;
}

.news-item {
	width: calc(33.3333% - 10px);
}

.news-img-link {
	width: 100%;
	margin-bottom: 10px;
	display: block;
	position: relative;
}

.news-img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4/3;
	-o-object-fit: contain;
	   object-fit: contain;
}

.news-date {
	width: 60px;
	padding: 5px 0;
	background-color: #E31840;
	color: #fff;
	text-align: center;
	font-weight: bold;
	line-height: 20px;
	font-size: 13px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.news-date-day {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 30px;
	line-height: 32px;
}

.news-name {
	display: block;
	padding: 0 10px;
}

@media only screen and (max-width: 768px) {
	.news {
		gap: 20px 10px;
	}
	.news-item {
		width: calc(50% - 5px);
	}
	.news-date {
		width: auto;
		font-size: 11px;
		line-height: 14px;
	}
	.news-date-day {
		display: inline;
		font-size: 11px;
	}
	.news-date-day::before {
		content: '.';
	}
}

/* news techology --end*/
