.news-wrapper {
	border-radius: 120px;
	box-shadow: 0px 2px 138px 0px #9CAFAE24;
}

.news-item {
	border-bottom: 1px solid #eee;
	transition: background 0.2s;
}
.news-item:hover {
	opacity: 0.7;
}

.news-badge {
	background: #DFEAEA;
	color: #113B55;
}

.news-arrow {
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news-arrow::before {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2px solid #113B55;
	border-right: 2px solid #113B55;
	transform: rotate(45deg);
	display: block;
}

@media (max-width: 992px) {
	.news-wrapper {
		border-radius: 0;
		box-shadow: none;
	}
}

.paging,
.paging-link {
	width: 2.25em;
	height: 2.25em;
	color: #113B55;
	background-color: #F0F6F6;
	border-radius: 50%;
}

.paging-link.current-page {
	background-color: #F1F160;
}

@media (min-width: 768px) {
	.paging,
	.paging-link {
		width: 3em;
		height: 3em;
		padding-top: 0.6rem!important;
	}
	
	.detail-paging-link:after {
		top: .25rem;
	}
	
	.detail-paging-link.lt:after {
		left: 0;
	}
	
	.detail-paging-link.gt:after {
		right: 0;
	}
}