Jake Vanderwerf
2025-09-30 346a537e6474aad3830f325b38a67c90634d3fd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
/* Main Navigation css */
nav.fixed {
    position: fixed;
    width: var(--navHeight)!important;
    height: var(--navHeight)!important;
    bottom:0;
    right: 0;
}
 
  header:first-of-type {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      height: var(--navHeight);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 .5rem 0 2rem;
      background-color: var(--blacker);
      z-index: 999;
      box-shadow: rgba(19, 20, 22, 0.45) 0 0 16px;
  }
  header:first-of-type nav ul {
      background-color: var(--blacker);
  }
    header:first-of-type nav ul a {
        height: var(--navHeight);
    }
  @media (min-width: 768px){
      .admin-bar header:first-of-type {
          top: 30px;
      }
  }
 
  header:first-of-type .title {
      margin: 0;
      font-family: var(--heading);
      font-weight: 400;
      width: 100%;
      font-size: var(--small);
      color: var(--light-0);
  }
  header:first-of-type a {
      text-decoration: none;
      text-transform: lowercase;
      color: var(--light-0);
      padding: 0 1rem;
      font-size: var(--small);
      transition: color var(--timing) var(--function);
  }
  header:first-of-type .title a {
      font-size: var(--small);
  }
 
  header:first-of-type .title a:hover {
      color: var(--pink);
      transition: color var(--timing) var(--function);
  }
  nav {
      position: relative;
      height: fit-content;
  }
  nav ul {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0;
  }
  nav li {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
  }
  nav .has-submenu li a,
  nav .has-submenu li {
      width: 100%;
  }
  nav > ul {
      justify-content: flex-end;
  }
  nav a {
      padding: 0 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      transition: all var(--timing) var(--function);
  }
  nav .has-submenu > a {
      padding-right: .5rem;
  }
 
  nav a:hover {
      background-color: var(--pink);
      color: var(--light-0);
      transition: all var(--timing) var(--function);
  }
  nav.term-list a:hover {
      color: var(--pink);
  }
  nav.is-style-condensed a {
      border-bottom: .25rem solid transparent;
  }
  nav .current > a {
      border-bottom: .25rem solid var(--pink);
  }
  nav.fixed .current {
      border-color: var(--pink);
      background-color: rgba(183, 51, 46,.5);
  }
    nav.fixed .current a {
        border-bottom: none;
    }
  .has-submenu button.toggle {
      height: var(--navHeight);
      width: var(--navHeight);
      border: 4px solid var(--blacker);
      background-color: var(--blacker);
      color: var(--light-0);
  }
  .has-submenu button.toggle:hover {
      background-color: var(--pink);
      color: var(--blacker);
  }
  .has-submenu.open button.toggle,
  .has-submenu:hover button.toggle {
      border-color: var(--pink);
  }
  nav button.toggle svg {
      transform: rotate(0deg);
      transition: all var(--timing) var(--function);
  }
  .has-submenu.open button.toggle.notifications svg,
  .has-submenu:hover button.toggle.notifications svg,
  .has-submenu.open button.toggle.quick-help svg,
  .has-submenu:hover button.toggle.quick-help svg {
      transform: rotate(0deg);
  }
  .has-submenu.open button.toggle svg,
  .has-submenu:hover button.toggle svg {
      transform: rotate(900deg);
      transition: all var(--timing) var(--function);
  }
 
  nav ul.submenu {
      position: absolute;
      top: 100%;
      left: 0;
      flex-direction: column;
      max-height: 0;
      transform: scaleY(0);
      width: max-content;
      min-width: 100%;
      border: 2px solid var(--blackish);
      transition: all var(--timing) var(--function);
  }
  nav li:nth-last-of-type(2) ul.submenu,
  nav li:last-of-type ul.submenu {
      right: 0;
      left: auto;
  }
 
 
  .has-submenu.open .submenu,
  .has-submenu:hover .submenu {
      transform: scaleY(1);
      max-height: 1000%;
      transition: all var(--timing) var(--function);
  }
  nav .toggle.main {
      display: none;
  }
  /*@media (max-width: 768px){*/
  /*    nav.mobile {*/
  /*        width: 5rem;*/
  /*        height: 100%;*/
  /*    }*/
  /*    nav.mobile > ul {*/
  /*        position: fixed;*/
  /*        display: flex;*/
  /*        flex-direction: column;*/
  /*        justify-content: center;*/
  /*        align-items: center;*/
  /*        background-color: var(--overlay-heavy);*/
  /*        backdrop-filter: blur(5px);*/
  /*        z-index: 9999999;*/
  /*        margin: 0;*/
  /*        padding: 4rem 0 4rem 0;*/
  /*        top: 0;*/
  /*        right: -300vw;*/
  /*        width: 100vw;*/
  /*        height: calc(100vh - 8rem);*/
  /*        overflow:hidden;*/
  /*        overflow-y: scroll;*/
  /*        transition: right var(--timing) var(--function);*/
  /*    }*/
  /*    nav.mobile > button.toggle {*/
  /*        width: 5rem;*/
  /*        height: 100%;*/
  /*        display: flex;*/
  /*        justify-content: center;*/
  /*        align-items: center;*/
  /*        background-color: var(--blacker);*/
  /*        color: var(--light-0);*/
  /*    }*/
 
  /*    nav.mobile.open > button.toggle {*/
  /*        z-index: 10000000;*/
  /*        position: fixed;*/
  /*        top: 0;*/
  /*        width: calc(100% - 4rem);*/
  /*        right: 2rem;*/
  /*        height: 4rem;*/
  /*        background-color: transparent;*/
  /*    }*/
  /*    nav.mobile > button.toggle:hover {*/
  /*        background-color: var(--pink);*/
  /*    }*/
  /*    nav.mobile.open > button.toggle .menu svg,*/
  /*    nav.mobile >button.toggle .close svg {*/
  /*        transform: scale(0);*/
  /*        height: 0;*/
  /*        width: 0;*/
  /*    }*/
  /*    nav.mobile > button.toggle .menu svg,*/
  /*    nav.mobile.open > button.toggle .close svg {*/
  /*        transform: scale(1);*/
  /*        height: 32px;*/
  /*        width: 32px;*/
  /*    }*/
 
  /*    nav.mobile.open > ul {*/
  /*        right: 0;*/
  /*        transition: right var(--timing) var(--function);*/
  /*    }*/
 
  /*    nav.mobile li {*/
  /*        list-style: none;*/
  /*        display: flex;*/
  /*        justify-content: flex-start;*/
  /*        align-items: center;*/
  /*        width: 100%;*/
  /*        border: 2px solid var(--black);*/
  /*        min-height: var(--navHeight);*/
  /*    }*/
  /*    nav.mobile li button,*/
  /*    nav.mobile li a {*/
  /*        height: var(--navHeight);*/
  /*        color: var(--light-0);*/
  /*        width: 100%;*/
  /*        display: flex;*/
  /*        justify-content: center;*/
  /*        align-items: center;*/
  /*        background-color: transparent;*/
  /*        padding: 0;*/
  /*    }*/
  /*    nav.mobile .has-submenu button.toggle {*/
  /*        width: 20%;*/
  /*        height: var(--navHeight);*/
  /*    }*/
  /*    nav.mobile .has-submenu button.quick-help {*/
  /*        width: 100%;*/
  /*    }*/
  /*    nav.mobile li button:hover,*/
  /*    nav.mobile li a:hover {*/
  /*        background-color: var(--pink);*/
  /*        color: var(--black);*/
  /*    }*/
  /*    nav.mobile li.has-submenu {*/
  /*        flex-wrap: wrap;*/
  /*    }*/
  /*    nav.mobile li ul.submenu {*/
  /*        position: relative;*/
  /*        top: 0;*/
  /*        max-height: 0;*/
  /*        transform:scaleY(0);*/
  /*        width: 80%;*/
  /*        padding: 0;*/
  /*        margin: 0;*/
  /*        transition: all var(--timing) var(--function);*/
  /*    }*/
  /*    nav.mobile li.open ul.submenu {*/
  /*        max-height: 100%;*/
  /*        transform: scaleY(1);*/
  /*        padding: 0 2rem;*/
  /*        transition: all var(--timing) var(--function);*/
  /*    }*/
  /*    nav.mobile li .toggle svg {*/
  /*        transform: rotate(0deg);*/
  /*        transition: all var(--timing) var(--function);*/
  /*    }*/
  /*    nav.mobile li.open .toggle svg {*/
  /*        transform: rotate(900deg);*/
  /*        transition: all var(--timing) var(--function);*/
  /*    }*/
  /*    nav.mobile .submenu li {*/
  /*        border: 2px solid var(--black);*/
  /*        background-color: var(--blackish);*/
  /*    }*/
  /*    nav.mobile .submenu a {*/
  /*        width: 100%;*/
  /*    }*/
  /*    nav.mobile .submenu li+li {*/
  /*        border-top: none;*/
  /*    }*/
  /*}*/
  .wp-site-blocks {
      position: relative;
  }
  nav#breadcrumbs {
      position: absolute;
      top: 4rem;
      left: 0;
      width: fit-content;
      max-width:100%;
      padding: .25rem .5rem;
      background: rgba(250, 250, 250,.75);
      backdrop-filter: blur(2px);
      z-index: 998;
      height: fit-content;
      margin-block-start: 0;
      font-size: var(--small);
      flex-wrap: wrap;
  }
 
  nav#breadcrumbs {
      max-width: var(--full);
  }
  nav#breadcrumbs ol{
      display: flex;
      justify-content: flex-start;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
  }
  nav#breadcrumbs li {
      list-style: none;
      min-height: 0;
      display: flex;
  }
  nav#breadcrumbs li+li:before {
      content: " / ";
      display: inline-block;
      margin: 0 .125rem;
  }
 
  nav#breadcrumbs a {
      background-color: transparent;
      white-space: nowrap;
      height: auto;
      padding: 2px;
      display:flex;
  }
 
  nav#breadcrumbs li:first-of-type a {
      padding: 0 .125rem;
  }
  nav#breadcrumbs li:first-of-type a:hover {
      color: var(--pink);
      border-color: transparent;
  }
 
  nav.on-this-page {
      max-width: none;
      z-index: 99;
      margin: 0;
      position: fixed;
      bottom: 4rem;
      left:0;
      right: 0;
      height: fit-content;
      width: calc(100% - 2rem);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1rem;
      background: var(--light-0);
      box-shadow: var(--shadow);
      color: var(--offwhiteText);
  }
  nav.on-this-page.small {
      font-size: var(--small);
  }
    nav.on-this-page ul {
        flex: 1;
        height: 100%;
        width: 100%;
        justify-content: center;
    }
    nav.on-this-page.small ul {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    nav.on-this-page > label {
        width: 100%;
        max-width: 25%;
        display: flex;
        justify-content: space-around;
        color: var(--black);
        font-size: var(--small);
        text-transform: uppercase;
        align-items: center;
    }
        nav.on-this-page#search > label {
            max-width: fit-content;
            padding: 0 1rem;
        }
    nav.on-this-page:not(.letters) ul {
        max-width: 75%;
    }
          nav.on-this-page#search ul {
              max-width: 100%;
          }
    nav.on-this-page:not(.letters):not(#search) li {
        flex-shrink: 0;
        transform: scaleX(0);
        max-width: 0;
        overflow: hidden;
        transition: transform var(--timing) var(--function);
        transition-property: transform, max-width;
    }
        /*nav.on-this-page:not(.letters):not(#search) li.adj,*/
        nav.on-this-page:not(.letters):not(#search) li.active {
            transform: scaleX(1);
            width: 100%;
            flex-shrink: 1;
        }
            nav.on-this-page:not(.letters):not(#search) li.active {
                max-width: fit-content;
            }
 
    nav.on-this-page:not(.letters) ul li a {
        height: calc(100% - .25rem);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-color: var(--light-0);
        padding: 0 .25rem;
        white-space:nowrap;
        gap: .66em;
        border-bottom: .25rem solid var(--light-0);
        transition: background-color var(--timing) var(--function);
        transition-property: background-color, border;
    }
        nav.on-this-page#search a > span {
            display:  none;
        }
        nav.on-this-page h2 {
            position: absolute;
            height: 1.5rem;
            top: -1.5rem;
            left: 0;
            padding: .2rem;
            background-color: var(--light-0);
        }
      nav.on-this-page:not(.letters) ul li.active a,
      nav.on-this-page:not(.letters) ul li a:hover {
          border-color: var(--pink);
          color: var(--pink);
          transition: background-color var(--timing) var(--function);
          transition-property: background-color, border;
      }
      #search.on-this-page ul li {
          width: fit-content;
      }
      #search.on-this-page ul li.active a,
      #search.on-this-page ul li a:hover {
        background-color: var(--pink);
          color: var(--light-0);
          transition: background-color var(--timing) var(--function);
          transition-property: background-color, color;
      }
    nav.on-this-page:not(.letters) ul li {
        width: 25%;
        height: 100%;
        min-height: 0;
        text-align: center;
    }
 
