#news {
	position: relative; z-index: 1;
	background-color: #FFF;
	box-shadow: 0 0 40px rgba(0,0,0,.25);
}
#news > .content-wrapper.header {
	padding-top: 85px;
	margin-bottom: 85px;
}
#news > .content-wrapper.header > main {}
@media (min-width: 900px) {
	#news > .content-wrapper.header > main {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		column-gap: 50px;
	}
}
@media (max-width: 899.99px) {
	#news > .content-wrapper.header > main > .complex-title { margin-bottom: 25px; }
	#news > .content-wrapper.header > main > .complex-title > span { display: block; }
}

/*-----------------------------------------------------------------------------------------------------------*/

#news > .content-wrapper > main > .return-btn {
	position: relative;
	display: block; width: max-content;
	padding-left: 25px;
	margin-bottom: 30px;
	
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #000; transition: color .2s ease-out;
	
	cursor: pointer;
}
#news > .content-wrapper > main > .return-btn:after {
	content: "";
	position: absolute; top: 50%; left: 0; transform: translateY(-50%);
	display: block; height: 24px; width: 13px;

	background-color: #000; transition: background-color .2s ease-out;
	-webkit-mask: url("../../images/icons/arrow.simple.svg") no-repeat 50% 50%;
	mask: url("../../images/icons/arrow.simple.svg") no-repeat 50% 50%;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#news > .content-wrapper > main > .return-btn:hover { color: #E45C4A; }
#news > .content-wrapper > main > .return-btn:hover:after { background-color: #E45C4A; }

/*-----------------------------------------------------------------------------------------------------------*/

#news > .content-wrapper > main > .complex-title {}

/*-----------------------------------------------------------------------------------------------------------*/

#news > .articles { padding: 0 max(45px, calc((100% - 1200px) / 2)); }
#news > .articles .article {
	display: flex; height: auto; overflow: hidden;
	flex-direction: column;
}
#news > .articles .article > .thumbnail {
  	position: relative;
	display: block; overflow: hidden;
}
#news > .articles .article > .thumbnail:after {
	content: '';
	display: block;
	padding-top: 100%;
}
#news > .articles .article > .thumbnail > img {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%); transition: transform .2s ease-out;
	height: 100%; width: 100%;
	
	object-fit: cover;
}
#news > .articles .article > .thumbnail:hover > img { transform: translate(-50%, -50%) scale(1.2); }
#news > .articles .article > .info {
	display: flex; flex: 1;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 45px 40px;
}
#news > .articles .article > .info > .category {
	display: block;
	margin-bottom: 15px;
	
	line-height: 100%;
	font-size: 24px;
	font-weight: 700;
}
#news > .articles .article > .info > .title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 40px;
	
	font-size: 16px;
	font-weight: 600;
}
#news > .articles .article > .info > .excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: auto;
	margin-bottom: 35px;
	
	font-size: 14px;
	font-weight: 300;
}
#news > .articles .article > .info > .meta {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	column-gap: 20px;
}
#news > .articles .article > .info > .meta > .cta-link {}
#news > .articles .article > .info > .meta > .date {
	text-align: right;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
}

/*-----------------------------------------------------------------------------------------------------------*/

#news > .content-wrapper {}
#news > .content-wrapper > .buttons-wrapper { position: relative; }
#news > .content-wrapper > .buttons-wrapper > .buttons {
	position: absolute; top: 40px;
	display: flex; width: 100%;
	flex-direction: row;
	justify-content: flex-end;
	column-gap: 40px;
}
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control {
	position: relative;
	cursor: pointer;
	
	transition: opacity .2s ease-out;
}
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control:before {
	content: attr(data-label);
	
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #000;
}
#news > .content-wrapper > .buttons-wrapper > .buttons.light > .slider-control:before { color: #FFF; }
.loaded #news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control:before { transition: color .2s ease-out; }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control:after {
	content: "";
	position: absolute; top: 50%;
	display: block; height: 24px; width: 13px;
	
	background-color: #000;
	-webkit-mask: url("../../images/icons/arrow.simple.svg") no-repeat 50% 50%;
	mask: url("../../images/icons/arrow.simple.svg") no-repeat 50% 50%;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#news > .content-wrapper > .buttons-wrapper > .buttons.light > .slider-control:after { background-color: #FFF; }
.loaded #news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control:after { transition: background-color .2s ease-out; }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control:hover:before { color: #E45C4A; }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control:hover:after { background-color: #E45C4A; }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control.prev-btn { padding-left: 25px; }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control.prev-btn:after { left: 0; transform: translateY(-50%); }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control.next-btn { padding-right: 25px; }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control.next-btn:after { right: 0; transform: translateY(-50%) rotate(180deg); }
#news > .content-wrapper > .buttons-wrapper > .buttons > .slider-control.swiper-button-disabled {
	pointer-events: none;
	opacity: .25;
}