:root {
  color-scheme: light dark;
  --page-bg: hsl(38 3% 73%);
  --panel-bg: #fff;
  --header-text: #fff;
  --text: #000;
  --muted: hsl(0 1% 48%);
  --line: rgba(255, 255, 255, 0.5);
  --shadow: 0 0.7px 1.6px -1.3px rgb(0 0 0 / 0.19),
    0 2.7px 6px -2.7px rgb(0 0 0 / 0.17),
    0 12px 26.4px -4px rgb(0 0 0 / 0.05);
  --canvas-bg: #fff;
  --canvas-grid: rgb(0 0 0 / 0.045);
  --canvas-grid-strong: rgb(0 0 0 / 0.06);
  --canvas-card-bg: rgb(255 255 255 / 0.94);
  --canvas-card-border: rgb(0 0 0 / 0.13);
  --canvas-text: #111;
  --canvas-muted: rgb(0 0 0 / 0.5);
  --canvas-shadow: 0 2px 5px rgb(0 0 0 / 0.08), 0 14px 28px rgb(0 0 0 / 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page-bg: hsl(38 2% 30%);
    --panel-bg: rgb(23, 23, 23);
    --header-text: rgb(208, 205, 205);
    --text: rgb(226, 217, 217);
    --muted: hsl(0 2% 58%);
    --line: rgba(221, 207, 207, 0.5);
    --canvas-bg: rgb(28, 28, 28);
    --canvas-grid: rgb(255 255 255 / 0.045);
    --canvas-grid-strong: rgb(255 255 255 / 0.065);
    --canvas-card-bg: rgb(38 38 38 / 0.94);
    --canvas-card-border: rgb(255 255 255 / 0.14);
    --canvas-text: rgb(236 232 228);
    --canvas-muted: rgb(236 232 228 / 0.52);
    --canvas-shadow: 0 2px 5px rgb(0 0 0 / 0.22), 0 16px 34px rgb(0 0 0 / 0.24);
  }
}

* {
  box-sizing: border-box;
}

h1,
h2,
p,
ol {
  margin: 0;
}

