/* Browse Content */
.news-hero {
	background-color: var(--card-bg-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}
.news-container {
	margin: auto;
	width: 90%;
}
.header-row {
	display: flex;
	justify-content: space-between;
}
.browse-right {
	align-content: center;
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	font-size: 14px;
	justify-content: flex-start;
}
.browse-right span {
	color: var(--black-color);
	font-weight: 600;
}
.topic_filter {
	display: flex;
	gap: 100px;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
}
.topic_filter span {
	font-weight: 400;
	color: var(--black-color);
}
.filter-menu {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease;
}
.filter-opened .filter-menu {
	max-height: 500px;
	opacity: 1;
}
.topic_arrow {
	transform: rotate(0deg);
	transition: transform 0.4s ease;
}
.filter-opened .topic_arrow {
	transform: rotate(-90deg);
	transition: transform 0.4s ease;
}
.topic_filter_container {
	top: -12px;
	position: absolute;
	right: 0;
	background-color: white;
	z-index: 2;
	border: 1px solid grey;
	border-radius: 20px;
	padding: 10px 20px;
}
.filter-menu-container ul {
	padding-left: 0px;
	padding-top: 15px;
	list-style: none;
	margin: 0px;
}
.filter-menu-container li {
	border-top: 1px solid var(--border-color);
	padding: 10px 0px;
}
.filter-menu-container li:last-child {
	padding-bottom: 0px;
}
.topic_filter_menu li a {
	display: block;
	color: var(--black-color)
}
span.topic_arrow img {
	width: 75%;
}
.news-cat-block .header-row {
	margin-bottom: 60px;
}
.news-cat-block {
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 2px solid #70707070;
}
.news-cat-block:last-child {
	border-bottom: 0px;
	margin-bottom: 15px;
}
.header-left h2 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}
.featured-container {
	margin: auto;
	margin-bottom: 40px;
	padding-bottom: 40px;
	width: 80%;
	border-bottom: 1px solid #70707070;
}
.featured-container a {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
}
.featured-text {
	display: flex;
	flex-direction: column;
}
.featured-title {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 18px;
}
.featured-desc {
	font-size: 15px;
	color: var(--text-color);
	line-height: 1.6;
	max-width: 98%;
	font-weight: 300;
	margin-bottom: 30px;
}
.featured-date {
	font-size: 12px;
	font-weight: 500;
	margin-top: auto;
	color: var(--date-color);
	text-transform: uppercase;
}
.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	margin: auto;
	margin-bottom: 40px;
	width: 80%;
}
.news-readmore {
	text-align: end;
}
.news-readmore a span {
	margin-bottom: -2px;
}
.news-readmore .expand-btn:hover .circle-arrow {
	border-radius: 30px;
	padding-left: 14px;
}
.news-item {
	align-items: stretch;
	position: relative;
}
.news-item a {
	display: grid;
	grid-template-columns: 35% calc(66% - 25px);
	gap: 25px;
	align-items: stretch;
}
.news-item::before {
	content: '';
	position: absolute;
	width: 100%;
	padding-bottom: 40px;
	height: 100%;
	z-index: -1;
	border-bottom: 1px solid #70707070;
}
.news-item:nth-child(odd)::after {
	content: '';
	position: absolute;
	top: 0px;
	right: -40px;
	transform: translateY(0%);
	height: 100%;
	z-index: -1;
	border-right: 1px solid #70707070;
}
.news-item:nth-child(2),
.news-item:nth-child(4) {
	border-right: none;
}
.news-item img {
	aspect-ratio: 280/230;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-content {
	display: flex;
	flex-direction: column;
}
.news-content .category {
	text-transform: uppercase;
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 400;
	margin-bottom: 10px;
}
.title {
	font-weight: 600;
	font-size: 22px;
	line-height: 1.35;
	margin-top: 0px;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.date {
	margin-top: auto;
	font-size: 11px;
	color: var(--date-color);
	font-weight: 500;
}
.news-readmore {
	text-align: end;
}
.featured-image,
.news-item-thumb {
	overflow: hidden;
}
.featured-image img,
.news-item-thumb img {
	transition: transform .3s;
}
.featured-container:hover .featured-title,
.news-item:hover .title {
	color: var(--primary-color);
	text-decoration: underline;
}
.featured-container:hover .featured-image img,
.news-item:hover .news-item-thumb img {
	transform: scale(1.1);
}

/* Category */
.news-grid.grid-layout .news-item-link {
	grid-template-columns: 1fr;
}
.news-grid.grid-layout .news-item-thumb {
	height: unset;
}
.news-grid.grid-layout {
	margin: 80px auto;
	gap: 60px;
	grid-template-columns: repeat(3, 1fr);
}
.news-grid.grid-layout .news-item::before,
.news-grid.grid-layout .news-item::after {
	display: none;
}
.news-pagination ul {
	display: flex;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 20px 0;
	justify-content: center;
}
.news-pagination ul li a,
.news-pagination ul li span {
	font-size: 18px;
	color: #000;
	text-decoration: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.news-pagination ul li span.current {
	background: #4B4B4B;
	color: var(--white-color);
	font-weight: 600;
}
.news-pagination ul li a:hover {
	background: var(--card-bg-color);
	border-radius: 50%;
}
a.next.page-numbers,
a.prev.page-numbers {
	display: none;
}
a.next.page-numbers {
	transform: rotate(-90deg);
}
a.prev.page-numbers {
	transform: rotate(90deg);
}
.news-pagination .pag-arrow {
	width: 16px;
	height: 16px;
	object-fit: contain;
	margin-top: -5px;
}
.news-pagination ul li a img {
	display: block;
}
.news-pagination ul li a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-pagination ul li a:hover {
	background: #eaeaea;
}

@media (min-width: 769px) {
	.news-item:nth-last-child(-n + 2)::before {
		border-bottom: none;
	}
}


@media only screen and (max-width: 1200px) {
	.featured-container,
	.news-grid {
		width: 90%;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	.news-hero {
		padding-bottom: 20px;
		margin-bottom: 40px;
	}
	.news-cat-block {
		margin-bottom: 40px;
	}
	.news-cat-block .header-row {
		margin-bottom: 40px;
	}
	.featured-title {
		font-size: 24px;
	}
	.title {
		font-size: 16px;
	}
}
@media only screen and (max-width: 992px) {
	/* Browse Content */
	.featured-container,
	.news-grid {
		width: 100%;
	}
	.featured-container a {
		gap: 40px;
	}
	.news-grid {
		gap: 60px;
		margin-bottom: 20px;
	}
	.news-item::before {
		padding-bottom: 30px;
	}
	.news-item:nth-child(odd)::after {
		right: -30px;
	}
	.news-item a {
		gap: 20px;
	}
	/* Category */
	.news-grid.grid-layout {
		gap: 40px;
	}
}
@media (min-width: 557px) and (max-width: 992px) {
	.date, .featured-date {
		font-size: 14px;
	}
}
@media only screen and (max-width: 768px) {
	/* Browse Content */
	.news-hero {
		background-color: unset;
		padding-bottom: 0px;
		margin-bottom: 0px;
	}
	.browse-right {
		justify-content: space-between;
	}
	.header-left h2 {
		font-size: 14px;
		font-weight: 400;
		color: var(--primary-color);
		text-transform: uppercase;
	}
	.news-cat-block .header-row {
		margin-bottom: 0px;
	}
	.featured-container {
		width: 100%;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
	.featured-container a {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.featured-desc {
		max-width: 100%;
		display: none;
	}
	.featured-image {
		margin: 0px -6%;
		position: relative;
	}
	.featured-title {
		font-size: 24px;
	}
	.header-row {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 30px;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 50px;
		margin-bottom: 25px;
	}
	.news-item {
		border-right: none;
		padding-right: 0;
	}

	/* .news-item .news-item-link {
		display: flex;
		gap: 20px;
		align-items: stretch;
	}

		.news-item-thumb {
		width: 35%;
	}

		.news-content {
		width: 65%;
	}*/
	.news-content .title {
		font-size: 24px;
		height: 60px;
	}
	.news-item img {
		height: 100%;
	}
	.expand-btn.more-legalsnaps {
		margin-top: 0px;
		margin-bottom: 20px;
	}
	.news-item::before {
		width: 100%;
		padding-bottom: 25px;
		border-bottom: 1px solid var(--border-color);
	}
	.news-item:nth-child(odd)::after {
		display: none;
	}
	.news-item:last-child:before {
		border-bottom: none;
	}
	.news-cat-block {
		margin-bottom: 25px;
		padding-bottom: 10px;
		border-bottom: none;
		position: relative;
	}
	.news-cat-block:not(:last-child)::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 111%;
		height: 1px;
		background-color: var(--border-color);
	}

	/* Category */
	.news-grid.grid-layout {
		margin: 40px auto;
		padding: 30px 0px;
		border-top: 1px solid var(--border-color);
		gap: 60px;
		grid-template-columns: repeat(1, 1fr);
	}
	.news-grid.grid-layout .news-item-link {
		grid-template-columns: 35% calc(66% - 25px);

		align-items: stretch;
	}
	.news-grid.grid-layout .news-item::before {
		display: block;
		padding-bottom: 30px;
	}
	.category-filter .header-left h2 {
		display: none;
	}
}

@media (max-width: 480px) {
	/* Browse Content */
	.news-content .title {
		font-size: 16px;
	}
}