@font-face {
  font-family: "Movement";
  src: url("../fonts/Movement-IndirectBlack.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roberte";
  src: url("../fonts/Roberte-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  src: url("../fonts/InclusiveSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #ffffff;
  --text: #151515;
  --muted: #62645f;
  --rule: rgba(21, 21, 21, 0.18);
  --accent: #e5532f;
  --rail-width: 54px;
  --pane-width: min(50vw, 640px);
  --page-width: 56rem;
  --font-heading: "Inclusive Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-menu: "Roberte", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inclusive Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --menu-type-size: clamp(0.88rem, 1.2vw, 1.25rem);
  --glass-background: rgba(255, 255, 255, 0.38);
  --glass-blur: blur(18px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  isolation: isolate;
  background: transparent;
  color: var(--text);
  line-height: 1.55;
}


html,
body {
  scrollbar-color: var(--accent) transparent;
  scrollbar-width: thin;
}

html.custom-scrollbar-ready,
html.custom-scrollbar-ready body {
  scrollbar-width: none;
}

::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent !important;
}

::-webkit-scrollbar-button,
html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
  background: transparent !important;
}

::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece,
html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: transparent !important;
  background-color: transparent !important;
  border: 0;
  box-shadow: none;
}

::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border: 0;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

html.custom-scrollbar-ready::-webkit-scrollbar,
html.custom-scrollbar-ready body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.scroll-thumb {
  top: 0;
  right: 2px;
  z-index: 80;
  width: 6px;
  min-height: 36px;
  border-radius: 999px;
  background: var(--accent);
  cursor: grab;
  touch-action: none;
}

.scroll-thumb--page {
  position: fixed;
}

.scroll-thumb--pane {
  position: absolute;
}

.scroll-thumb.is-dragging {
  cursor: grabbing;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  border-radius: 50%;
}

body::before {
  width: 78vmax;
  height: 78vmax;
  left: 56vw;
  top: -30vh;
  background: radial-gradient(ellipse at center, rgba(94, 246, 255, 0.78) 0%, rgba(94, 246, 255, 0.38) 34%, transparent 68%);
  filter: blur(42px);
  opacity: 0.82;
  animation: cyan-migrate 14s ease-in-out infinite alternate;
}

body::after {
  width: 86vmax;
  height: 72vmax;
  left: -28vw;
  top: 42vh;
  background: radial-gradient(ellipse at center, rgba(172, 222, 150, 0.82) 0%, rgba(172, 222, 150, 0.48) 38%, transparent 70%);
  filter: blur(48px);
  opacity: 0.78;
  animation: green-migrate 18s ease-in-out infinite alternate;
}

@keyframes cyan-migrate {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-92vw, 92vh, 0) scale(1.12);
  }
}

@keyframes green-migrate {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(58vw, -44vh, 0) scale(1.08);
  }
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
}

