Parent [>]
1h1, h2, h3, h4, h5, h6 {
2    color: var(--heading);
3    font-weight: 600;
4}
5
6strong {
7    font-weight: 600;
8}
9
10h1 {
11    font-size: 24px;
12    line-height: 1.2;
13    margin: 0 0 20px;
14}
15
16h2 {
17    font-size: 20px;
18    line-height: 1.3;
19    margin: 48px 0 8px;
20}
21
22h3 {
23    font-size: 18px;
24    line-height: 1.3;
25    margin: 40px 0 8px;
26}
27
28h4, h5, h6 {
29    margin: 32px 0 8px;
30}
31
32small {
33    font-size: 14px;
34    line-height: 1.4;
35}
36
37a {
38    color: var(--link);
39    text-decoration: underline;
40    text-decoration-color: color-mix(in srgb, var(--link) 35%, transparent);
41    text-underline-offset: 0.15em;
42    transition: text-decoration-color 0.15s;
43}
44
45a:hover {
46    text-decoration-color: var(--link);
47}
48
49p {
50    margin: 20px 0;
51    text-align: justify;
52    text-justify: inter-word;
53    text-wrap: pretty;
54    hyphens: auto;
55    overflow-wrap: break-word;
56    hyphenate-limit-chars: 6 3 3;
57    hyphenate-limit-lines: 2;
58}
59
60ul {
61    margin: 20px 0;
62    padding-left: 1.5em;
63}
64
65li + li {
66    margin-top: 8px;
67}
68
69li::marker {
70    color: var(--color-base1);
71}