main {
    details {
        margin-bottom: 8px;
        summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            list-style: none;
            padding: 8px;
            background-color: #4b070806;
            h2 {
                font-size: 20px;
                font-weight: bold;
            }
            &::-webkit-details-marker {
            display: none;
            }
        }
        p {
            padding: 8px;
            border: 1px solid #0002;
        }
    }
    details[open] img {
        rotate: 180deg;
    }
}