
.press-news-section * {
	box-sizing: border-box;
}

.press-news-section {
	display: flex;
	gap: 40px;
	justify-content: space-between;
}

.press-news-section .left-area {
	width: 300px;
}

.press-news-section .left-area h3 {
	position: relative;
	line-height: 1.25em;
	margin: 0 0 1em;
	color: #000;
	font-size: 1.22em;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}

.press-news-section .news-type-filters label {
	padding: 10px 10px 10px 0;
	font-size: 1em;
	color: #000;
	line-height: 1.3em;
	outline: 0;
	cursor: pointer;
	background-color: rgba(255, 110, 66, 0);
	transition: 0.3s;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.custom-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	font-size: 14px;
	gap: 6px;
}

.custom-checkbox input[type="checkbox"] {
	display: none;
}

.custom-checkbox .checkmark {
	width: 18px;
	height: 18px;
	border: 3px solid #ff7241;
	display: inline-block;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
	background-color: #ff7241;
}

.press-news-section .right-area {
	width: calc(100% - 340px);
}

.all-items {
	display: flex;
	flex-flow: column;
	gap: 40px;
}

.all-items .row {
	display: flex;
	flex-flow: wrap;
	gap: 40px;
}

.all-items .item img {
	max-width: 100%;
}

.all-items .item {
	width: calc((100% - 80px) / 3);
	position: relative;
	background: #f2f3f8;
}

.all-items .item a:hover .read_more {
	color: #ff7241;
}

.all-items .item a {
	display: block;
	color: #000;
}

.all-items .item:hover img {
	transform: translate3d(0, 0, 0) scale(1.1);
}

.all-items .item .thumbnail {
	position: relative;
	z-index: 12;
	box-shadow: 0 0 15px rgba(20, 25, 32, 0.15);
	background: #fff;
	overflow: hidden;
	height: 230px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 40px;
}

.all-items .item .thumbnail img {
	transition: transform 0.3s;
}

.all-items .item.term-press-releases .thumbnail {
	padding: 0;
}

.all-items .item.term-press-releases .thumbnail img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.all-items .item .content {
	padding: 30px 40px 80px 20px;
}

.read_more::after {
	position: absolute;
	right: 20px;
	top: calc(50% + 2px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #ff6e42;
	content: "";
	transform: translateY(-50%);
}

.read_more {
	position: absolute;
	left: 20px;
	bottom: 20px;
	display: inline-block;
	padding-right: 40px;
	text-decoration: none;
	font-size: 1.67em;
	line-height: 1.333em;
	font-weight: 600;
	color: #000041;
	transition: 0.3s;
}

.load-more-area {
	display: flex;
	justify-content: center;
	padding: 40px 0 0;
}

.load-more.disable-btn {
	pointer-events: none;
}

.load-more {
	display: inline-block;
	position: relative;
	width: auto;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.4em;
	border: 2px solid #ff6e42;
	border-radius: 100px;
	text-decoration: none !important;
	text-transform: none;
	box-sizing: border-box;
	text-align: center;
	-webkit-appearance: none;
	transition: 0.3s;
	cursor: pointer;
	background: #ff6e42;
	color: #fff;
	padding: 5px 10px;
	font-size: 0.9em;
}

.load-more:hover {
	background: #2b59c3;
	border: 2px solid #2b59c3;

}

.hide-btn {
	display: none;
}

@media (max-width: 1380px) {

	.all-items .row {
		gap: 20px;
	}

	.all-items .item {
		width: calc((100% - 40px) / 3);
	}
}

@media (max-width: 1280px) {

	.all-items .row {
		gap: 30px;
	}

	.all-items .item {
		width: calc((100% - 30px) / 2);
	}
}

@media (max-width: 991px) {

	.press-news-section {
		flex-flow: column;
	}

	.press-news-section .right-area,
	.press-news-section .left-area {
		width: 100%;
	}
}

@media (max-width: 767px) {

	.all-items .item {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.all-items .row {
		justify-content: center;
	}
}
