@layer usertext {
    .usertext {
        ul {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            & + p {
                margin-top: 1rem;
            }
            li {
                padding-left: 1rem;
                position: relative;
                p {
                    margin: 0;
                }
                &::before {
                    content: "";
                    display: block;
                    position: absolute;
                    left: 0;
                    top: 0.4em;
                    width: 0.6rem;
                    height: 0.6rem;
                    flex-shrink: 0;
                    background: url('/assets/icons/012_023_play_start.svg') no-repeat center center;
                    background-size: 100%;
                    
                    
                }
                ul {
                    padding-left: 1rem;
                    padding-top: 0.5rem;
                    li::before {
                        background-image: url('/assets/icons/012_037_arrow_right.svg');
                    }
                }
            }
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            th, td {
                padding: 0.2rem 0;
                vertical-align: top;
            }
            td:first-child {
                font-weight: 600;
                display: flex;
                align-items: flex-start;
                gap: 0.5rem;
                &:not(:empty)::before {
                    content: "";
                    display: inline-block;
                    width: 0.6rem;
                    height: 0.6rem;
                    flex-shrink: 0;
                    background: url('/assets/icons/012_023_play_start.svg') no-repeat center center;
                    background-size: 100%;
                    position: relative;
                    top: 0.5em;
                    
                }
            }
        }
        & > p {
            margin-bottom: 0.5rem;
            & > strong {
                font-weight: 700;
                font-size: var(--fontsize-h3);
            }
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 1rem auto;
        }
        a {
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 0.3em;
            &::after {
                content: "";
                display: inline-block;
                width: 1.1rem;
                height: 1.1rem;
                background: url('/assets/icons/006_061_link_connection_url.svg') no-repeat center center;
                background-size: 100%;
                position: relative;
                margin-left: 0.2em;
                position: relative;
                top: 0.2em;
            }
        }
    }
}