.content-text {
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
.content-text--toggle {
    position: relative;
}
.content-text--type-2 {
    color: #fff;
}
.content-text--type-3 {
    color: #969492;
}
.content-text--type-3 b,
.content-text--type-3 strong {
    color: #302e2c;
}
.content-columns--columns-have-white-bg .content-columns__col > .content-text {
    padding: 20px;
}
/* @see .content-headline, same rule applied */
.content-columns__col.col-sm-8 .content-text {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
}
.content-text--align-center {
    max-width: 45em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.content-text__toggle-content {
    height: 220px;
}
.content-text__toggle-content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* make sure to include toggle btn height and white space */
    height: 60px;
    /* color stop must equal toggle btn height */
    background: linear-gradient(0deg, #fff 40px, rgba(0,0,0,0) 100%);
    transition: opacity .3s;
    will-change: opacity;
}
.content-row--bg-design-1 .content-text__toggle-content::after {
    background: linear-gradient(0deg, #f2f2f2 40px, rgba(0,0,0,0) 100%);
}
.content-text__toggle-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: -10px;
    padding: 10px;
    font-weight: 700;
    border: 0;
    background: none;
    color: #f96915;
    transition: opacity .3s;
    cursor: pointer;
}
.content-text__toggle-btn--indented {
    left: 15px;
}
.content-text--toggle-is-open .content-text__toggle-content::after,
.content-text--toggle-is-open .content-text__toggle-btn {
    opacity: 0;
    pointer-events: none;
}

@media ( min-width: 992px ) {
    .content-columns--columns-have-white-bg .content-columns__col > .content-text {
        padding: 30px;
    }
    .content-text__toggle-content {
        height: 260px;
    }
}
@media ( min-width: 1200px ) {
    .content-text__toggle-content {
        height: 300px;
    }
}