.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: grid;
  grid-template-rows: 72px 1fr 124px;
  place-items: center;
  width: var(--rail-width);
  border-right: 1px solid var(--text);
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.menu-button {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 9px;
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: opacity 160ms linear, transform 180ms ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.menu-open .menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

.rail-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 100;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.rail-title:hover {
  color: var(--accent);
  text-decoration: none;
}

.rail-social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.rail-social svg {
  width: 26px;
  height: 26px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-pane {
  position: fixed;
  inset: 0 auto 0 var(--rail-width);
  z-index: 30;
  width: var(--pane-width);
  border-right: 1px solid var(--text);
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transform: translateX(-100%);
  transition: transform 320ms cubic-bezier(.2, .72, .24, 1);
}

.menu-open .menu-pane {
  transform: translateX(0);
}

.menu-pane-inner {
  display: grid;
  align-content: start;
  gap: clamp(0.7rem, 1.4vw, 1.2rem);
  height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  overflow-y: auto;
  scrollbar-width: none;
}

.menu-pane-inner::-webkit-scrollbar {
  display: none;
}

.menu-group {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-family: var(--font-body);
}

.menu-heading {
  justify-self: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--menu-type-size);
  font-weight: 400;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-heading:hover {
  background: transparent;
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.menu-list {
  display: grid;
  gap: 0.34rem;
  margin: 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.menu-list.nested {
  margin-top: 0.34rem;
  padding-left: 1.2rem;
}

.menu-group > .menu-list {
  padding-left: clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--rule);
}

.menu-list.collapsed {
  display: none;
}

.menu-list li {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--menu-type-size);
  line-height: 1.1;
}

.menu-list .menu-link,
.menu-list .folder-toggle {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.28rem 0.55rem 0.22rem;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.86);
  font-family: var(--font-heading);
  font-size: var(--menu-type-size);
  line-height: 1.28;
  text-transform: uppercase;
  transition: background-color 160ms linear;
}

.menu-list .menu-link:hover,
.menu-list .folder-toggle:hover {
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
}

.folder-toggle {
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.folder-toggle::before {
  content: ">";
  display: inline-block;
  margin-right: 0.45em;
}

.expanded > .folder-toggle::before,
.expanded > .menu-heading.folder-toggle::before {
  content: "v";
}

.app-content {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - var(--rail-width) - 2rem), var(--page-width));
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: calc(var(--rail-width) + var(--app-shift, 0px));
  padding: clamp(1.45rem, 4vw, 3.15rem) clamp(1.5rem, 4vw, 4rem) 7rem;
  transition: margin-left 320ms cubic-bezier(.2, .72, .24, 1);
}

.menu-open .app-content {
  --app-shift: var(--pane-width);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 52rem;
  margin-bottom: 2rem;
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
}

h2 {
  max-width: 52rem;
  margin-top: 3.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

h3 {
  max-width: 52rem;
  margin-top: 2rem;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

p,
ul,
ol,
blockquote,
table,
pre {
  max-width: 48rem;
}

p,
.app-content li {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.55;
}

blockquote {
  margin: 2rem 0;
  padding-left: 1.25rem;
  border-left: 1px solid var(--text);
  color: var(--muted);
}

hr {
  max-width: 48rem;
  margin: 2rem 0;
  border: 0;
  border-top: 1px dotted var(--text);
}

img {
  max-width: 100%;
  height: auto;
}

code,
pre {
  background: var(--surface);
  font-family: var(--font-mono);
}

code {
  padding: 0.1rem 0.25rem;
}

pre {
  overflow-x: auto;
  padding: 1rem;
  border: 1px solid var(--rule);
}

@media (max-width: 900px) {
  :root {
    --pane-width: calc(100vw - var(--rail-width));
  }

  .app-content {
    width: calc(100vw - var(--rail-width));
    padding-right: 1.25rem;
  }

  .menu-open .app-content {
    --app-shift: 0px;
  }

  .menu-open .app-content {
    opacity: 0.22;
  }
}

.home-page .app-content {
  width: calc(100vw - var(--rail-width));
  max-width: none;
  padding: 0;
}

.home-index {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 4rem) 7rem;
}

.home-copy {
  position: static;
  z-index: 1;
  max-width: none;
  padding-bottom: 0;
  pointer-events: none;
}

.home-copy h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(4rem, 13vw, 13rem);
}

.home-tagline {
  position: fixed;
  top: 50%;
  left: calc(var(--rail-width) + ((100vw - var(--rail-width)) / 2));
  z-index: 0;
  width: min(69.333vw, calc(100vw - var(--rail-width) - 3rem), 74.75rem);
  max-width: none;
  margin: 0;
  color: var(--text);
  font-family: var(--font-menu);
  font-size: clamp(2.4rem, 7.6vw, 8.2rem);
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.home-copy p:not(.home-tagline) {
  position: fixed;
  top: clamp(1rem, 2vw, 1.8rem);
  left: calc(var(--rail-width) + ((100vw - var(--rail-width)) / 2));
  z-index: 2;
  width: min(34rem, calc(100vw - var(--rail-width) - 2rem));
  max-width: none;
  margin: 0;
  font-size: clamp(0.72rem, 0.95vw, 0.95rem);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: auto;
}

.study-stream {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3.75rem, 8vw, 8.5rem) clamp(2rem, 5vw, 5rem);
  /*margin-top: 24vh;*/
  padding: 0 0 18vh;
}

