/*
Theme Name: readymade NULL Cocoon Child
Theme URI: http://massiveheroes.readymade.jp/
Description: Dedicated readymade / NULL exhibition child theme for Cocoon.
Author: Mass-ive-Hero-ES
Template: cocoon-master
Version: 1.7.2
Text Domain: readymade-null
*/

:root {
  --null-bg: #fff;
  --null-text: #111;
  --null-muted: #777;
  --null-line: #dedbd4;
  --null-side: clamp(22px, 4vw, 68px);
  --null-wide: 1280px;
  --null-reading: 880px;
  --null-font: "Inter", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--null-bg);
  scroll-behavior: smooth;
}

body.null-site {
  margin: 0;
  color: var(--null-text);
  background: var(--null-bg);
  font-family: var(--null-font);
  font-weight: 300;
  letter-spacing: 0;
}

body.null-site img {
  max-width: 100%;
  height: auto;
}

body.null-site a {
  color: inherit;
}

.null-site-shell {
  min-height: 100vh;
  overflow: clip;
}

.null-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  min-height: 56px;
  padding: 0 var(--null-side);
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.null-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.null-brand a,
.null-brand img {
  display: block;
}

.null-header--home .null-brand img {
  width: clamp(104px, 9vw, 148px);
}

.null-header--sub .null-brand img {
  width: clamp(68px, 7vw, 112px);
  max-height: 36px;
  object-fit: contain;
}

.null-brand p {
  margin: 0;
  color: rgba(17, 17, 17, .72);
  font-size: clamp(12px, .95vw, 15px);
  white-space: nowrap;
}

.null-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 68px);
}

.null-nav a {
  color: rgba(17, 17, 17, .82);
  font-size: clamp(12px, 1vw, 15px);
  text-decoration: none;
  transition: opacity .25s ease;
}

.null-nav a:hover,
.null-nav a:focus {
  opacity: .48;
}

.null-home {
  width: 100%;
}

.null-hero {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 100vh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: var(--null-hero-image);
  background-position: center;
  background-size: cover;
}

.null-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, var(--null-hero-overlay)) 0%,
      rgba(255, 255, 255, calc(var(--null-hero-overlay) - .18)) 42%,
      rgba(255, 255, 255, calc(var(--null-hero-overlay) - .22)) 62%,
      rgba(255, 255, 255, .90) 100%
    );
}

.null-hero__copy {
  position: relative;
  z-index: 2;
  width: min(90vw, 820px);
  padding-top: 27vh;
  text-align: center;
}

.null-hero__copy > p {
  margin: 0 0 12px;
  color: rgba(17, 17, 17, .38);
  font-size: clamp(14px, 1.4vw, 22px);
  letter-spacing: .08em;
}

.null-hero__copy img {
  display: block;
  width: clamp(180px, 23vw, 340px);
  max-height: 130px;
  margin: 0 auto 40px;
  object-fit: contain;
  opacity: .48;
}

.null-hero__copy h1 {
  margin: 0;
  color: rgba(17, 17, 17, .30);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: .12em;
}

.null-home-current {
  width: 100%;
  max-width: var(--null-wide);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) var(--null-side) clamp(92px, 9vw, 150px);
  background: #fff;
}

.null-section-heading,
.null-page-heading {
  margin-bottom: clamp(36px, 5vw, 72px);
}

.null-section-heading h2,
.null-page-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: .02em;
}

.null-section-heading p,
.null-page-heading p {
  margin: 0;
  color: var(--null-muted);
  font-size: clamp(13px, 1vw, 16px);
}

.null-current-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  gap: clamp(50px, 6vw, 96px);
}

.null-current-card {
  display: block;
  width: min(100%, 220px);
  text-decoration: none;
}

.null-current-card img,
.null-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  background: #f4f4f2;
  filter: saturate(.90) contrast(.97);
  box-shadow:
    0 28px 46px rgba(0, 0, 0, .25),
    0 8px 18px rgba(0, 0, 0, .14);
  transition: transform .45s ease, filter .45s ease, box-shadow .45s ease;
}

.null-current-card:hover img,
.null-current-card:focus img {
  transform: translateY(-5px);
  filter: saturate(1.02) contrast(1);
  box-shadow:
    0 34px 58px rgba(0, 0, 0, .28),
    0 10px 22px rgba(0, 0, 0, .16);
}

.null-home-links {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  border-top: 1px solid var(--null-line);
}

.null-home-link {
  min-height: 190px;
  padding: 34px clamp(28px, 3vw, 50px) 38px;
  border-right: 1px solid var(--null-line);
}

