/* ====== Header + Hero ====== */
.insights-article {
	max-width: 985px;
	margin: 0 auto;
}

.insights-cat {
	text-align: center;
	margin-bottom: 10px;
	color: var(--color-link-hover);
	font-weight: 600;
}

.insights-cat a {
	text-decoration: none;
}

.insights-title {
	text-align: center;
	margin: 0 0 44px;
}

.insights-featured {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
}

.insights-featured-img {
	display: block;
	width: 100%;
	height: auto;
}

/* ====== Content ====== */
.insights-content {
	padding-top: 24px;
}

.insights-content p {
	margin-bottom: 24px;
}

.insights-article h5 strong {
	font-weight: 600;
}

.insights-article h5 {
	margin-bottom: 8px;
	margin-top: 44px;
}

.insights-article p a {
	text-decoration: underline;
	color: var(--color-link-hover);
}

.insights-article p a:hover {
	color: var(--color-button-background-hover);
}

/* ====== Back ====== */
.insights-article .back {
	margin-top: 54px;
}

/* ====== Latest Articles ====== */
.insights-latest {
	margin-top: 150px;
}

.insights-latest-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.insights-latest-title {
	font-size: 35px;
	line-height: normal;
	margin-bottom: 44px;
	font-weight: 400;
	font-family: var(--font-heading);
}

.insights-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.insights-card a:hover, .insights-card a:focus-visible {
	color: var(--color-body);
}

.insights-card a:hover h5, .insights-card a:focus-visible h5 {
	color: var(--color-link-hover);
}

.insights-card-media {
	display: block;
	aspect-ratio: 16/8.74;
	overflow: hidden;
	border-radius: 10px;
}

.insights-card-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.insights-card-img.is-placeholder {
	width: 100%;
	height: 100%;
}

.insights-card-body {
	padding: 24px 0 16px;
}

.insights-card-cat {
	margin-bottom: 8px;
	color: var(--color-link-hover);
	font-size: 14px;
	font-weight: 600;
}

.insights-card-title {
	margin-bottom: 11px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.insights-card-excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
	.insights-cards {
		grid-template-columns: 1fr;
	}

	.insights-latest-head {
		align-items: center;
	}
}

@media (max-width: 767px) {
	.insights-card-media {
		aspect-ratio: 16 / 8.66;
	}

	.insights-latest-title {
		font-size: 25px;
		margin-bottom: 48px;
	}

	.insights-detail {
		padding-top: 48px;
		padding-bottom: 0;
	}

	.insights-title {
		margin-bottom: 28px;
	}

	.insights-content {
		padding-top: 28px;
	}

	.insights-content h5 {
		margin-top: 40px;
	}

	.insights-content h5 {
		margin-bottom: 8px;
	}

	.insights-back {
		margin-top: 60px;
	}

	.insights-latest {
		margin-top: 80px;
	}

	.insights-cards {
		gap: 32px 20px;
	}

	.insights-card-body {
		padding-top: 16px;
	}

	.insights-card-cat {
		line-height: normal;
	}

	.insights-card-title {
		font-size: 18px;
		margin-bottom: 16px;
        height: auto !important;
	}

	.insights-card-excerpt {
		font-size: 14px;
		line-height: normal;
	}

	.view-all.hidden-desktop {
		display: inline-block;
		margin-top: 32px;
	}

	.insights-cat {
		margin-bottom: 16px;
	}

	.insights-article .back {
		margin-top: 34px;
	}

	.insights-featured {
		border-radius: 8px;
	}

	.insights-card-media {
		border-radius: 8px;
	}

	.single #content {
		margin-top: 101px;
	}
}