.collection-slider-bottom-content-cont {
	position: relative;
	width: 100%;
	padding: 1rem 0;
}

.collection-slider-bottom-content-cont.event-feed {
	background-color: var(--spring-blue-dimmed);
}

.collection-slider-bottom-content-cont .slider-title h4 {
	position: relative;
	width: fit-content;
	left: 9%;
	top: -1rem;
	font-weight: 600;
	font-size: 1.3rem;
	font-family: futura-pt, sans-serif;
	letter-spacing: .2rem;
	text-transform: uppercase;
	width: 90%;
}

.collection-slider-bottom-content {
	width: 90%;
	margin: 0 auto;
}

.collection-slider-bottom-content.has-view-all-link {
	display: grid;
	grid-template-columns: 50% 50%;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link {
	position: relative;
	display: none;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link.loaded {
	display: flex;
	justify-content: center;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link {
	position: relative;
	width: 100%;
	background-color: red;
	color: var(--corporate-dark-gray);
	background-image: url(/includes/public/assets/shared/orange-breeze-block.svg);
	background-repeat: repeat;
	background-position: left center;
	background-size: 18%;
	margin: 0 auto;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link a {
	position: absolute !important;
	bottom: 6%;
	display: flex;
	align-items: flex-end;
	font-size: 1.2rem;
	letter-spacing: .1rem;
	text-transform: uppercase;
	height: fit-content;
	width: 95%;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link .text {
	color: var(--corporate-dark-gray);
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: .3rem;
	margin-left: 10%;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link .text .inner:last-child {
	white-space: nowrap;
}

.collection-slider-bottom-content.has-view-all-link .view-all-link .text .inner:last-child:after {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: -3px;
}

.collection-slider {
	position: relative;
	width: 100%;
}

.collection-slider .slider-cont {
	margin: 0 auto;
}

.collection-slider .slick-slider:not(.slick-initialized) {
	max-height: 400px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
}

.collection-slider .arrow-cont {
	display: flex;
	justify-content: center;
	position: relative;
	pointer-events: none;
	width: 100%;
	margin-top: 1rem;
}

.collection-slider-bottom-content.has-view-all-link .collection-slider .arrow-cont {
	left: 49%;
}

.collection-slider .arrow-cont .arrow-inner {
	font-size: 1.3rem;
}

.collection-slider .arrow-cont .slick-hidden + .count {
	display: none;
}

.collection-slider .arrow-cont > .inner {
	display: flex;
	gap: 1rem;
}

.collection-slider .count {
	font-family: century-gothic, sans-serif;
	color: #008c98;
	font-weight: 800;
	font-size: 1.2rem;
	padding-top: 1px;
	padding-left: 16px;
	padding-right: 16px;
}

.collection-slider .arrow-cont .custom-arrow {
	width: 30px;
	height: 36px;
	padding: 0;
	margin: 0;
	pointer-events: all;
	background: transparent;
	border: .2rem solid var(--corporate-teal);
	color: var(--corporate-teal);
}

.collection-slider .arrow-cont .custom-arrow.prev i {
	transform: translateX(-1px)
}

.collection-slider .arrow-cont .custom-arrow.next i {
	transform: translateX(1px)
}

.collection-slider .slide {
	margin: 0 .5rem;
}

.collection-slider .slide > .inner {
	position: relative;
}

.collection-slider .slide .content-section {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin-top: .5rem;
	color: var(--corporate-dark-gray);
}

.collection-slider .slide .content-section :is(.date, .blog-cat, .time-to-read) {
	font-size: .9rem;
	font-family: futura-pt, sans-serif;
	margin: 0;
}

.collection-slider .slide :is(.title, .description) {
	font-size: 1.2rem;
	line-height: 1.6rem;
	font-weight: 600;
	font-family: futura-pt, sans-serif;
	width: 90%;
	margin: 0;
}

.collection-slider .slide :is(.blog-cat, .time-to-read) {
	color: var(--primary-dark-blue);
	font-weight: 500;
}

.collection-slider .slide .time-to-read {
	
	
}

.collection-slider .slide .description {

}

.collection-slider .slide .read-more {
	color: #1563af;
}

.collection-slider .slide.overlap-image .img-cont {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	max-height: 250px;
}

.collection-slider .slide.overlap-image .img-cont::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to collection-slider-bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
	pointer-events: none;
}

.collection-slider .slide.overlap-image .img-cont::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 140, 152, 0.7);
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms;
}

.collection-slider .teal.slide.overlap-image .img-cont::before {
	opacity: 1;
	transition: opacity 200ms;
}

.collection-slider .slide img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@media (min-width: 40em) {
	.collection-slider-bottom-content {
		width: 85%;
	}

	.collection-slider-bottom-content.has-view-all-link .view-all-link .text {
		display: flex;
		margin-left: auto;
		position: relative;
		color: var(--corporate-dark-gray);
	}

	.collection-slider-bottom-content.has-view-all-link {
		grid-template-columns: 66% 1fr;
	}

	.collection-slider .arrow-cont {
		gap: .8rem;
	}

	.collection-slider .arrow-cont .custom-arrow {
		top: 25%;
	}
	.collection-slider .count {
		transform: translateY(10px)
	}
	.collection-slider .slide {
		margin: 0 .2rem;
	}

	.collection-slider .arrow-cont {
		display: flex;
		justify-content: center;
		position: relative;
		pointer-events: none;
		width: 100%;
	}

	.collection-slider-bottom-content.has-view-all-link .collection-slider .arrow-cont {
		left: 30%;
	}

	.collection-slider .slide :is(.title, .description) {
		width: 100%;
	}
}

@media (min-width: 64em) {
	.collection-slider-bottom-content.has-view-all-link {
		gap: .3rem;
	}

	.collection-slider-bottom-content.has-view-all-link {
		grid-template-columns: 75% 1fr;
	}

	.collection-slider .slide {
		transform: translateX(0);
	}
	.collection-slider .arrow-cont {
		display: flex;
		pointer-events: none;
		position: absolute;
		top: -26%;
		left: 91%;
		width: 8%;
		justify-content: center;
		margin-top: 0;
	}

	.collection-slider-bottom-content.has-view-all-link .collection-slider .arrow-cont {
		left: 125%;
	}

	.collection-slider .arrow-cont > .inner {
		display: flex;
		gap: .8rem;
		justify-content: space-between;
		width: 95%;
	}
	.collection-slider .arrow-cont .custom-arrow {
		margin: 0 !important;
		pointer-events: all;
		background: transparent;
		border: 2px solid var(--corporate-teal);
		color: var(--corporate-teal);
	}
	.collection-slider .count {
		display: none;
	}
	.collection-slider .arrow-cont.contained .custom-arrow {
		top: 50%;
	}
}