.null-home-link:first-child {
  padding-left: var(--null-side);
}

.null-home-link:last-child {
  padding-right: var(--null-side);
  border-right: 0;
}

.null-home-link h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 300;
  line-height: 1.4;
}

.null-home-link p,
.null-home-link a {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.85;
}

.null-home-link p {
  margin: 0 0 18px;
}

.null-muted {
  color: var(--null-muted);
}

.null-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 15px 0 19px;
}

.null-tag-links a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.null-text-link {
  text-decoration: none;
}

.null-curator-more {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--null-line);
  text-align: right;
}

.null-content {
  width: min(calc(100vw - 40px), var(--null-reading));
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  padding: clamp(130px, 12vw, 180px) 0 clamp(100px, 10vw, 160px);
}

.null-content--standard {
  max-width: var(--null-reading);
}

.null-page-art {
  position: fixed;
  z-index: 0;
  inset: 76px 0 0;
  background-image: var(--null-art-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(78vw, 1100px) auto;
  opacity: var(--null-art-opacity, 0);
  filter: blur(var(--null-art-blur, 0));
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 0,
    #000 calc(100% - var(--null-art-edge, 18%)),
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 0,
    #000 calc(100% - var(--null-art-edge, 18%)),
    transparent 100%
  );
  pointer-events: none;
}

.null-privacy {
  position: relative;
  isolation: isolate;
}

.null-privacy > article {
  position: relative;
  z-index: 2;
}

.null-prose {
  position: relative;
  z-index: 2;
}

.null-prose h1,
.null-prose h2,
.null-prose h3 {
  color: var(--null-text);
  font-family: var(--null-font);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: .04em;
}

.null-prose h1 {
  margin: 0 0 42px;
  font-size: clamp(30px, 3vw, 46px);
}

.null-prose h2 {
  margin: clamp(80px, 10vw, 140px) 0 34px;
  font-size: clamp(27px, 2.6vw, 40px);
  scroll-margin-top: 110px;
}

.null-prose h3 {
  margin: 60px 0 28px;
  font-size: clamp(22px, 2vw, 32px);
}

.null-prose p,
.null-prose li {
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: .08em;
}

.null-prose p {
  margin: 0 0 28px;
}

.null-prose a {
  text-underline-offset: 4px;
}

.null-concept {
  position: relative;
  width: min(calc(100vw - 40px), var(--null-reading));
  isolation: isolate;
}

.null-concept::before,
.null-concept::after {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 76px 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(64vw, 1100px) auto;
  filter: blur(var(--null-concept-blur, 0));
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 0,
    #000 calc(100% - var(--null-concept-edge, 18%)),
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 0,
    #000 calc(100% - var(--null-concept-edge, 18%)),
    transparent 100%
  );
  pointer-events: none;
}

.null-concept::before {
  background-image: var(--null-concept-image-1);
  opacity: var(--null-concept-opacity-1);
}

.null-concept::after {
  background-image: var(--null-concept-image-2);
  opacity: var(--null-concept-opacity-2);
}

.null-concept__inner,
.null-concept-tags {
  position: relative;
  z-index: 2;
}

.null-concept-tags {
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: 28px;
  border-top: 1px solid var(--null-line);
}

.null-concept-tags h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 300;
}

.null-exhibition {
  position: relative;
  width: min(calc(100vw - 40px), 1180px);
  isolation: isolate;
}

.null-exhibition::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 56px 0 0;
  background-image: var(--null-exhibition-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: var(--null-exhibition-bg-opacity);
  filter: blur(var(--null-exhibition-bg-blur, 0));
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 0,
    #000 calc(100% - var(--null-exhibition-bg-edge, 12%)),
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 0,
    #000 calc(100% - var(--null-exhibition-bg-edge, 12%)),
    transparent 100%
  );
  pointer-events: none;
}

.null-exhibition .null-page-heading,
.null-exhibition-cloud {
  position: relative;
  z-index: 2;
}

.null-exhibition-cloud {
  min-height: 980px;
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
  align-items: center;
}

.null-exhibition-work {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  transition: z-index .1s step-end;
}

.null-exhibition-work:hover,
.null-exhibition-work:focus {
  z-index: 20;
}

.null-exhibition-work img,
.null-exhibition-work .null-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  opacity: .48;
  filter: saturate(.62) contrast(.92) brightness(1.10);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
  transition: transform .5s ease, opacity .5s ease, filter .5s ease, box-shadow .5s ease;
}

