.highlights .slide > .inner {
	display: flex;
	flex-direction: column;
}

/* Content Section */
.highlights .slide .content-section > .inner {
	padding: 0 13px;
}

.highlights .slide .content-section .content-top {
	margin-bottom: 16px;
}

.highlights .slide .content-section .slide-footer {
	display: inline-block;
}

.highlights .slide .content-section .content-top p {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: var(--tracking-normal);
	color: var(--dark-blue);
	font-weight: 400;
}

.highlights .slide .content-section .slide-footer .read-more {
	color: var(--dark-blue);
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 0.9px;
	font-weight: 700;
	margin-top: var(--space-4);
}

.highlights .slide .content-section .slide-footer .read-more .more-dash {
	display: inline-block;
	transform: translateY(-2px) scaleX(0.8);
	transition: transform 200ms ease-in-out, margin 200ms ease-in-out;
	font-weight: 400;
}

.highlights .slide .content-section .slide-footer .read-more::after {
	content: " ";
	background-color: var(--dark-blue);
	height: 6px;
	width: 6px;
	border-radius: 50%;
	display: inline-block;
	transform: translate(-8px, -3px);
	transition: transform 200ms ease-in-out;
	opacity: 0;
}

/* Image content */
.highlights .inner .slide-top {
	margin-bottom: 28px;
}

.highlights .img-cont .credits {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: var(--tracking-normal);
	text-shadow: none;
	background-color: #273443cc;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	padding: 1px 8px;
	display: flex;
}

.highlights .img-cont .credits::before {
	content: "\f030";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-weight: 700;
	margin-right: 10px;
	width: 12px;
	height: 13px;
}


@media (min-width: 64em) {
	.highlights .inner .slide-top {
		margin-bottom: 0;
	}

	.highlights .slide > .inner {
		display: grid;
		grid-template-columns: repeat(2, minmax(auto, 540px));
		gap: 80px;
	}

	.highlights .inner > .slide-top {
		grid-column: 2 / span 1;
		grid-row: 1;
	}

	.highlights .inner > .content-section {
		grid-column: 1 / span 1;
		grid-row: 1;
	}

	.highlights .slide .content-section .content-top {
		margin-bottom: 26px;
	}

	.highlights .slide .content-section .content-top p {
		font-size: 20px;
		line-height: 30px;
	}
}

@media (hover: hover) {
	.highlights .slide .content-section .slide-footer .read-more:hover .more-dash {
		transform: translateY(-2px) scaleX(2);
		margin-left: 10px;
	}
	
	.highlights .slide .content-section .slide-footer .read-more:hover::after {
		transform: translate(-2px, -3px);
		opacity: 1;
	}
}
