.expandable-text {
	max-height: 120px;
	overflow: hidden;
	position: relative;
	transition: max-height 0.5s ease;
}

.expandable-text::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(to top, #fff, transparent);
	pointer-events: none;
}

.expandable-text.active {
	max-height: none;
}

.expandable-text.active::after {
	display: none;
}

.read-more-link {
	display: inline-block;
	margin-top: 8px;
	color: #f5683c;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
}

.read-more-link:hover,
.read-more-link:active {
	text-decoration: none;
	color: #f5683c;
}
