@import url("https://use.typekit.net/niu4lak.css");
@font-face {
  font-family: "Lyon Text";
  src: url("LyonText-Regular.woff2") format("woff2"), url("LyonText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lyon Text";
  src: url("LyonText-RegularItalic.woff2") format("woff2"), url("LyonText-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: #fff;
  --border: rgba(100,100,100,0.3);
  --blue: #228cf0;
  --pink: #eb80ff;
  --peach: #EF879F;
  --text: #373737;
  --text-invert: rgb(234, 234, 234);
  --text-light: #6e6e6e;
  --gray-lightest: rgb(241, 241, 241);
  --gray-lighter: rgb(234, 234, 234);
  --gray-light: rgb(166, 166, 166);
  --gray: rgba(0, 0, 0, 0.4);
  --gray-darker: rgba(0, 0, 0, 0.5);
  --link: rgba(0,0,0,0.5);
  --opacity-light: 0.8;
  --opacity-lighter: 0.6;
  --opacity-lightest: 0.2;
  --font-serif: $serif;
  --font-display: $serif-display;
  --font-sans: "helvetica-neue-lt-pro", sans-serif;
  --font-mono: "Courier New", "Courier", monospace;
  --font-accent: $accent;
  --leading-tight: 1.1;
  --leading: 1.5;
  --text-xxs: 0.5rem;
  --text-xs: 0.65rem;
  --text-sm: 0.75rem;
  --text-base: 0.8rem;
  --text-md: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.25rem;
  --text-xxl: 1.5rem;
  --z-top: 20;
  --z-top-nav: 15;
  --z-decor: 9;
  --z-nav: 8;
  --z-main: 0;
  --nav-width-normal: 264px;
  --nav-width-wide: 264px;
  --strip-nav-width: var(--nav-width-normal);
  --top-height: 80px;
  --padding-nav: 1rem;
  --padding-top-page-nav: 80px;
  --padding-top-page: 40px;
}

* {
  box-sizing: border-box;
}

:root {
  --cell-size: 32;
  --cellW: calc(100vw / var(--cell-size));
}

@media only screen and (min-width: 1400px) {
  :root {
    --cell-size: 56;
  }
}
@media only screen and (min-width: 1100px) {
  :root {
    --cell-size: 40;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --cell-size: 20;
  }
}
:root {
  --divider-margin: .5rem;
  --item-margin: .33rem;
  --header-margin-top: 1rem;
  --header-margin-bottom: .25rem;
  --nav-bottom-gutter: 100px;
}

body {
  overflow-x: hidden;
  font-size: var(--text-sm);
}

a {
  line-height: 150%;
  padding: 0.25rem 0;
  transition: all cubic-bezier(0, 0.52, 1, 1) 2.5s;
  color: inherit;
}

a:hover {
  color: rgb(234, 234, 234);
  color: #fff;
  transition: all cubic-bezier(0, 0.52, 1, 1) 0.15s;
}

a span[detail], a em {
  font-family: var(--font-sans);
  font-size: 0.8em;
}

main {
  width: 100%;
  margin: 0;
  padding: var(--padding-nav);
  padding-top: var(--padding-top-page-nav);
}

h3 {
  text-align: left;
  margin-top: var(--header-margin-top);
  margin-bottom: var(--header-margin-bottom);
  opacity: var(--opacity-lighter);
}

h3::before {
  content: "( ";
}

h3::after {
  content: " )";
}

a[new]::after, a[wip]::after, a[upcoming]::after {
  opacity: var(--opacity-lighter);
  font-size: var(--text-xxs);
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}

a[new]::after {
  content: "(NEW)";
}

a[wip]::after {
  content: "(WIP)";
}

a[upcoming]::after {
  content: "(SOON)";
}

[upcoming] {
  opacity: var(--opacity-lighter);
}

[upcoming]:hover {
  animation: none;
  cursor: wait;
  background: var(--gray-lightest) !important;
  color: inherit !important;
}

div[cat] > h3 {
  cursor: s-resize;
}

div[cat][collapsed] > h3 {
  cursor: n-resize;
}

div[cat][collapsed] > h3::after {
  content: "... )";
}

iframe {
  border: 0;
  width: 100%;
}

[desc] a {
  text-decoration: none;
}
[desc] a em {
  text-decoration: none;
  font-size: 0.9em;
  line-height: 80%;
  opacity: var(--opacity-lighter);
  margin-top: -2px;
  font-style: normal;
}
[desc] a em::before {
  content: " ";
}

[divider] {
  width: 100%;
  height: 1px;
  display: block;
  margin: 0;
}

[subdivider] {
  width: 100%;
  height: 1px;
  display: block;
  margin: 0.25rem 0;
  margin-bottom: var(--divider-margin);
  opacity: var(--opacity-lightest);
}

a[showmore] {
  cursor: s-resize;
}

#nav, #subnav {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--nav-bottom-gutter);
}

#nav li {
  margin-bottom: var(--item-margin);
}

#nav > div {
  width: 100%;
}

.about {
  line-height: 130%;
  width: 100%;
}

#subnav {
  text-align: right;
}

#subnav a {
  position: relative;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  transition: 0;
}
#subnav a span {
  display: block;
  margin-top: var(--item-margin);
  line-height: 100%;
}
#subnav a span[type] {
  opacity: var(--opacity-lighter);
  line-height: 1.05;
}
#subnav a [img] {
  min-height: 80px;
  height: 100px;
  max-width: 320px;
  width: fit-content;
  position: relative;
}
#subnav a [img] img {
  object-fit: cover;
  height: 100%;
  width: 100vw;
  max-width: 200px;
}
#subnav a:not(:has([img]))::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 200px;
  height: 80px;
  background: var(--gray-lightest);
}
#subnav a.browse-all::before {
  display: none !important;
}
#subnav a:hover {
  transition: 0;
}
#subnav a:hover span {
  background: var(--gray-lightest);
  color: #000;
}

#nav li a {
  text-decoration: none;
}

#nav li {
  display: block;
}
#nav li span[date], #nav li span[type] {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9em;
}
#nav li span[date]::after {
  color: var(--gray-light);
  font-family: var(--font-mono);
}

[cat=upcoming] li, [cat=happenings] li {
  max-width: 220px;
  margin-right: 0;
  margin-left: auto;
}

[cat=status] .sans {
  line-height: 1.1;
  display: inline-block;
}

#nav[cat=recently] li {
  border-bottom: none;
}

#nav[organize=year] span[detail] {
  display: inline;
  opacity: var(--opacity-lighter);
}
#nav[organize=year] span[year]::before {
  content: ", ";
  margin-left: -2px;
}

/*# sourceMappingURL=nav.css.map */
