.cl-section {
	min-height: 100vh;
	padding: 60px 0px;
}
.cl-wrapper {
	display: flex;
	justify-content: space-between;
}
.cl-left {
	width: 42%;
	padding: 0px 0 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cl-right {
	position: sticky;
	top: 60px;
	overflow: hidden;
	width: 52%;
	align-self: flex-start;
}
.cl-right-img {
	width: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	height: 750px;
}
.cl-card-inner {
	border: 2px solid #000;
}
.cl-card-tag {
	display: inline-block;
	background: #000;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.cl-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #000;
}
.cl-card-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}
.cl-card-arrow {
	font-size: 30px;
	font-weight: 300;
	line-height: 1;
	color: #000;
	flex-shrink: 0;
	margin-left: 12px;
}
.cl-card-desc {
	padding: 14px 18px;
	font-size: 13px;
	line-height: 1.65;
	color: #000;
	border-bottom: 2px solid #000;
}
.cl-card-meta {
	display: flex;
	border-bottom: 2px solid #000;
}
.cl-card-meta-cell {
	padding: 11px 18px;
	font-size: 13px;
	font-weight: 700;
}
.cl-card-meta-cell + .cl-card-meta-cell {
	border-left: 2px solid #000;
}
.cl-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	color: #000;
	display: flex;
}
.cl-card-footer-label {
	font-size: 13px;
	font-weight: 700;
}
.cl-card-footer-icon {
	font-size: 14px;
	color: #000;
}
.cl-card-link {
	display: contents;
	text-decoration: none;
	color: inherit;
}
.cl-card-footer .cl-card-footer-icon {
	padding: 10px 15px;
	border-left: 2px solid #000;
	transition: .4s ease-in-out;
}
.cl-card-link:hover .cl-card-footer-icon {
    background-color: #c4ff00;
}
.cl-card-footer .cl-card-footer-label {
	padding: 10px 18px;
}
.cl-card-header .cl-card-title {
	padding: 11px 18px;
}
.cl-card-header .cl-card-arrow {
	padding: 10px 30px 20px;
	border-left: 2px solid #000;
	font-size: 60px;
	line-height: 80%;
	font-family: "Montserrat", sans-serif;
}
.cl-card:not(:last-child) {
	margin-bottom: 25px;
}
.cl-right-img {
	transition: opacity 0.3s ease; 
}
.cl-right-img.is-fading {
	opacity: 0; 
}
.cl-card-tag a {
    font: inherit;
    color: inherit;
	padding: 10px 15px;
}

@media only screen and (max-width: 1028px) {
	.cl-right-img {
		height: 700px;
	}
}
@media (max-width: 900px) {
	.cl-wrapper {
		flex-direction: column;
	}
	.cl-right {
		position: relative; 
		min-height: 240px;
		width: 100%;
		order: -1;
		top: 0px;
	}
	.cl-left {
		width: 100%;
		padding: 32px 0px 32px;
		justify-content: flex-start;
	}
	.cl-section {
		padding: 40px 0px;
	}
}
@media (max-width: 600px) {
	.cl-section {
		padding: 20px 0px;
	}
	.cl-right {
		height: 50vh;
	}
	.cl-right-img {
		height: auto;
	}
	.cl-card-title {
		font-size: 20px;
	}
	.cl-left {
		padding: 24px 0px 40px;
	}
	.cl-card-header .cl-card-arrow {
		font-size: 40px;
		padding: 10px 20px 15px;
	}
	.cl-card-header .cl-card-title {
		padding: 10px 10px;
	}
	.cl-card-desc {
		padding: 10px 10px;
	}
	.cl-card-meta-cell, .cl-card-meta-cell {
		padding: 10px 10px;
	}
	.cl-card-footer .cl-card-footer-label {
		padding: 10px 10px;
	}
}