.study-preview {
  color: var(--text);
}

.study-preview:nth-child(4n + 1) {
  grid-column: 6 / span 6;
}

.study-preview:nth-child(4n + 2) {
  grid-column: 1 / span 6;
  margin-top: 8vh;
}

.study-preview:nth-child(4n + 3) {
  grid-column: 6 / span 7;
  margin-top: 5vh;
}

.study-preview:nth-child(4n) {
  grid-column: 2 / span 8;
  margin-top: 6vh;
}

.study-preview a {
  display: grid;
  gap: 0.72rem;
  color: var(--text);
}

.study-preview a:hover {
  text-decoration: none;
}

.study-preview a:hover h2 {
  text-decoration: none;
}

.study-preview figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--text);
  background: var(--surface);
  box-shadow: none;
  transition: box-shadow 180ms ease;
}

.study-preview a:hover figure {
  box-shadow: 0 18px 42px rgba(23, 23, 23, 0.24);
}

.study-preview img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.88) contrast(1.02);
}

.study-preview figure.has-motion {
  aspect-ratio: 16 / 9;
}

.study-preview figure.has-motion.is-square {
  aspect-ratio: 1;
}

.study-preview figure.has-motion img {
  height: 100%;
  object-fit: cover;
}

.study-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.study-preview figure.is-square .study-preview-video {
  left: 50%;
  width: 177.778%;
  transform: translateX(-50%);
}

.study-preview a:hover .study-preview-video {
  opacity: 1;
}

.study-preview-copy {
  display: grid;
  align-items: start;
  gap: 0.28rem;
}

.study-preview-copy h2 {
  display: inline-block;
  justify-self: start;
  max-width: 100%;
  margin: 0;
  padding: 0.28rem 0.55rem 0.22rem;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.86);
  font-size: clamp(0.78rem, 1.05vw, 1.12rem);
  line-height: 1;
  transition: background-color 160ms linear;
}

.study-preview a:hover h2 {
  background: var(--accent);
  color: var(--surface);
}

.app-content > p:first-of-type,
.app-content > p:first-of-type + p {
  max-width: 44rem;
}

.app-content > h1 + p {
  margin-top: 0;
}

.app-content > h1 + p::before {
  content: none;
}

.app-content > p + p {
  margin-top: 1rem;
}

@media (min-width: 901px) {
  .menu-open .home-page .app-content,
  .menu-open.home-page .app-content {
    --app-shift: var(--pane-width);
  }
}