.null-exhibition-work:hover img,
.null-exhibition-work:focus img {
  opacity: 1;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.85);
  box-shadow: 0 34px 72px rgba(0, 0, 0, .28);
}

.null-exhibition-work:nth-child(10n+1) { width: 82px; transform: translateY(-28px); }
.null-exhibition-work:nth-child(10n+2) { width: 116px; transform: translateY(22px); }
.null-exhibition-work:nth-child(10n+3) { width: 68px; transform: translateY(-12px); }
.null-exhibition-work:nth-child(10n+4) { width: 138px; grid-column: span 2; transform: translateY(36px); }
.null-exhibition-work:nth-child(10n+5) { width: 96px; transform: translateY(-24px); }
.null-exhibition-work:nth-child(10n+6) { width: 124px; transform: translateY(28px); }
.null-exhibition-work:nth-child(10n+7) { width: 74px; transform: translateY(-18px); }
.null-exhibition-work:nth-child(10n+8) { width: 110px; transform: translateY(34px); }
.null-exhibition-work:nth-child(10n+9) { width: 88px; transform: translateY(-22px); }
.null-exhibition-work:nth-child(10n+10) { width: 144px; grid-column: span 2; transform: translateY(26px); }

.null-archive {
  width: min(calc(100vw - 40px), 1120px);
}

.null-archive-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.null-archive-label {
  display: block;
  text-decoration: none;
}

.null-archive-label img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: .20;
  filter: saturate(.55) contrast(.92) brightness(1.1);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
  transition: opacity .4s ease, filter .4s ease, transform .4s ease;
}

.null-archive-label span {
  display: block;
  margin-top: 14px;
  font-size: clamp(18px, 1.5vw, 24px);
  transition: opacity .35s ease;
}

.null-archive-label:hover img,
.null-archive-label:focus img {
  opacity: .62;
  filter: saturate(.85) contrast(.98);
  transform: translateY(-4px);
}

.null-archive-label:hover span,
.null-archive-label:focus span {
  opacity: 0;
}

.null-record-case {
  min-height: 190px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--null-line);
}

.null-record-stack {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.null-record-card {
  position: relative;
  z-index: 1;
  display: block;
  width: 86px;
  min-width: 86px;
  margin-right: -20px;
  transition: transform .45s ease;
}

.null-record-card:nth-child(2n) { transform: translateY(14px) rotate(-2deg); }
.null-record-card:nth-child(3n) { transform: translateY(4px) rotate(2deg); }
.null-record-card:nth-child(4n) { transform: translateY(22px) rotate(-1deg); }

.null-record-card img,
.null-record-card .null-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.55) contrast(.92) brightness(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.null-record-card:hover,
.null-record-card:focus {
  z-index: 20;
  transform: translateY(-52px) scale(1.32) rotate(0deg);
}

.null-record-card:hover img,
.null-record-card:focus img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.02);
}

/* Emotion Archive */
.null-emotion-archive {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  padding-top: 56px;
  overflow: hidden;
  background: #f7f7f5;
}

.null-emotion-heading,
.null-emotion-stages {
  position: relative;
  z-index: 2;
}

.null-archive-art {
  background-size: min(82vw, 1280px) auto;
}

.null-emotion-heading {
  min-height: 142px;
  padding: 38px var(--null-side) 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--null-line);
}

.null-emotion-heading p {
  margin: 0;
  color: var(--null-muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.null-emotion-heading h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .04em;
}

.null-emotion-stage {
  position: relative;
  min-height: clamp(430px, 52vw, 660px);
  display: grid;
  grid-template-columns: clamp(150px, 14vw, 220px) minmax(0, 1fr);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--null-line);
  background: rgba(255,255,255,.54);
}

.null-emotion-stage-head {
  position: relative;
  z-index: 2;
  padding: 36px 26px 30px var(--null-side);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--null-line);
  background: rgba(247,247,245,.74);
  isolation: isolate;
  overflow: hidden;
}

.null-emotion-stage-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 7%;
  background-image: var(--null-tag-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: var(--null-tag-image-opacity, .24);
  filter:
    saturate(.38)
    contrast(.94)
    blur(var(--null-tag-image-blur, 0));
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0,
      #000 var(--null-tag-image-edge, 18%),
      #000 calc(100% - var(--null-tag-image-edge, 18%)),
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      #000 var(--null-tag-image-edge, 18%),
      #000 calc(100% - var(--null-tag-image-edge, 18%)),
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0,
      #000 var(--null-tag-image-edge, 18%),
      #000 calc(100% - var(--null-tag-image-edge, 18%)),
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      #000 var(--null-tag-image-edge, 18%),
      #000 calc(100% - var(--null-tag-image-edge, 18%)),
      transparent 100%
    );
  mask-composite: intersect;
  pointer-events: none;
}

