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

    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 {
	display: inline-block;
	border: none;
	position: relative;
	padding-bottom: 0;
	background: none;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.625em;
	position: absolute;
	bottom: 0;
	left: 0;
}

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

.expand.is-expanded::before {
    display: none;
}

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

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

.read-more__box {
	position: relative;
	max-height: 160px;
	margin-bottom: 16px;
}

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

.read-more__wrapper p:empty {
  	display: none;
}

.read-more__wrapper {
  	padding-bottom: 10px;
}


@media (min-width: 768px) {
	.read-more__box {
		margin-bottom: 30px;
	}

	.expand {
		font-size: 18px;
		line-height: 1.666em;
	}
}

@media (min-width: 1200px) {
	.expand {
		font-size: 20px;
		line-height: 1.6em;
	}

	.expand:hover {
		color: #BA1738
	}
}
/* 
p + .read-more__box.ddd-truncated  p{
	display: none;
} */