html {
  min-height: 100%;
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.page {
  width: min(100%, 1200px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 8px 32px 32px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 47px;
  padding: 8px;
  color: var(--header-text);
}

.brand {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 2;
}

.path {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.mobile-name {
  display: none;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.language-switcher a {
  text-decoration: none;
}

.language-switcher a[aria-current="true"] {
  color: var(--header-text);
}

.language-switcher span {
  color: var(--muted);
}

.path a:hover,
.brand:hover,
.language-switcher a:hover {
  color: #000;
}

.path a[aria-current="page"] {
  color: var(--text);
}

.shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.home-canvas-shell {
  position: relative;
  overflow: visible;
  height: 90vh;
  min-height: 620px;
  background: var(--canvas-bg);
}

.home-canvas-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: var(--canvas-bg);
  color: var(--canvas-text);
  cursor: grab;
  touch-action: none;
}

.home-canvas-viewport.is-panning,
.home-canvas-shell.is-dragging-node .home-canvas-node {
  cursor: grabbing;
}

.home-canvas-surface {
  position: absolute;
  inset: 0 auto auto 0;
  overflow: hidden;
  background-color: var(--canvas-bg);
  background-image:
    linear-gradient(var(--canvas-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--canvas-grid) 1px, transparent 1px),
    linear-gradient(var(--canvas-grid-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--canvas-grid-strong) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 44px 44px, 44px 44px, 220px 220px, 220px 220px;
  transform: translate3d(var(--canvas-x, 0), var(--canvas-y, 0), 0) scale(var(--canvas-scale, 0.58));
  transform-origin: 0 0;
  will-change: transform;
}

.home-canvas-fallback {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  width: min(360px, 80vw);
  color: var(--canvas-muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  transform: translate(-50%, -50%);
}

.home-canvas-fallback p {
  width: 100%;
}

.home-canvas-fallback a {
  color: var(--canvas-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.home-canvas-paths,
.home-canvas-theme-labels,
.home-canvas-nodes {
  position: absolute;
  inset: 0;
}

.home-canvas-paths {
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.home-canvas-paths path {
  fill: none;
  opacity: 0.58;
  stroke: var(--theme-color);
  stroke-linecap: round;
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
}

.home-canvas-theme-label {
  position: absolute;
  z-index: 5800;
  padding: 2px 0;
  color: var(--canvas-text);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow:
    0 1px 0 var(--canvas-bg),
    1px 0 0 var(--canvas-bg),
    -1px 0 0 var(--canvas-bg),
    0 -1px 0 var(--canvas-bg);
  transform: translate(-50%, -50%);
}

.home-canvas-theme-label::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 9px;
  background: var(--theme-color);
  content: "";
  transform: translateY(-4px);
}

.home-canvas-avatar {
  position: absolute;
  z-index: 6200;
  display: grid;
  width: 104px;
  height: 118px;
  justify-items: center;
  color: var(--canvas-text);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.home-canvas-avatar img {
  display: block;
  width: 86px;
  height: 86px;
  border: 4px solid var(--canvas-bg);
  border-radius: 50%;
  box-shadow: var(--canvas-shadow);
  object-fit: cover;
  object-position: 28% 50%;
}

.home-canvas-avatar span {
  margin-top: 8px;
  padding: 5px 7px;
  border: 1px solid var(--canvas-card-border);
  border-radius: 999px;
  background: var(--canvas-card-bg);
}

.home-canvas-node {
  position: absolute;
  z-index: var(--z);
  display: block;
  width: 218px;
  color: var(--canvas-text);
  cursor: grab;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  outline: none;
  transform: translate(-50%, -50%) rotate(var(--rotation));
  transform-origin: 50% 50%;
  transition: box-shadow 160ms ease, filter 160ms ease, transform 160ms ease;
  user-select: none;
}

.home-canvas-node:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-color) 55%, transparent);
}

.home-canvas-node:hover {
  filter: saturate(1.04) contrast(1.02);
  transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-3px);
}

.home-canvas-node.is-small {
  width: 178px;
}

.home-canvas-node.is-medium {
  width: 224px;
}

.home-canvas-node.is-large {
  width: 276px;
}

.home-canvas-node.is-wide {
  width: 334px;
}

.home-canvas-node.is-tall {
  width: 196px;
}

.home-canvas-media-frame,
.home-canvas-media-stack img,
.home-canvas-link-preview {
  background: color-mix(in srgb, var(--canvas-bg) 82%, var(--theme-color) 18%);
  box-shadow: var(--canvas-shadow);
}

.home-canvas-media-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px 6px 0 0;
}

.home-canvas-node.is-photo .home-canvas-media-frame {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
}

.home-canvas-media-frame img,
.home-canvas-media-stack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-canvas-node.has-missing-media .home-canvas-media-frame {
  min-height: 120px;
}

.home-canvas-node.has-missing-media .home-canvas-media-frame::before {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 48%, var(--theme-color) 48% 52%, transparent 52%),
    color-mix(in srgb, var(--canvas-bg) 86%, var(--theme-color) 14%);
  content: "";
  opacity: 0.4;
}

.home-canvas-media-stack {
  position: relative;
  height: 204px;
}

.home-canvas-node.is-large .home-canvas-media-stack,
.home-canvas-node.is-wide .home-canvas-media-stack {
  height: 224px;
}

.home-canvas-media-stack img {
  position: absolute;
  width: 76%;
  height: 66%;
  border-radius: 4px;
}

.home-canvas-media-stack img:nth-child(1) {
  inset: 2% auto auto 18%;
  transform: rotate(1.5deg);
}

.home-canvas-media-stack img:nth-child(2) {
  inset: 28% auto auto 2%;
  transform: rotate(-2.5deg);
}

.home-canvas-media-stack img:nth-child(3) {
  inset: 44% auto auto 27%;
  transform: rotate(1deg);
}

.home-canvas-card-copy {
  display: grid;
  gap: 8px;
  padding: 12px 13px 13px;
  border-radius: 0 0 6px 6px;
  background: var(--canvas-card-bg);
  box-shadow: var(--canvas-shadow);
}

.home-canvas-node.is-stack .home-canvas-card-copy {
  position: relative;
  z-index: 1;
  width: min(260px, 86%);
  margin-top: -12px;
  border-radius: 6px;
}

.home-canvas-node.is-photo .home-canvas-card-copy {
  margin-top: 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-canvas-card-copy strong,
.home-canvas-link-preview strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
}

.home-canvas-date,
.home-canvas-link-preview span {
  color: var(--canvas-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.home-canvas-link-preview {
  display: grid;
  gap: 9px;
  padding: 15px;
  border-radius: 6px;
}

.home-canvas-link-preview p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--canvas-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.home-canvas-note {
  display: grid;
  gap: 9px;
  padding: 0;
  color: var(--canvas-text);
  text-shadow:
    0 1px 0 var(--canvas-bg),
    1px 0 0 var(--canvas-bg),
    -1px 0 0 var(--canvas-bg),
    0 -1px 0 var(--canvas-bg);
}

.home-canvas-note p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
  white-space: pre-wrap;
}

.home-canvas-node.is-large .home-canvas-note p {
  font-size: 15px;
}

.home-canvas-toolbar {
  position: absolute;
  z-index: 20;
  inset: auto 18px 18px auto;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--canvas-card-border);
  border-radius: 8px;
  background: var(--canvas-card-bg);
  box-shadow: var(--canvas-shadow);
}

.home-canvas-toolbar[hidden] {
  display: none;
}

.home-canvas-toolbar button {
  min-width: 44px;
  height: 42px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid var(--canvas-card-border);
  background: transparent;
  color: var(--canvas-text);
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.home-canvas-toolbar button:last-child {
  border-right: 0;
}

.home-canvas-toolbar button:hover {
  background: color-mix(in srgb, var(--theme-color, #000) 8%, transparent);
}

.home-canvas-post-overlay {
  position: absolute;
  z-index: 40;
  inset: 0;
  pointer-events: none;
}

.home-canvas-post-overlay[hidden] {
  display: none;
}

.home-canvas-post-scrim {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgb(255 255 255 / 0.1);
  cursor: default;
  pointer-events: auto;
}

.home-canvas-post-window {
  position: absolute;
  z-index: 1;
  inset: -16px auto 12px 50%;
  display: grid;
  grid-template-rows: 48px minmax(0, 1fr);
  width: min(610px, calc(100% - 72px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-bg);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.24), 0 2px 8px rgb(0 0 0 / 0.1);
  color: var(--text);
  outline: none;
  pointer-events: auto;
  transform: translateX(-50%);
}

.home-canvas-post-bar {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-bg) 94%, var(--canvas-bg) 6%);
}

.home-canvas-post-permalink,
.home-canvas-post-close {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  text-decoration: none;
}

.home-canvas-post-close {
  font-size: 19px;
}

.home-canvas-post-permalink:hover,
.home-canvas-post-close:hover {
  background: color-mix(in srgb, var(--canvas-bg) 70%, var(--panel-bg) 30%);
  color: var(--text);
}

.home-canvas-post-scroll {
  overflow: auto;
  padding: 18px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.home-canvas-post-status {
  display: grid;
  min-height: 220px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  place-items: center;
}

.home-canvas-post-window .screenshot-post,
.home-canvas-post-window .photo-detail-figure,
.home-canvas-post-window .photo-detail-meta {
  box-shadow: none;
}

.home-canvas-post-window .screenshot-post {
  border-radius: 14px;
}

.home-canvas-post-window .screenshot-post.has-single-portrait {
  width: 100%;
}

.home-canvas-post-window .screenshot-body {
  padding: 22px;
}

.home-canvas-post-window .post-title {
  font-size: clamp(25px, 3.2vw, 36px);
}

.home-canvas-post-window .screenshot-text,
.home-canvas-post-window .photo-detail-figure p {
  font-size: 15px;
  line-height: 1.58;
}

.home-canvas-post-window .screenshot-media.is-single .screenshot-media-item.is-video {
  min-height: 300px;
  padding: 24px;
}

.home-canvas-post-window .photo-detail {
  grid-template-columns: 1fr;
}

.home-canvas-post-window .photo-detail-figure,
.home-canvas-post-window .photo-detail-meta {
  border-radius: 14px;
}

.home-canvas-post-window .photo-detail-figure figcaption {
  padding: 22px;
}

.home-canvas-post-window .photo-detail-figure h1 {
  font-size: clamp(25px, 3.2vw, 36px);
}

.about-shell {
  padding: 100px 0;
}

.work-list {
  display: flex;
  flex-direction: column;
}

.work-item {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  margin: 0 auto;
  padding: 40px;
}

.media {
  position: relative;
  flex: 0 0 320px;
  overflow: hidden;
  height: 180px;
  border-radius: 20px;
  background: #d8d7d4 url("./assets/card-backdrop.png") center / cover no-repeat;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
}

.video img,
.video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 68px;
  height: 48px;
  transform: translate(-50%, -50%);
  place-items: center;
}

.play svg {
  display: block;
  width: 68px;
  height: 48px;
}

.video:hover .play path:first-child {
  fill: #f00;
  fill-opacity: 1;
}

.content {
  display: flex;
  flex: 0 0 320px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 0;
}

.content h1 {
  max-width: 320px;
  font-family: Lora, Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.content h2 {
  max-width: 270px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.4;
}

.content p,
.content li {
  max-width: 270px;
  color: var(--text);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.button {
  width: fit-content;
  margin-top: 8px;
  padding: 13px 18px 14px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.button:hover {
  transform: translateY(-1px);
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  font-family: Lora, Georgia, serif;
  font-size: 52px;
  margin: 0 0 12px;
}

.screenshots-page {
  max-width: 920px;
}

.screenshots-intro {
  display: grid;
  gap: 14px;
  padding: 88px 8px 52px;
}

.screenshots-intro.compact {
  padding-bottom: 32px;
}

.screenshots-intro h1 {
  max-width: 760px;
  font-family: Lora, Georgia, serif;
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 600;
  line-height: 0.95;
}

.screenshots-intro a,
.screenshot-post a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.post-breadcrumb,
.post-nav,
.post-index-list {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.post-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 24px 8px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.post-breadcrumb a,
.post-nav a,
.post-index-item {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.eyebrow,
.screenshot-date,
.feed-status,
.load-more {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.eyebrow,
.screenshot-date,
.feed-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.screenshot-feed {
  display: grid;
  gap: 28px;
}

.screenshot-post {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.screenshot-media {
  display: grid;
  gap: 1px;
  background: #eef0f3;
}

.screenshot-media.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screenshot-media-item {
  display: grid;
  min-height: 260px;
  overflow: hidden;
  background: #eef0f3;
  place-items: center;
}

.screenshot-media-item img,
.screenshot-media-item video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(82vh, 900px);
  object-fit: contain;
}

.screenshot-media-item.is-image img {
  width: 100%;
}

.screenshot-media.is-single .screenshot-media-item.is-video {
  min-height: clamp(420px, 48vw, 760px);
  padding: clamp(32px, 7vw, 104px);
}

.screenshot-video-preview {
  position: relative;
  display: grid;
  width: min(100%, 760px);
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.screenshot-media-item .screenshot-video-poster {
  width: 100%;
  filter: saturate(0.96);
}

.screenshot-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.32);
  transform: translate(-50%, -50%);
}

.screenshot-video-play::before {
  position: absolute;
  inset: 50% auto auto 52%;
  width: 0;
  height: 0;
  border-block: 15px solid transparent;
  border-left: 22px solid rgb(255 255 255 / 0.92);
  content: "";
  transform: translate(-38%, -50%);
}

.screenshot-media-item video {
  background: #111;
}

@media (min-width: 1200px) {
  .screenshot-post.has-single-portrait {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .screenshot-post.has-single-portrait .screenshot-media-item {
    min-height: 0;
    aspect-ratio: auto !important;
  }

  .screenshot-post.has-single-portrait .screenshot-media-item img {
    width: auto;
    height: auto;
  }
}

.screenshot-body {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.post-title {
  max-width: 720px;
  font-family: Lora, Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.12;
}

.screenshot-text {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.58;
  white-space: pre-wrap;
}

.screenshot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.screenshot-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.feed-actions {
  display: grid;
  padding: 32px 0 64px;
  place-items: center;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 8px 64px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.post-index-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.post-index-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  background: var(--panel-bg);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.post-index-item:hover span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-index-item time {
  color: var(--muted);
  font-weight: 700;
}

.load-more {
  border: 0;
  cursor: pointer;
}

.photos-page {
  max-width: 1180px;
}

.photos-intro {
  display: grid;
  gap: 14px;
  padding: 88px 8px 34px;
}

.photos-intro h1 {
  max-width: 760px;
  font-family: Lora, Georgia, serif;
  font-size: clamp(54px, 9vw, 112px);
  font-weight: 600;
  line-height: 0.95;
}

.photos-footer {
  display: grid;
  gap: 10px;
  padding: 18px 8px 72px;
}

.photos-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.photos-footer a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.photo-feed {
  columns: 3 260px;
  column-gap: 12px;
  padding-bottom: 28px;
}

.photo-feed .feed-status {
  column-span: all;
}

.photo-entry {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.photo-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eef0f3;
  cursor: zoom-in;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  dynamic-range-limit: standard;
}

.photo-card:hover img {
  filter: saturate(1.03) contrast(1.02);
}

.photo-hdr-badge {
  position: absolute;
  inset: 10px 10px auto auto;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.55);
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.photo-info {
  overflow: hidden;
  background: rgb(28 28 30 / 0.92);
  color: rgb(235 235 245 / 0.86);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.photo-info-header {
  padding: 11px 14px;
  background: rgb(58 58 63 / 0.88);
}

.photo-info-header strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.photo-info-body {
  display: grid;
  gap: 5px;
  padding: 12px 14px 13px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.photo-info-body p {
  margin: 0;
  color: rgb(235 235 245 / 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.photo-info-body .photo-location {
  color: rgb(235 235 245 / 0.78);
}

.photo-settings {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.photo-settings span {
  min-width: 0;
  padding: 9px 6px 10px;
  overflow: hidden;
  border-right: 1px solid rgb(255 255 255 / 0.12);
  color: rgb(235 235 245 / 0.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-settings span:last-child {
  border-right: 0;
}

.photo-detail-page {
  max-width: 1180px;
}

.photo-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 18px;
  align-items: start;
}

.photo-detail-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.photo-detail-figure a {
  display: block;
  background: #eef0f3;
}

.photo-detail-figure img {
  display: block;
  width: 100%;
  height: auto;
  dynamic-range-limit: no-limit;
}

.photo-detail-figure figcaption {
  display: grid;
  gap: 12px;
  padding: 22px 24px 24px;
}

.photo-detail-figure h1 {
  max-width: 780px;
  font-family: Lora, Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.photo-detail-figure p {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.58;
}

.photo-detail-meta {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.photo-detail-meta dl {
  margin: 0;
}

.photo-detail-meta div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--muted) 18%, transparent);
}

.photo-detail-meta div:last-child {
  border-bottom: 0;
}

.photo-detail-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.photo-detail-meta dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.photo-detail-meta a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.photo-viewer {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  border: 0;
  background: rgb(12 12 12 / 0.94);
  color: #fff;
}

.photo-viewer::backdrop {
  background: rgb(0 0 0 / 0.72);
}

.photo-viewer-bar {
  position: fixed;
  z-index: 1;
  inset: 12px 12px auto;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: none;
}

.photo-viewer-bar button {
  min-width: 44px;
  min-height: 36px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(0 0 0 / 0.46);
  color: #fff;
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  pointer-events: auto;
}

.photo-viewer-stage {
  display: grid;
  min-height: 100%;
  margin: 0;
  padding: 64px 18px 28px;
  overflow: auto;
  place-items: center;
}

.photo-viewer-stage img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 132px);
  border-radius: 4px;
  object-fit: contain;
  cursor: zoom-in;
  dynamic-range-limit: no-limit;
}

.photo-viewer-stage figcaption {
  max-width: 780px;
  margin-top: 16px;
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.guide-page {
  max-width: 1120px;
}

.guide-intro {
  display: grid;
  gap: 14px;
  padding: 88px 8px 34px;
}

.guide-intro h1 {
  max-width: 840px;
  font-family: Lora, Georgia, serif;
  font-size: clamp(54px, 9vw, 108px);
  font-weight: 600;
  line-height: 0.95;
}

.guide-intro p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.guide-routes,
.guide-quick-picks {
  display: grid;
  gap: 14px;
  padding: 0 8px 28px;
}

.guide-section-heading {
  display: grid;
  gap: 8px;
}

.guide-section-heading h2 {
  max-width: 620px;
  font-family: Lora, Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.05;
}

.guide-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 38px;
}

.guide-route-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 0;
}

.guide-route-kicker,
.guide-route-steps,
.guide-quick-list {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.guide-route-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-route-card h3 {
  font-family: Lora, Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.12;
}

.guide-route-card p:not(.guide-route-kicker) {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
}

.guide-route-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.guide-route-steps a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.guide-quick-picks {
  padding-bottom: 22px;
}

.guide-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.guide-controls {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 0 8px 18px;
}

.guide-search {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.guide-search input {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--panel-bg);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  box-shadow: var(--shadow);
}

.guide-search input:focus {
  border-color: color-mix(in srgb, var(--text) 42%, var(--line));
}

.guide-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 20px;
}

.guide-filter-list button,
.guide-quick-list button,
.guide-reset,
.guide-map-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-bg);
  color: var(--text);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-filter-list button,
.guide-quick-list button,
.guide-reset {
  min-height: 40px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.guide-filter-list button[aria-pressed="true"],
.guide-quick-list button[aria-pressed="true"] {
  background: #000;
  color: #fff;
}

.guide-reset {
  align-self: end;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 8px 28px;
}

.guide-card {
  display: grid;
  grid-template-rows: auto auto 176px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.guide-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.guide-category,
.guide-address,
.guide-tags,
.guide-map-link {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.guide-category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-card h2 {
  font-family: Lora, Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.12;
}

.guide-note {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
}

.guide-address {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.guide-tags span {
  padding: 5px 7px;
  border: 1px solid color-mix(in srgb, var(--muted) 20%, transparent);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.guide-place-preview {
  display: grid;
  min-height: 228px;
  margin: 0 18px 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--muted) 18%, transparent);
  border-radius: 8px;
  background: #6f685f;
  color: #fff;
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.08) inset;
}

.guide-place-preview:hover {
  transform: translateY(-1px);
}

.guide-preview-visual {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgb(255 255 255 / 0.18), transparent 22%),
    linear-gradient(135deg, #82776d, #4b443e);
}

.guide-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-preview-visual::before {
  z-index: 1;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgb(0 0 0 / 0.42), transparent 48%),
    linear-gradient(180deg, rgb(0 0 0 / 0.18), transparent 34%);
  content: "";
  pointer-events: none;
}

.guide-preview-visual::after {
  z-index: 1;
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.58), transparent);
  content: "";
  pointer-events: none;
}

.guide-preview-badge {
  position: absolute;
  z-index: 2;
  inset: 10px auto auto 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.58);
  color: rgb(255 255 255 / 0.92);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.guide-preview-badge::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 3px, #000 3.5px);
  mask: radial-gradient(circle at 50% 50%, transparent 0 3px, #000 3.5px);
}

.guide-preview-caption {
  display: grid;
  gap: 4px;
  padding: 12px 14px 13px;
  background: color-mix(in srgb, #5e5448 88%, #000);
}

.guide-preview-title {
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-preview-subtitle {
  color: rgb(255 255 255 / 0.62);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-place-preview[data-preview-theme="culture"] .guide-preview-visual {
  background:
    radial-gradient(circle at 76% 18%, rgb(255 238 188 / 0.28), transparent 22%),
    linear-gradient(135deg, #8d847b, #4d4945);
}

.guide-place-preview[data-preview-theme="food"] .guide-preview-visual {
  background:
    radial-gradient(circle at 64% 28%, rgb(255 210 128 / 0.28), transparent 22%),
    linear-gradient(135deg, #8b6951, #4a342b);
}

.guide-place-preview[data-preview-theme="coffee"] .guide-preview-visual {
  background:
    radial-gradient(circle at 24% 28%, rgb(255 234 192 / 0.24), transparent 20%),
    linear-gradient(135deg, #7b6558, #40352f);
}

.guide-place-preview[data-preview-theme="shop"] .guide-preview-visual {
  background:
    radial-gradient(circle at 70% 48%, rgb(255 255 255 / 0.2), transparent 22%),
    linear-gradient(135deg, #798083, #423f3b);
}

.guide-place-preview[data-preview-theme="walk"] .guide-preview-visual {
  background:
    radial-gradient(circle at 20% 22%, rgb(205 236 193 / 0.28), transparent 22%),
    linear-gradient(135deg, #6f7b5f, #42473b);
}

.guide-place-preview[data-preview-theme="bar"] .guide-preview-visual {
  background:
    radial-gradient(circle at 60% 40%, rgb(255 189 104 / 0.28), transparent 23%),
    linear-gradient(135deg, #6f5347, #352d2a);
}

.guide-map {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef0f3;
}

.guide-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-map-link {
  display: block;
  margin: 12px 18px 18px;
  padding: 11px 12px;
  text-align: center;
}

.guide-map-link:hover,
.guide-filter-list button:hover,
.guide-quick-list button:hover,
.guide-reset:hover {
  transform: translateY(-1px);
}

.guide-empty {
  margin: 0 8px 72px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.photo-viewer.is-actual-size .photo-viewer-stage {
  display: block;
}

.photo-viewer.is-actual-size .photo-viewer-stage img {
  max-width: none;
  max-height: none;
  margin: 0 auto;
  cursor: zoom-out;
}

@media (dynamic-range: high) {
  .photo-viewer-bar::before {
    align-self: center;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.4);
    color: rgb(255 255 255 / 0.72);
    content: "HDR display";
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    pointer-events: auto;
  }
}

@media (max-width: 1199px) {
  .page {
    width: min(100%, 390px);
    padding: 8px 12px 32px;
  }

  .site-header {
    gap: 10px;
    padding: 8px;
  }

  .path {
    gap: 10px;
  }

  .path .desktop-label,
  .path .desktop-name {
    display: none;
  }

  .mobile-name {
    display: inline;
  }

  .home-canvas-shell {
    height: calc(100svh - 86px);
    min-height: 640px;
  }

  .home-canvas-toolbar {
    inset: auto 12px 12px auto;
  }

  .home-canvas-toolbar button {
    min-width: 42px;
    height: 40px;
    padding-inline: 10px;
  }

  .home-canvas-post-window {
    inset: -10px auto 10px 50%;
    grid-template-rows: 44px minmax(0, 1fr);
    width: calc(100% - 18px);
    border-radius: 18px;
  }

  .home-canvas-post-bar {
    padding: 6px;
  }

  .home-canvas-post-scroll {
    padding: 10px;
  }

  .home-canvas-post-window .screenshot-body,
  .home-canvas-post-window .photo-detail-figure figcaption {
    padding: 18px;
  }

  .about-shell {
    padding: 0;
  }

  .work-item {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .media,
  .video {
    flex-basis: auto;
    min-height: 244px;
    border-radius: 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid .video {
    min-height: 180px;
  }

  .content {
    flex-basis: auto;
    padding: 32px 24px 40px;
  }

  .content h1 {
    max-width: none;
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .content h2 {
    max-width: none;
    font-size: 14px;
  }

  .content p,
  .content li {
    max-width: none;
  }

  .screenshots-page {
    width: min(100%, 430px);
  }

  .screenshots-intro {
    padding: 64px 8px 36px;
  }

  .screenshots-intro h1 {
    font-size: 48px;
  }

  .screenshot-feed {
    gap: 18px;
  }

  .screenshot-post {
    border-radius: 10px;
  }

  .screenshot-media.is-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-media-item {
    min-height: 220px;
  }

  .screenshot-body {
    padding: 20px;
  }

  .screenshot-text {
    font-size: 15px;
  }

  .post-title {
    font-size: 27px;
  }

  .post-index-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px;
  }

  .photos-page {
    width: min(100%, 430px);
  }

  .photos-intro {
    padding: 64px 8px 28px;
  }

  .photos-intro h1 {
    font-size: 54px;
  }

  .photos-footer {
    padding: 12px 8px 60px;
  }

  .photo-feed {
    columns: 1;
  }

  .photo-detail-page {
    width: min(100%, 430px);
  }

  .photo-detail {
    grid-template-columns: 1fr;
  }

  .photo-detail-figure {
    border-radius: 10px;
  }

  .photo-detail-figure figcaption {
    padding: 20px;
  }

  .photo-detail-figure h1 {
    font-size: 30px;
  }

  .photo-viewer-bar {
    inset: 8px 8px auto;
  }

  .photo-viewer-stage {
    padding: 58px 10px 24px;
  }

  .photo-viewer-stage img {
    max-height: calc(100vh - 126px);
  }

  .guide-page {
    width: min(100%, 430px);
  }

  .guide-intro {
    padding: 64px 8px 28px;
  }

  .guide-intro h1 {
    font-size: 52px;
  }

  .guide-routes,
  .guide-quick-picks {
    padding-bottom: 22px;
  }

  .guide-section-heading h2 {
    font-size: 30px;
  }

  .guide-route-grid {
    grid-template-columns: 1fr;
  }

  .guide-route-card h3 {
    font-size: 23px;
  }

  .guide-controls {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 16px;
  }

  .guide-filter-list {
    padding-top: 0;
  }

  .guide-reset {
    justify-self: start;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    grid-template-rows: auto auto 188px auto;
  }

  .guide-card-body {
    padding: 16px;
  }

  .guide-place-preview {
    min-height: 218px;
    margin: 0 16px 16px;
  }

  .guide-card h2 {
    font-size: 23px;
  }

  .guide-map-link {
    margin: 12px 16px 16px;
  }
}
