.product-showcase__description-wrapper {
	position: relative;
	padding-bottom: 6px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.products.products--showcase {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-showcase-block ul.products li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-showcase-block .woocommerce-loop-product__title {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 3.2em; /* roughly two lines */
	margin-bottom: 8px;
}

.product-showcase-block .content-inside-loop-product {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.product-showcase-block .star-rating,
.product-showcase-block .price {
	column-gap: 5px !important;
	display: flex !important;
    justify-content: flex-end !important;
	display: block;
}

.product-showcase-block .product-showcase-cta {
	display: inline-block;
	margin-top: auto !important;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 24px;
	text-decoration: none;
	background-color: var(--accentColor) !important;
	color: var(--textColorLight) !important;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	width: auto;
	max-width: fit-content;
}

.product-showcase__description {
	margin: 8px 0 10px;
	display: block;
	word-break: break-word;
	overflow-wrap: anywhere;
	max-height: 3em;
	overflow: hidden;
	position: relative;
	transition: max-height 0.25s ease;
}

.product-showcase__description-wrapper.is-collapsible::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	height: 40px;
	background: linear-gradient(transparent, #fff);
	pointer-events: none;
}

.product-showcase__description-wrapper.is-expanded .product-showcase__description {
	max-height: none;
}

.product-showcase__description-wrapper.is-expanded::after {
	display: none;
}

.product-showcase__toggle {
	align-self: flex-start;
	margin: 0;
	border: none;
	background: none;
	color: var(--accentColor, #007cba);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.05em;
	padding: 4px 8px;
	cursor: pointer;
	width: auto;
	max-width: fit-content;
}

.product-showcase-block__description {
	margin-bottom: 16px;
}

