.readmore-visual {
    position: relative;
    transition: max-height 0.2s ease;
}

.readmore-visual.readmore-collapsed {
    max-height: var(--readmore-collapsed-height, 96px);
    overflow: hidden;
}

.readmore-visual.readmore-collapsed::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 52px;
    pointer-events: none;
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.readmore-visual-toggle {
    display: inline-flex;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #e67e23;
    font: inherit;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.readmore-visual-toggle:hover,
.readmore-visual-toggle:focus {
    color: #e68500;
    text-decoration: underline;
}

