JSFiddle - React, Tailwind, and code Playground

HTML

<details open>
        <summary>1. This is a really long long long summary This is a really long long long summary This is a really long long long summary This is a really long long long summary This is a really long long long summary This is a really long long long summary This is a really long long long summary This is a really long long long summary ? </summary>
        
        <p>This is the desc.</p>
    </details>

CSS

summary {
        display: block; 
        outline: none;
        margin-bottom: 20px; 
        font-weight: bolder; 

    }

    details[open] summary {
        margin-bottom: 10px; 
    }
        
    details summary::-webkit-details-marker {
        color: #CC3333;



    }