nav.always {
    width: 5rem;
    height: 100%;
}
nav.always > ul {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--overlay-heavy);
    backdrop-filter: blur(5px);
    z-index: 9999999;
    margin: 0;
    padding: 4rem 0 0;
    top: 0;
    right: -300vw;
    width: 100%;
    height: calc(100vh - 8rem);
    overflow:hidden;
    overflow-y: scroll;
    transition: right var(--timing) var(--function);
}
nav.always > button.toggle {
    position:fixed;
    bottom: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    color: var(--light-0);
    transition: width var(--timing) var(--function);
    transition-property: width, background-color;
}
 
nav.always.open > button.toggle {
    z-index: 10000000;
    width:100%;
    background-color: var(--overlay-heavy);
    backdrop-filter: blur(5px);
    transition: width var(--timing) var(--function);
    transition-property: width, background-color;
}
nav.always > button.toggle:hover {
    background-color: var(--pink);
}
nav.always.open > button.toggle .menu svg,
nav.always >button.toggle .close svg {
    transform: scale(0);
    height: 0;
    width: 0;
}
nav.always > button.toggle .menu svg,
nav.always.open > button.toggle .close svg {
    transform: scale(1);
    height: 32px;
    width: 32px;
}
header nav svg {
    width: 32px;
    height: 32px;
}
.notifications.has-submenu > ul {
    position: fixed;
    width: 100%;
    top: 4rem;
    background: var(--overlay-heavy);
    transform-origin: top;
    backdrop-filter: blur(5px);
}
    .notifications.has-submenu > ul > li {
        background-color: var(--light-0);
        max-width: min(500px, 90vw);
        width: 100%;
    }
