.nojs-readmore-wrap {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
}

.nojs-readmore-wrap p {
    font-size: 1rem;
}

/* Hide checkbox completely */
.nojs-readmore-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Collapsed state */
.nojs-readmore-preview {
    display: block;
}

.nojs-readmore-full {
    display: none;
}

/* Expanded state */
.nojs-readmore-toggle:checked ~ .nojs-readmore-preview {
    display: none;
}

.nojs-readmore-toggle:checked ~ .nojs-readmore-full {
    display: block;
}

/* Toggle label styling */
.nojs-readmore-label {
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
    user-select: none;
}

/* Remove bottom margin of the last paragraph inside content containers */
.nojs-readmore-preview p:last-child,
.nojs-readmore-full p:last-child {
    margin-bottom: 0 !important;
}

/* Alignments */
.nojs-readmore-align-container {
    width: 100%;
}
.nojs-readmore-align-center {
    text-align: center;
}
.nojs-readmore-align-left {
    text-align: left;
}
.nojs-readmore-align-right {
    text-align: right;
}

/* Button text swapping using content attribute */
.nojs-readmore-label::before {
    content: attr(data-more);
}

.nojs-readmore-toggle:checked ~ .nojs-readmore-label::before {
    content: attr(data-less);
}
