/* Post Excerpt
--------------------------------------------- */

div[class*="is-style-excerpt-truncate-"],
div[class*="is-style-excerpt-truncate-"] .wp-block-post-excerpt__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.is-style-excerpt-truncate-2,
.is-style-excerpt-truncate-2 .wp-block-post-excerpt__excerpt {
	-webkit-line-clamp: 2;
	line-clamp: 2;
}
.is-style-excerpt-truncate-3,
.is-style-excerpt-truncate-3 .wp-block-post-excerpt__excerpt {
	-webkit-line-clamp: 3;
	line-clamp: 3;
}
.is-style-excerpt-truncate-4,
.is-style-excerpt-truncate-4 .wp-block-post-excerpt__excerpt {
	-webkit-line-clamp: 4;
	line-clamp: 4;
}

.wp-block-post-excerpt {
  display: flex !important;
  flex-direction: column;
  gap: var(--wp--preset--spacing--small);
}
.wp-block-post-excerpt > p { margin: 0 !important; }

.wp-block-post-excerpt .wp-block-post-excerpt__more-link {
	background-color: transparent;
	color: var(--wp--preset--color--dark-navy);
	outline: none;
	font-size: 15px;
	font-weight: 400;
	line-height: 13px;
  text-transform: uppercase;
	padding: 0;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
  transition: all 0.2s ease-in-out;
}
.wp-block-post-excerpt .wp-block-post-excerpt__more-link:hover {
	transform: translateY(-3px);
	color: var(--wp--preset--color--primary);
  text-decoration: none;
}
.wp-block-post-excerpt .wp-block-post-excerpt__more-link::after {
	content: '';
	display: inline-block;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none"><rect width="19" height="19" rx="8.5" fill="%23004FC8"/><path d="M12.7007 5.58826C13.0935 5.58826 13.4119 5.90669 13.4119 6.29949V11.2781C13.4119 11.6709 13.0935 11.9893 12.7007 11.9893C12.3079 11.9893 11.9894 11.6709 11.9894 11.2781V8.01644L6.80247 13.2034C6.52472 13.4812 6.0745 13.4812 5.79675 13.2034C5.51899 12.9257 5.51899 12.4754 5.79675 12.1977L10.9837 7.01072H7.72207C7.32927 7.01072 7.01084 6.69229 7.01084 6.29949C7.01084 5.90669 7.32927 5.58826 7.72207 5.58826H12.7007Z" fill="white"/></svg>');
	background-repeat: no-repeat;
	background-size: 19px;
	width: 19px;
	height: 19px;
}