.blog-marquee {
	margin-bottom: 40px;
	overflow: hidden;
}

.blog-marquee .slide > .inner {
	height: 100%;
	position: relative;
}

.blog-marquee .slide .img-cont {
	position: relative;
	width: 100%;
	height: 100%;
}

.blog-marquee .slide .img-cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-marquee .slide .img-cont:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
	pointer-events: none;
}

.blog-marquee .slide .content-section {
	position: absolute;
	left: 16px;
	bottom: 8px;
	z-index: 2;
}

.blog-marquee .slide .slide-title {
	font-size: 1.375rem;
	font-family: var(--font-body);
	font-weight: bold;
	color: var(--white);
	line-height: 1.23;
}

.blog-marquee .content-section .info-item {
	list-style-type: none;
	color: var(--green-light);
	font-size: 0.625rem;
	text-transform: uppercase;
	font-family: var(--font-body);
	border: 2px solid var(--green-light);
	padding: 2px 12px;
	letter-spacing: 0.013rem;
	max-width: fit-content;
	margin-bottom: 10px;
	transition: all ease 0.3s;
	cursor: pointer;
}

.blog-marquee .content-section .info-item i {
	margin-right: 4px;
}

.blog-marquee .content-section .info-item i,
.blog-marquee .content-section .info-item span {
	position: relative;
	top: 2px;
}

.blog-marquee .slides {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2px;
	margin-bottom: 16px;
}

.blog-marquee .template-footer {
	display: flex;
	justify-content: center;
}

.blog-marquee .template-footer a.view-all {
	padding: 14px 32px;
}

.blog-marquee .template-header {
	text-align: center;
}

.blog-marquee .template-header .title-small {
	font-size: 0.938rem;
	color: var(--gray-dark);
	font-family: var(--font-body);
	font-weight: bold;
	line-height: 2;
	margin-bottom: 7px;
}

.blog-marquee .template-header .title-large {
	font-size: 4.688rem;
	color: var(--green);
	font-family: var(--font-body);
	font-weight: bold;
	text-transform: uppercase;
	line-height: 0.8;
}


@media(min-width:40em) {
	.blog-marquee .slides {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.blog-marquee .slides .slide-1 {
		grid-row: span 2;
		grid-column: span 2;
	}

	.blog-marquee .slides .slide-2,
	.blog-marquee .slides .slide-3 {
		grid-row: span 1;
		grid-column: span 1;
	}

	.blog-marquee .template-header {
		text-align: left;
		padding-left: 30px;
	}

	.blog-marquee .template-footer {
		justify-content: flex-start;
		padding-left: 30px;
	}
}

@media(min-width: 64em) {
	.blog-marquee {
		margin-bottom: 55px;
	}

	.blog-marquee .slides {
		grid-template-columns: 44.5% 54.5%;
		margin-bottom: 0;
	}

	.blog-marquee .slides .slide-1,
	.blog-marquee .slides .slide-2,
	.blog-marquee .slides .slide-3 {
		grid-column: span 1;
	}

	.blog-marquee .slides .slide-1 {
		height: 72%;
		align-self: end;
		margin-bottom: 87px;
	}

	.blog-marquee .slides .slide-2 {
		max-width: calc(100% - 60px);
	}

	.blog-marquee .template-header {
		max-width: 40%;
		padding-left: 60px;
		margin-bottom: -68px
	}

	.blog-marquee .template-footer {
		transform: translateY(-67px);
		padding-left: 60px;
		pointer-events: none;
	}

	.blog-marquee .template-footer a.view-all {
		pointer-events: all;
	}

	.blog-marquee .template-header .title-small {
		font-size: 1.438rem;
	}

	.blog-marquee .template-header .title-large {
		font-size: 6.563rem;
	}

	.blog-marquee .slide .content-section {
		left: 24px;
		bottom: 23px;
	}

	.blog-marquee .slide .slide-title {
		font-size: 2.25rem;
	}

	.blog-marquee .slide .info-item {
		font-size: 0.75rem;
		transition: background-color 300ms ease-out, color 300ms ease-out, border 300ms ease-out;
	}

	.blog-marquee .slide img {
		transform-origin: center;
		transition: transform 300ms ease-out;
	}

	.blog-marquee .slide .img-cont {
		position: relative;
		overflow: hidden;
	}

	@media(hover:hover) {
		.blog-marquee .slide:hover .info-item {
			background-color: var(--green-light);
			color: var(--green);
			border: 2px solid var(--green-light);
		}
	
		.blog-marquee .slide:hover .img-cont img {
			transform: scale(1.1);
		}
	}
}

@media(min-width:90em) {
	.blog-marquee {
		max-width: 1440px;
		margin: 0 auto 55px;
	}

	.blog-marquee .template-header {
		margin-bottom: -125px;
	}
}