.null-emotion-stage-head span,
.null-emotion-stage-head small {
  color: var(--null-muted);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .12em;
}

.null-emotion-stage-head a {
  color: var(--null-text);
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .05em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.null-emotion-viewport {
  min-width: 0;
  overflow: hidden;
}

.null-emotion-flow {
  width: max-content;
  min-height: 100%;
  display: flex;
  animation: null-emotion-flow 54s linear infinite;
  will-change: transform;
}

.null-emotion-stage:nth-child(even) .null-emotion-flow {
  animation-direction: reverse;
  animation-duration: 62s;
}

.null-emotion-viewport:hover .null-emotion-flow,
.null-emotion-viewport:focus-within .null-emotion-flow {
  animation-play-state: paused;
}

.null-emotion-sequence {
  min-height: 100%;
  display: flex;
}

.null-emotion-entry {
  position: relative;
  width: clamp(250px, 25vw, 390px);
  min-height: 100%;
  padding: 38px clamp(24px, 2.6vw, 42px) 48px;
  display: flex;
  flex-direction: column;
  color: var(--null-text);
  border-right: 1px solid var(--null-line);
  text-decoration: none;
  background: rgba(255,255,255,.18);
  transition: background .35s ease;
}

.null-emotion-entry:hover,
.null-emotion-entry:focus {
  background: rgba(255,255,255,.82);
}

.null-emotion-date {
  margin-bottom: clamp(24px, 3vw, 44px);
  color: var(--null-muted);
  font-size: 10px;
  letter-spacing: .1em;
}

.null-emotion-entry h2 {
  margin: 0 0 24px;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: .04em;
}

.null-emotion-entry:nth-child(4n+2) h2 {
  order: 3;
  margin-top: auto;
  margin-bottom: 18px;
}

.null-emotion-entry:nth-child(4n+2) p {
  order: 2;
}

.null-emotion-entry:nth-child(4n+2) i {
  order: 4;
  margin-top: 0;
}

.null-emotion-entry:nth-child(4n+3) h2 {
  max-height: 250px;
  align-self: center;
  writing-mode: vertical-rl;
}

.null-emotion-entry:nth-child(4n+4) {
  justify-content: center;
}

.null-emotion-entry:nth-child(4n+4) i {
  margin-top: 34px;
}

.null-emotion-entry p {
  margin: 0;
  font-size: clamp(12px, .95vw, 14px);
  line-height: 2.05;
  letter-spacing: .04em;
}

.null-emotion-entry i {
  margin-top: auto;
  padding-top: 30px;
  align-self: flex-end;
  font-style: normal;
}

.null-emotion-empty {
  margin: auto;
  color: var(--null-muted);
  font-size: 13px;
}

.null-emotion-swipe {
  display: none;
}

@keyframes null-emotion-flow {
  to {
    transform: translateX(-50%);
  }
}

.null-tag-page {
  width: min(calc(100vw - 40px), 1120px);
}

.null-tag-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 56px);
}

.null-tag-card {
  display: block;
}

.null-tag-card img,
.null-tag-card .null-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.62) contrast(.90) brightness(1.1);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
  transition: transform .45s ease, filter .45s ease, opacity .45s ease, box-shadow .45s ease;
}

.null-tag-card:hover img,
.null-tag-card:focus img {
  opacity: 1;
  filter: saturate(1.05) contrast(1.02);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 58px rgba(0, 0, 0, .24);
}

.null-pagination {
  margin-top: 80px;
}

.null-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.null-pagination a,
.null-pagination span {
  text-decoration: none;
}

.null-single {
  width: 100%;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  padding: 56px 0 clamp(100px, 10vw, 160px);
}

.null-single-article {
  position: relative;
  color: var(--null-body-color, #111);
}

.null-mobile-snap {
  display: none;
}

.null-single-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.86) 54%, rgba(255,255,255,.94));
  border-bottom: 1px solid var(--null-line);
}

.null-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--null-sense-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: var(--null-sense-opacity, .22);
  filter: saturate(.58) contrast(.94) brightness(1.04);
}

.null-single-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--null-mist-color, #fff);
  opacity: var(--null-mist-opacity, 1);
}