nav.always.open > ul {
    width: calc(100% + 16px);
    right: -16px;
    transition: right var(--timing) var(--function);
}
    @media (max-width:768px){
        nav.always.open > ul {
            width: 100%;
            right: 0;
        }
    }
 
nav.always li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border: 2px solid var(--black);
    min-height: var(--navHeight);
}
nav.always li button,
nav.always li a {
    height: var(--navHeight);
    color: var(--light-0);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 0;
}
nav.always .has-submenu button.toggle {
    width: 20%;
    height: var(--navHeight);
}
nav.always .has-submenu button.quick-help {
    width: 100%;
}
nav.always li button:hover,
nav.always li a:hover {
    background-color: var(--pink);
    color: var(--black);
}
nav.always li.has-submenu {
    flex-wrap: wrap;
}
nav.always li ul.submenu {
    position: relative;
    top: 0;
    max-height: 0;
    transform:scaleY(0);
    width: 80%;
    padding: 0;
    margin: 0;
    transition: all var(--timing) var(--function);
}
nav.always li.open ul.submenu {
    max-height: 100%;
    transform: scaleY(1);
    padding: 0 2rem;
    transition: all var(--timing) var(--function);
}
nav.always li .toggle svg {
    transform: rotate(0deg);
    transition: all var(--timing) var(--function);
}
nav.always li.open .toggle svg {
    transform: rotate(900deg);
    transition: all var(--timing) var(--function);
}
nav.always .submenu li {
    border: 2px solid var(--black);
    background-color: var(--blackish);
}
nav.always .submenu a {
    width: 100%;
}
nav.always .submenu li+li {
    border-top: none;
}
 
    @media (min-width: 768px){
 
        nav.on-this-page:not(.letters) ul {
            flex-wrap: nowrap;
        }
        nav.on-this-page:not(.letters) ul li {
            width: 100%;
        }
        nav.on-this-page:not(.letters):not(#search) li.adj,
        nav.on-this-page:not(.letters):not(#search) li.active {
            transform: scaleX(1);
            max-width: 50%;
            width: 100%;
            flex-shrink: 1;
        }
            nav.on-this-page:not(.letters):not(#search) li.adj {
                max-width: 25%;
            }
 
        nav.on-this-page#search a > span {
            display:  inline-block;
        }
        nav.on-this-page h2 {
            position: relative;
            top: 0;
            height: auto;
            font-size: var(--medium);
        }
        nav.on-this-page:not(.letters) ul li a {
            padding: .5rem 1rem .25rem 1rem;
        }
    }
 
  nav.on-this-page.open {
      height: calc(100% - 8rem);
      width: 100%;
      display: flex;
      flex-direction: column-reverse;
      background-color: rgba(250, 250, 250,.8);
      backdrop-filter: blur(5px);
  }
      nav.on-this-page.open label {
          max-width: 90%;
          margin-top: 1rem;
      }
      nav.on-this-page.open .toggle svg {
          transform: rotate(45deg);
      }
      nav.on-this-page.open ul {
          max-width: 90%;
          flex-direction: column;
          justify-content: flex-end;
      }
          nav.on-this-page.open:not(.letters):not(#search) ul li {
              background-color: transparent;
              max-width: 100%!important;
              width: 100%;
              height: fit-content;
              transform: scaleX(1);
              flex-shrink: 1;
              overflow:visible;
          }
          nav.on-this-page.open ul li a {
              background-color: transparent;
              padding: .5rem 0;
          }
 
  nav.artists li,
  nav.theme li {
      min-height: 0;
      font-size: var(--small);
  }
  nav.artists a,
  nav.theme a {
      height: fit-content;
      background-color: transparent;
      font-size: var(--small);
  }
  nav.artists > ul,
  nav.theme > ul {
      height: fit-content;
      display: flex;
  }
 
  nav.artists {
      margin: 0 var(--mr) 1rem var(--ml);
  }
 
 
