.elblocks-readmore__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.elblocks-readmore__actions {
    display: flex;
    margin-top: .75rem;
}

.elblocks-readmore__btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.elblocks-readmore__fade {
    position: relative;
    --elrm-fade-height: 72px; /* fallback */
}

.elblocks-readmore__fade::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--elrm-fade-height);
    pointer-events: none;
    opacity: 1;
    transition: opacity .2s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.elblocks-readmore.is-open .elblocks-readmore__fade::after {
    opacity: 0;
}

/* NO-JS: show full content and hide toggle button/fade */
body.no-js .elblocks-readmore__content {
    max-height: none !important;
    overflow: visible !important;
}

body.no-js .elblocks-readmore__actions {
    display: none !important;
}

body.no-js .elblocks-readmore__fade::after {
    display: none !important;
}

.elblocks-readmore__content {
    color: #002848;
}

.elblocks-readmore__content h2 {
    color: #002848;
}

@media (max-width: 767px) {
    .elblocks-readmore__content h2 {
        font-size: 30px;
        line-height: 1.1em;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .elblocks-readmore__content h2 {
        font-size: 32px;
        line-height: 1.07em;
    }
}

@media (min-width: 1025px) {
    .elblocks-readmore__content h2 {
        font-size: 38px;
        line-height: 1.07em;
    }
}