.null-single-intro {
  position: relative;
  z-index: 2;
  width: min(calc(100vw - 40px), 1040px);
  margin: 0 auto;
  padding: clamp(38px, 4vw, 58px) 0;
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

.null-single-image img,
.null-single-image .null-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  filter: saturate(.82) contrast(.96) brightness(1.04);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, .18),
    0 8px 18px rgba(0, 0, 0, .09);
}

.null-single-meta {
  min-width: 0;
  max-width: 680px;
}

.null-kicker,
.null-label {
  margin: 0 0 13px;
  color: var(--null-muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.null-single-meta h1 {
  margin: 0 0 clamp(22px, 2.5vw, 34px);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: .06em;
  color: var(--null-title-color, #111);
}

.null-summary {
  max-width: 620px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
}

.null-summary > p:last-child {
  margin: 0;
  color: var(--null-summary-color, #111);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  letter-spacing: .05em;
}

.null-summary .null-label {
  color: var(--null-summary-color, #111);
}

.null-observation {
  width: min(100%, 660px);
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(222,219,212,.95);
}

.null-observation > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 5px 0;
}

.null-observation dt,
.null-observation dd {
  margin: 0;
  font-size: clamp(12px, .95vw, 14px);
  line-height: 1.7;
}

.null-observation dt {
  color: var(--null-muted);
  letter-spacing: .06em;
}

.null-observation dd a {
  text-decoration: none;
  border-bottom: 1px solid rgba(17,17,17,.24);
}

.null-exhibition-section {
  width: min(calc(100vw - 40px), 1120px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 68px) 0;
  border-bottom: 1px solid var(--null-line);
}

.null-note-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: clamp(30px, 4vw, 56px);
  justify-content: start;
}

.null-section-label > p {
  margin: 0 0 12px;
  color: var(--null-muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.null-section-label h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.4;
}

.null-note-copy {
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid var(--null-line);
}

.null-note-copy p,
.null-note-copy li {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.95;
  letter-spacing: .06em;
}

.null-soundscape {
  width: min(calc(100vw - 40px), 1120px);
  margin: clamp(26px, 3vw, 42px) auto 0;
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1.7fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  color: rgba(255,255,255,.88);
  background: #171b1e;
  border-radius: 4px;
}

.null-soundscape .null-label {
  color: rgba(255,255,255,.52);
}

.null-soundscape h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.4;
}

.null-soundscape-copy > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.9;
}

.null-soundscape-meta {
  margin: 24px 0 0;
}

.null-soundscape-meta > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 6px 0;
}

.null-soundscape-meta dt,
.null-soundscape-meta dd {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.null-soundscape-meta dt::after {
  content: "｜";
  float: right;
}

.null-soundscape-meta--primary dt,
.null-soundscape-meta--primary dd {
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.2vw, 18px);
}

.null-soundscape-player iframe {
  display: block;
  width: 100%;
  border: 0;
}

.null-soundscape-player .null-spotify-embed {
  min-height: 152px;
  border-radius: 8px;
}

.null-soundscape-player > a {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.26);
  text-decoration: none;
}

.null-read-work {
  width: min(calc(100vw - 40px), 1120px);
  margin: clamp(42px, 5vw, 72px) auto 0;
  padding: 30px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--null-line);
  border-bottom: 1px solid var(--null-line);
}

.null-read-work h2 {
  margin: 0;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 300;
}

.null-read-work > a {
  min-width: 220px;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  color: inherit;
  border-bottom: 1px solid var(--null-text);
  text-decoration: none;
}

.null-mobile-summary {
  color: var(--null-summary-color, #111);
}

.null-nearby,
.null-deepening,
.null-sense-records,
.null-objects,
.null-article-text {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
}

.null-sense-record-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  counter-reset: null-record;
}

.null-sense-record-list li {
  min-height: 96px;
  padding: 8px 26px 18px;
  border-left: 1px solid var(--null-line);
  counter-increment: null-record;
}

.null-sense-record-list li::before {
  content: counter(null-record, decimal-leading-zero) ".";
  display: block;
  margin-bottom: 14px;
  color: var(--null-muted);
  font-size: 10px;
  letter-spacing: .1em;
}

.null-sense-record-list strong,
.null-sense-record-list span {
  display: block;
}

.null-sense-record-list strong {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.null-sense-record-list span {
  margin-top: 6px;
  color: var(--null-muted);
  font-size: 12px;
  line-height: 1.75;
}

.null-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.null-nearby-card {
  position: relative;
  min-height: 142px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--null-text);
  background:
    linear-gradient(145deg, rgba(242,243,242,.94), rgba(255,255,255,.98));
  border: 1px solid var(--null-line);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}

