/**handles:bluebeechild-read-more**/
@media (max-width: 1365px) {
    .wp-block-buttons {
        &.is-content-justification-right {
            justify-content: flex-start !important;
        }
    }
}

.wp-block-read-more {
    &.is-style-line-feature {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: transparent !important;
        padding: 0 !important;
        transition: all 0.5s;

        &:before,
        &:after {
            content: "";
            width: 0px;
            height: 1px;
            background-color: currentColor;
            transition: all 0.5s;
        }

        &:before {
            width: 35px;
            margin-right: 15px;
        }

        &:after {
            width: 0;
            margin-left: 0;
        }

        &:hover {
            background-color: transparent !important;

            &:before {
                width: 0;
                margin-right: 0;
            }

            &:after {
                width: 35px;
                margin-left: 15px;
            }
        }

        &.has-transparent-background-color {
            border: 0px !important;
            
            &:hover {
                background-color: transparent !important;
                border: 0px !important;
            }
        }
    } 
}