/*------------------------------------*\
    
    Hide/Show Text Area - Global styling for all hide/show text

    This method is CSS heavy and light on JS, which is important for good SEO and CWV results
    Find the code snippet here: https://webfxcodelibrary.webpagefxstage.com/#intermediate_cssshowhidetext

\*------------------------------------*/

/* if you are having issues with clamping in safari, see this fix: https://app.getguru.com/card/c48ay5ri/CSS-lineclamp-in-latest-Safari- */



.read-more__content {
	position: relative;
}

.expand {
	border: none;
	position: relative;
	background: transparent;
	padding: 0;
}

.read-more__content.ddd-truncated .expand {
	display: inline-block;
}

.fx-untruncated .mobile-link {
	display: none;
}

.fx-untruncated .expand--less {
	display: inline;
}

.fx-untruncated .read-more-link {
	display: inline;
}

.read-more__box {
	max-height: 260px;
	margin-bottom: 16px;
}

.read-more__box.fx-untruncated {
	max-height: 100% !important;
}

.read-more-link {
	display: none;
}

.expand {
    font-weight: 700;
	color: --color-text-body;
	font-size: 16px;
	text-transform: capitalize;
}

@media(min-width: 768px) {
	.read-more__box {
		max-height: 182px;
	}

}

@media (min-width: 1200px) {
	.read-more__box {
		max-height: 216px;
	}

}