.null-nearby-card:hover,
.null-nearby-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0,0,0,.08);
}

.null-nearby-card strong {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: .05em;
}

.null-nearby-card span {
  margin-top: 9px;
  color: var(--null-muted);
  font-size: 12px;
  line-height: 1.7;
}

.null-nearby-card i {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-style: normal;
}

.null-deepening-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.null-deepening-card {
  position: relative;
  min-height: 126px;
  padding: 20px 42px 20px 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--null-line);
  text-decoration: none;
}

.null-deepening-card:nth-child(odd) {
  margin-right: 26px;
}

.null-deepening-card:nth-child(even) {
  margin-left: 26px;
}

.null-deepening-image img,
.null-deepening-image .null-image-placeholder {
  display: block;
  width: 72px;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  box-shadow: 0 9px 20px rgba(0,0,0,.12);
}

.null-deepening-copy strong,
.null-deepening-copy small {
  display: block;
}

.null-deepening-copy strong {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.null-deepening-copy small {
  margin-top: 8px;
  color: var(--null-muted);
  font-size: 11px;
}

.null-deepening-card i {
  position: absolute;
  right: 8px;
  font-style: normal;
}

.null-object-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.null-object-card {
  min-width: 0;
  padding-bottom: 16px;
  display: block;
  border-bottom: 1px solid var(--null-line);
  text-decoration: none;
}

.null-object-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  object-fit: cover;
  filter: saturate(.72) contrast(.95) brightness(1.04);
  transition: filter .35s ease, transform .35s ease;
}

.null-object-card:hover img {
  filter: saturate(1) contrast(1) brightness(1);
  transform: translateY(-3px);
}

.null-object-card strong,
.null-object-card span {
  display: block;
}

.null-object-card strong {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.null-object-card span {
  margin-top: 6px;
  color: var(--null-muted);
  font-size: 11px;
  line-height: 1.7;
}

.null-source-footer {
  width: min(calc(100vw - 40px), 1120px);
  margin: 0 auto;
  padding: 36px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--null-muted);
  font-size: 12px;
}

.null-source-footer a {
  color: var(--null-text);
  text-decoration: none;
}

.null-footer {
  min-height: 64px;
  padding: 22px var(--null-side);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--null-muted);
  border-top: 1px solid rgba(222, 219, 212, .72);
  font-size: 12px;
}

.null-footer a {
  text-decoration: none;
}

.null-footer p {
  margin: 0;
}

.null-not-found {
  padding-top: 12vh;
  text-align: center;
}