nav.on-this-page.letters {
    position: fixed;
    bottom: 4rem;
    left: 0;
    right: 0;
    height: fit-content;
    max-width: 100vw;
    width: 100%;
    padding: 0;
    z-index: 99;
    background-color: var(--offwhite);
}
nav.on-this-page.letters ul {
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
nav.on-this-page.letters li {
    width: calc(7.69% - 2px);
    height: 2rem;
    min-height: 2rem;
    border: 1px solid var(--light-0);
    background-color: var(--offwhite);
    color: var(--light-0);
}
nav.on-this-page.letters li:nth-of-type(even) {
    border-color: var(--light-0);
}
nav.on-this-page.letters a {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: var(--offwhite);
    color: var(--pink);
}
nav.on-this-page.letters .active a,
nav.on-this-page.letters a:hover,
nav.on-this-page.letters a:focus,
nav.on-this-page.letters .current a {
    background-color: var(--pink);
    color: var(--blacker);
}
 
@media (min-width:768px){
    nav.on-this-page.letters ul {
        flex-wrap: nowrap;
    }
    nav.on-this-page.letters li {
        width: calc(3.846% - 2px);
    }
}
 
footer nav a {
    font-size: var(--small);
}
 
nav.directory-list {
    max-width: 100%;
    margin: 1rem auto;
}
    nav.directory-list ul {
        padding: 0 1rem;
        gap: .25rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    nav.directory-list a {
        padding: .25rem .5rem;
    }
    nav.directory-list .title {
        margin-right: 1rem;
        text-transform: uppercase;
    }
    nav.directory-list .current a {
        border-bottom: none;
        background-color: var(--blacker);
        color: var(--light-0);
    }