/*------------------------------------*\
    
    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

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

.read-more__content {
	position: relative;
}

.expand {
	border: none;
	position: relative;
    display: none;
}

.ddd-truncated .expand,
.fx-untruncated .expand {
	display: inline-block;
}

.ddd-truncated .expand--less,
.expand--more {
	display: none;
}

.ddd-truncated .expand--more {
	display: inline;
}


 /* Uncomment if you set  config.watch to "watch" */

.read-more__box {
    max-height: 575px; /*Set the max-height to your preferred height */
    transition: max-height 0.3s ease;
}

.fx-untruncated {
    max-height: none;
    transition: max-height 0.3s ease;
} 