@media (max-width: 1100px) {
  .null-current-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .null-home-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .null-home-link:nth-child(2) {
    border-right: 0;
  }

  .null-home-link:nth-child(-n+2) {
    border-bottom: 1px solid var(--null-line);
  }

  .null-tag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .null-header {
    position: absolute;
    min-height: 88px;
    padding-top: 11px;
    padding-bottom: 10px;
    display: block;
  }

  .null-header--home .null-brand img {
    width: 142px;
  }

  .null-header--sub .null-brand img {
    width: 92px;
  }

  .null-brand {
    gap: 12px;
  }

  .null-nav {
    margin-top: 11px;
    gap: 18px;
    flex-wrap: wrap;
  }

  .null-nav a {
    font-size: 12px;
  }

  .null-hero {
    min-height: 680px;
  }

  .null-hero__copy {
    padding-top: 18vh;
  }

  .null-hero__copy h1 {
    font-size: clamp(12px, 3.7vw, 17px);
    letter-spacing: .03em;
    white-space: nowrap;
  }

  .null-current-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .null-current-card {
    width: min(100%, 190px);
  }

  .null-home-links {
    grid-template-columns: 1fr;
  }

  .null-home-link,
  .null-home-link:first-child,
  .null-home-link:last-child {
    min-height: 0;
    padding: 30px var(--null-side);
    border-right: 0;
    border-bottom: 1px solid var(--null-line);
  }

  .null-home-link:last-child {
    border-bottom: 0;
  }

  .null-content {
    width: min(calc(100vw - 40px), var(--null-reading));
    padding-top: 124px;
  }

  .null-single {
    width: 100%;
    padding-top: 88px;
    padding-bottom: 0;
  }

  .null-single-desktop {
    display: none;
  }

  .null-mobile-snap {
    display: block;
    height: calc(100svh - 88px);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #fff;
  }

  .null-mobile-snap::-webkit-scrollbar {
    display: none;
  }

  .null-mobile-panel {
    position: relative;
    width: 100%;
    height: calc(100svh - 88px);
    min-height: calc(100svh - 88px);
    padding: clamp(30px, 8vw, 48px) 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    color: var(--null-body-color, #111);
  }

  .null-mobile-first {
    isolation: isolate;
    justify-content: flex-end;
    padding-bottom: 72px;
    background: #f3f3f1;
  }

  .null-mobile-first::before,
  .null-mobile-first::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .null-mobile-first::before {
    z-index: -2;
    background-image: var(--null-sense-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: var(--null-sense-opacity, .22);
  }

  .null-mobile-first::after {
    z-index: -1;
    background: var(--null-mist-color, #fff);
    opacity: var(--null-mist-opacity, 1);
  }

  .null-mobile-first-copy {
    width: min(100%, 560px);
  }

  .null-mobile-eyebrow {
    margin: 0 0 14px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .null-mobile-sense {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: .08em;
  }

  .null-mobile-first h1 {
    margin: 0 0 24px;
    color: var(--null-title-color, #111);
    font-size: clamp(28px, 9vw, 44px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: .05em;
  }

  .null-mobile-summary {
    max-width: 34em;
    margin: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: .05em;
  }

  .null-mobile-swipe {
    position: absolute;
    right: 22px;
    bottom: 18px;
    margin: 0;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .null-mobile-swipe::after {
    content: "↓";
    margin-left: 10px;
  }

  .null-mobile-second {
    gap: 26px;
    justify-content: flex-start;
    background: #fff;
  }

  .null-mobile-work {
    width: min(46vw, 190px);
    margin: 0 auto;
  }

  .null-mobile-work img,
  .null-mobile-work .null-image-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4.2;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
  }

  .null-mobile-note {
    width: 100%;
  }

  .null-mobile-note .null-prose {
    max-height: 24vh;
    overflow-y: auto;
  }

  .null-mobile-note .null-prose p,
  .null-mobile-note .null-prose li {
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: .04em;
  }

  .null-mobile-note dl {
    margin: 20px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--null-line);
  }

  .null-mobile-note dl > div {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 5px 0;
  }

  .null-mobile-note dt,
  .null-mobile-note dd {
    margin: 0;
    font-size: 11px;
    line-height: 1.7;
  }

  .null-mobile-note dt {
    color: var(--null-muted);
  }

  .null-mobile-third {
    color: rgba(255,255,255,.82);
    background: #171b1e;
  }

  .null-mobile-soundscape h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(25px, 8vw, 38px);
    font-weight: 300;
    line-height: 1.4;
  }

  .null-mobile-soundscape .null-soundscape-meta {
    margin: 26px 0 40px;
  }

  .null-mobile-soundscape .null-soundscape-meta > div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  .null-mobile-soundscape .null-soundscape-meta--primary dt,
  .null-mobile-soundscape .null-soundscape-meta--primary dd {
    font-size: 17px;
  }

  .null-mobile-soundscape > a {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.46);
    text-decoration: none;
  }

  .null-mobile-unavailable {
    color: rgba(255,255,255,.42);
    font-size: 12px;
  }

  .null-mobile-fourth {
    justify-content: flex-start;
    gap: 34px;
    background: #f8f8f6;
  }

  .null-mobile-links,
  .null-mobile-nearby,
  .null-mobile-objects-placeholder {
    width: 100%;
  }

  .null-mobile-links > a,
  .null-mobile-nearby > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    border-bottom: 1px solid var(--null-line);
    font-size: 13px;
    text-decoration: none;
  }

  .null-mobile-nearby > a::after {
    content: "→";
  }

  .null-mobile-objects-placeholder {
    min-height: 100px;
    padding: 22px;
    border: 1px solid var(--null-line);
  }

  .null-mobile-objects-placeholder span {
    color: var(--null-muted);
    font-size: 12px;
  }

  .null-concept::before,
  .null-concept::after {
    top: 88px;
    background-size: 120vw auto;
  }

  .null-page-art {
    inset: 88px 0 0;
    background-size: 135vw auto;
  }

  .null-exhibition {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .null-exhibition::before {
    inset: 88px 0 0;
    background-size: cover;
  }

  .null-exhibition-cloud {
    min-height: 760px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px 8px;
  }

  .null-exhibition-work,
  .null-exhibition-work:nth-child(n) {
    width: 54px;
    grid-column: auto;
  }

  .null-exhibition-work:nth-child(5n+1) { width: 66px; grid-column: span 2; transform: translateY(18px); }
  .null-exhibition-work:nth-child(5n+2) { width: 48px; transform: translateY(-12px); }
  .null-exhibition-work:nth-child(5n+3) { width: 72px; grid-column: span 2; transform: translateY(6px); }
  .null-exhibition-work:nth-child(5n+4) { width: 50px; transform: translateY(22px); }
  .null-exhibition-work:nth-child(5n+5) { width: 62px; grid-column: span 2; transform: translateY(-18px); }

  .null-exhibition-work:hover img,
  .null-exhibition-work:focus img {
    transform: scale(1.5);
  }

  .null-emotion-archive {
    height: 100svh;
    padding-top: 88px;
    overflow: hidden;
  }

  .null-emotion-heading {
    display: none;
  }

  .null-emotion-stages {
    height: calc(100svh - 88px);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    scrollbar-width: none;
  }

  .null-emotion-stages::-webkit-scrollbar {
    display: none;
  }

  .null-emotion-stage {
    width: 100%;
    height: calc(100svh - 88px);
    min-height: calc(100svh - 88px);
    display: block;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .null-emotion-stage-head {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    padding: 18px 22px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--null-line);
    background: rgba(247,247,245,.88);
  }

  .null-emotion-stage-head::before {
    inset: 7px auto 7px 48px;
    width: 92px;
    opacity: .20;
    background-position: center;
  }

  .null-emotion-stage-head a {
    font-size: 24px;
    writing-mode: horizontal-tb;
  }

  .null-emotion-stage-head small {
    margin-left: auto;
  }

  .null-emotion-viewport {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 82px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .null-emotion-viewport::-webkit-scrollbar {
    display: none;
  }

  .null-emotion-flow {
    height: 100%;
    min-height: 0;
    animation: none !important;
    transform: none !important;
  }

  .null-emotion-sequence {
    height: 100%;
    min-height: 0;
  }

  .null-emotion-sequence[aria-hidden="true"] {
    display: none;
  }

  .null-emotion-entry {
    width: 82vw;
    min-width: 82vw;
    height: 100%;
    min-height: 0;
    padding: 34px 26px 42px;
    overflow-y: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: rgba(255,255,255,.42);
  }

  .null-emotion-entry h2 {
    max-height: none;
    align-self: auto;
    font-size: clamp(27px, 8vw, 39px);
    writing-mode: horizontal-tb;
  }

  .null-emotion-entry:nth-child(4n+2) h2 {
    margin-top: auto;
  }

  .null-emotion-entry:nth-child(4n+3) h2 {
    max-height: 42vh;
    align-self: center;
    writing-mode: vertical-rl;
  }

  .null-emotion-entry:nth-child(4n+4) {
    justify-content: center;
  }

  .null-emotion-entry p {
    font-size: 13px;
    line-height: 2;
  }

  .null-emotion-empty {
    position: relative;
    z-index: 2;
    padding: 126px 24px 0;
  }

  .null-emotion-swipe {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 14px;
    display: block;
    margin: 0;
    color: var(--null-muted);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    pointer-events: none;
  }

  .null-archive-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .null-archive-label {
    max-width: 160px;
  }

  .null-record-card {
    width: 70px;
    min-width: 70px;
    margin-right: -18px;
  }

  .null-single-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 62px;
  }

  .null-single-image {
    max-width: 260px;
  }

  .null-single-meta h1 {
    font-size: clamp(22px, 7vw, 34px);
    white-space: normal;
  }

  .null-observation > div {
    grid-template-columns: 94px 1fr;
  }

  .null-note-section,
  .null-nearby,
  .null-deepening,
  .null-sense-records,
  .null-objects,
  .null-article-text {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .null-note-copy {
    padding: 0;
    border-left: 0;
  }

  .null-soundscape {
    grid-template-columns: 1fr;
  }

  .null-nearby-grid {
    grid-template-columns: 1fr;
  }

  .null-sense-record-list {
    grid-template-columns: 1fr;
  }

  .null-object-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .null-deepening-grid {
    grid-template-columns: 1fr;
  }

  .null-deepening-card:nth-child(odd),
  .null-deepening-card:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .null-prose p,
  .null-prose li {
    font-size: 16px;
    line-height: 2.15;
    letter-spacing: .05em;
  }

  .null-footer {
    display: block;
  }

  .null-footer p {
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .null-tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .null-emotion-flow {
    animation: none !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
