#articles-container { position: relative; }
#articles-container > .content-wrapper {}
#articles-container > .content-wrapper > main {
	position: relative;
	padding-top: 85px;
}
#articles-container > .content-wrapper > main:before {
	content: "";
	position: absolute; top: 0; right: 0; bottom: 0; left: min(-45px, calc(((100vw - 100px - 1290px + 90px) / 2) * -1)); z-index: -1;
	
	background-color: #FFF;
	box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

/*-----------------------------------------------------------------------------------------------------------*/

#articles-container > .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;
}
#articles-container > .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;
}
#articles-container > .content-wrapper > main > .return-btn:hover { color: #E45C4A; }
#articles-container > .content-wrapper > main > .return-btn:hover:after { background-color: #E45C4A; }

/*-----------------------------------------------------------------------------------------------------------*/

#articles-container > .content-wrapper > main > .complex-title { margin-bottom: 85px; }

/*-----------------------------------------------------------------------------------------------------------*/

#articles-container > .content-wrapper > main > .articles {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
#articles-container > .content-wrapper > main > .articles > .article {
	display: flex; height: auto; overflow: hidden;
	flex-direction: column;
}
#articles-container > .content-wrapper > main > .articles > .article > .thumbnail {
  	position: relative;
	display: block; overflow: hidden;
}
#articles-container > .content-wrapper > main > .articles > .article > .thumbnail:after {
	content: '';
	display: block;
	padding-top: 100%;
}
#articles-container > .content-wrapper > main > .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;
}
#articles-container > .content-wrapper > main > .articles > .article > .thumbnail:hover > img { transform: translate(-50%, -50%) scale(1.2); }
@media (min-width: 990px)							{ #articles-container > .content-wrapper > main > .articles > .article { flex: 0 0 calc(100% / 3); } }
@media (max-width: 989.99px) and (min-width: 700px) { #articles-container > .content-wrapper > main > .articles > .article { flex: 0 0 calc(100% / 2); } }
@media (max-width: 699.99px)						{ #articles-container > .content-wrapper > main > .articles > .article { flex: 0 0 100%; } }
#articles-container > .content-wrapper > main > .articles > .article > .info {
	display: flex; flex: 1;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 45px 40px;
}
#articles-container > .content-wrapper > main > .articles > .article > .info > .category {
	display: block;
	margin-bottom: 15px;
	
	line-height: 100%;
	font-size: 24px;
	font-weight: 700;
}
#articles-container > .content-wrapper > main > .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;
}
#articles-container > .content-wrapper > main > .articles > .article > .info > .excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: auto;
	margin-bottom: 50px;
	
	font-size: 14px;
	font-weight: 300;
}
#articles-container > .content-wrapper > main > .articles > .article > .info > .meta {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	column-gap: 20px;
}
#articles-container > .content-wrapper > main > .articles > .article > .info > .meta > .cta-link {}
#articles-container > .content-wrapper > main > .articles > .article > .info > .meta > .date {
	text-align: right;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
}

/*-----------------------------------------------------------------------------------------------------------*/

#articles-container > .content-wrapper > main > .cta-link {
	display: flex; height: 100px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 45px;
	
	background-color: #207175;
	background-image: linear-gradient(to bottom, #E75946, #E75946);
	background-repeat: no-repeat;
	background-size: 0% 100%; transition: background-size .2s ease-out;
	
	text-align: center;
	color: #FFF;
}
#articles-container > .content-wrapper > main > .cta-link:hover { background-size: 100% 100%; }