.infoTarget {
    max-height: 19.4em;
    overflow: hidden;

    p {
        margin-bottom: 23px;
    }
}

.infoTargetCheck:checked ~ .infoTarget {
    max-height: 2000px;
    display: inline-block;

    &::after {
        display: none;
    }
}

.js-toggle-label:before {
    display: inline-block;
    content: attr(data-show);
}

.infoTargetCheck:checked + .js-toggle-label::before {
    content: attr(data-hide);
}

.xs-only-line-clamp-3 {
    @media (max-width: $sm) {
        /* autoprefixer: off */
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}
