/* ============================================================ DETAILS / SUMMARY — Base styling for
/. Root: element selectors ============================================================ */ details > summary { cursor: pointer; list-style: none; } details > summary::-webkit-details-marker { display: none; } details { padding: var(--space-s); } summary { font-family: var(--font-display); font-weight: 600; text-decoration: none; color: var(--accent-secondary); transition: color 0.15s; svg { fill: var(--accent-secondary); vertical-align: text-bottom; height: 1.4em; } } summary:hover { color: var(--accent-primary); }