/*------------------------------------*\
    
    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;
	text-transform: capitalize;
}


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

.expand--less,
.fx-untruncated .expand--more {
	display: none;
}

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

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

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


.expand {
    font-weight: 700;
	color: var(--charcoal);
	opacity: 0.6;
}

.fx-untruncated .image-text-mobile-link,
.ddd-truncated .image-text-read-more-link {
	display: none;
}

.read-more__box--single {
	max-height: 351px;
}

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

	.read-more__box--single {
		max-height: 192px;
	}
}

@media (min-width: 1200px) {
	.expand:hover {
		opacity: 1;
	}

}