
.section-news-index {
	display: flex;
	flex-direction: column;
}

.section-main {
	gap: 17px;
	display: flex;
}

.section-main .lx {
	width: 69%;
}

.section-main .rx {
	width: 29%;
}

.section-main .section-article {
	height: 500px;
}

.section-subs {
	gap: 17px;
	display: flex;
	height: 300px;
	margin-top: 17px;
}

.section-subs .section-article {
	height: 300px;
	flex-basis: 25%;
}

.section-article {
	position: relative;
	height: 100%;
	border-radius:12px;
	overflow: hidden;
	background:#0a0a0a;
	color:#ffffff;
	box-shadow:0 10px 30px rgba(0, 0, 0, .15);
	isolation: isolate;
}

.section-article img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform .35s ease;
	z-index: 1;
}

.section-article:hover img {
	transform: scale(1.04);
}

.section-article time {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	color: #878787;
	text-shadow: -1px -1px 2px #c1c1c1;
}

.section-article .overlay {
	z-index: 3;
	position: absolute;
	bottom: 0;
	width: 100%;
	background: #00000033;
	padding: 7px 7px 17px 7px;
}

.section-article .title {
	color: white;
	font-size: 1.4rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
	font-weight: 800;
	line-height: 1.15;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	max-height: calc(4 * 1em * 1.15);
	padding: 7px;
	/* background-color: #0000004a; */
	min-height: calc(4 * 1em * 1.25);
}

.section-article.medium .title {
	font-size: 1.1rem;
}

.section-article .badge {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .3px;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 8px;
}

.fifty-fifty {
	gap: 24px;
	display: flex;
}

.fifty-fifty .lx {
	flex-basis: 50%;
}

.fifty-fifty .rx {
	flex-basis: 50%;
}

.columns h4 {
	padding: 3px 0px;
	color: #5c5c5c;
	border-top-right-radius: 4px;
	margin-bottom: 17px;
}

.columns iframe {
	margin-bottom: 17px;
}

@media (max-width: 720px) {

	.section-main {
		flex-wrap: wrap;
	}

	.section-main .lx {
		width: 100%;
	}

	.section-main .rx {
		width: 100%;
	}

	.section-subs {
		flex-wrap: wrap;
	}

	.section-subs .section-article {
		flex-basis: 100%;
	}

	.fifty-fifty {
		flex-wrap: wrap;
	}

	.fifty-fifty .lx {
		flex-basis: 100%;
	}

	.fifty-fifty .rx {
		flex-basis: 100%;
	}

} /* max-width: 720 */

@media (max-width: 1379px) {

	.section-news-index {
		padding: 0 17px;
	}
	
}
