/*------------------------------------*\
    
    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;
	margin-top: 5px;
    background: none;
    font-family: 'gothambold';
    font-weight: normal;
    padding-right: 16px;
    display: inline-block;
    color: var(--blue);
    font-size: 15px;
    line-height: 1em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-color: var(--link-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 14%;
    padding-left: 0;
}

.expand::after {
    content: '\e921';
    font-family: 'zimmerman-icons';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 10px;
}

.read-more__content .expand {
	display: none;
}

.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: 356px;
}

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

.fx-untruncated .expand::after {
    content: '\e924';
}

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

    .expand {
        font-size: 16px;
    }
}

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

    .expand {
        font-size: 18px;
    }
}