@media (max-width: 900px) {
  .home-index {
    padding: 4.5rem 1.25rem 6rem;
  }

  .home-copy {
    position: relative;
    top: 0;
    max-width: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .home-copy p:not(.home-tagline) {
    top: calc(var(--rail-width) + 0.85rem);
    left: 50%;
    width: calc(100vw - 2rem);
    max-width: none;
    font-size: clamp(0.68rem, 2.9vw, 0.9rem);
    background: transparent;
  }

  .desktop-line-break {
    display: none;
  }

  .home-tagline {
    left: 50%;
    width: min(28rem, calc(100vw - 2rem));
    font-size: clamp(1.65rem, 8vw, 3.45rem);
  }

  .study-stream {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4.5rem;
    margin-top: 2.5rem;
    padding: 0;
  }

  .study-preview,
  .study-preview:nth-child(4n + 1),
  .study-preview:nth-child(4n + 2),
  .study-preview:nth-child(4n + 3),
  .study-preview:nth-child(4n) {
    grid-column: 1;
    margin-top: 0;
  }
}

.page-media {
  max-width: 48rem;
  margin: 0 0 2rem;
  border: 1px solid var(--text);
  background: var(--surface);
}

.page-media img {
  display: block;
  width: 100%;
  height: auto;
}

.paper-figure {
  max-width: 48rem;
  margin: 2rem 0;
  border: 1px solid var(--text);
  background: var(--surface);
}

.paper-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.paper-figure figcaption {
  padding: 0.65rem 0.75rem 0.55rem;
  border-top: 1px solid var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.video-index {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 52rem;
  margin-top: 3rem;
}

.video-title {
  max-width: 52rem;
  margin-top: clamp(3rem, 5vw, 4rem);
  margin-bottom: clamp(1.6rem, 2.6vw, 2.35rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
}

.video-entry {
  display: grid;
  gap: 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
}

.video-entry h2 {
  margin-top: 0;
  margin-bottom: clamp(1.6rem, 2.6vw, 2.35rem);
  padding-top: 0;
  border-top: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
}

.video-entry p {
  margin: 0;
}

.video-entry p + p {
  margin-top: 0.8rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: clamp(1.15rem, 2vw, 1.5rem);
  overflow: hidden;
  border: 1px solid var(--text);
  background: var(--surface);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.app-content p a,
.app-content li a {
  display: inline-block;
  padding: 0.12em 0.48em 0.08em;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.86);
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  line-height: 1.18;
  text-decoration: none;
  transition: background-color 160ms linear;
}

.app-content p a:hover,
.app-content li a:hover {
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
}

.pill-link {
  display: inline-block;
  padding: 0.12em 0.48em 0.08em;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.86);
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  line-height: 1.18;
  text-decoration: none;
  transition: background-color 160ms linear;
}

.pill-link:hover {
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
}


.page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 48rem;
  margin: -1.15rem 0 2rem;
}

.tag-pill {
  display: inline-block;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.82vw, 0.88rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.tag-pill:hover {
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.tag-page-title {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1;
}

.tag-index {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 52rem;
}

.tag-result {
  padding-top: clamp(1.2rem, 2.5vw, 2rem);
  border-top: 1px solid var(--rule);
}

.tag-result a {
  display: grid;
  grid-template-columns: minmax(9rem, 16rem) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: start;
  text-decoration: none;
}

.tag-result figure {
  margin: 0;
  border: 1px solid var(--text);
  background: var(--surface);
}

.tag-result img {
  display: block;
  width: 100%;
  height: auto;
}

.tag-result h2 {
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
}

@media (max-width: 900px) and (orientation: portrait) {
  .side-rail {
    inset: 0 0 auto 0;
    grid-template-columns: var(--rail-width) minmax(0, 1fr) var(--rail-width);
    grid-template-rows: var(--rail-width);
    width: 100%;
    height: var(--rail-width);
    border-right: 0;
    border-bottom: 1px solid var(--text);
  }

  .rail-title {
    max-width: calc(100vw - (var(--rail-width) * 2));
    overflow: hidden;
    font-size: 1.05rem;
    text-align: center;
    text-overflow: ellipsis;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .rail-social {
    width: var(--rail-width);
    height: var(--rail-width);
  }

  .menu-pane {
    inset: var(--rail-width) 0 auto 0;
    width: 100vw;
    height: calc(100dvh - var(--rail-width));
    border-right: 0;
    border-bottom: 1px solid var(--text);
    transform: translateY(-100%);
  }

  .menu-open .menu-pane {
    transform: translateY(0);
  }

  .menu-pane-inner {
    padding: 1.4rem 1.25rem 2.5rem;
  }

  .app-content {
    width: 100vw;
    margin-left: 0;
    padding-top: calc(var(--rail-width) + 1.25rem);
  }

  .home-page .app-content {
    width: 100vw;
    margin-left: 0;
    padding: 0;
  }

  .menu-open .app-content {
    --app-shift: 0px;
  }

  .home-index {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--rail-width) + 2rem);
  }
}

@media (max-width: 700px) {
  .tag-result a {
    grid-template-columns: 1fr;
  }
}
