/* Expandable "Continue Reading" content component.
   Core show/hide + label swap live in /styles/common/tools/expandable-content.css.
   This file only styles the toggle affordance and spacing for the v1 variation. */

.xpnd-cmp.v1 {

    .rd-mr {
        cursor: pointer;
        width: fit-content;
        margin-top: 20px;
        font: inherit;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Give the panel room once it is revealed. The base .xpnd rule animates
       height/padding/margin, so keep the resting padding on the top only. */
    .xpnd[aria-hidden="false"] {
        padding-top: 20px;
    }
}
