:root {
  --ink: #16130e;
  --ink-soft: #2c261c;
  --stone: #e4ddd0;
  --paper: #f8f5ee;
  --paper-warm: #f1ebe0;
  --clay: #d7cfbf;
  --line: #c5bba8;
  --line-strong: #9f9480;
  --ash: #867d6b;
  --ash-2: #a99f8c;
  --pink: #e3a9ae;
  --pink-ink: #a75f69;
  --pink-soft: #efc9cc;
  --serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --serif-latin: "Cormorant Garamond", Georgia, serif;
  --sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --shadow-paper: 0 24px 52px rgba(54, 44, 31, 0.11), 0 3px 10px rgba(54, 44, 31, 0.07);
  --expo: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(42rem 28rem at 11% 9%, rgba(227, 169, 174, .16), transparent 66%),
    radial-gradient(40rem 25rem at 86% 4%, rgba(138, 174, 188, .11), transparent 68%),
    linear-gradient(135deg, #f8f5ef 0%, var(--stone) 100%);
  font-family: var(--sans);
}

.grain-page::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(167, 95, 105, .32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1200;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus {
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip-path: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(20px, 3vw, 52px);
  border-bottom: 1px solid rgba(134, 125, 107, .28);
  background: rgba(248, 245, 238, .76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(22, 19, 14, .55);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--ash);
  font-family: var(--serif-latin);
  font-size: 9px;
  letter-spacing: .16em;
}

.section-identity {
  text-align: center;
}

.section-identity span,
.section-identity strong {
  display: block;
}

.section-identity span {
  color: var(--pink-ink);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .11em;
}

.section-identity strong {
  margin-top: 3px;
  color: var(--ash);
  font-family: var(--serif-latin);
  font-size: 11px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .08em;
}

.help-button {
  justify-self: end;
  min-height: 44px;
  padding: 8px 0 6px 18px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  cursor: pointer;
  background: transparent;
  font-size: 12px;
  letter-spacing: .06em;
}

.help-button:hover {
  border-color: var(--pink-ink);
  color: var(--pink-ink);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 88px) 0 38px;
}

.intro-copy {
  max-width: 780px;
}

.eyebrow,
.view-index {
  margin: 0;
  color: var(--pink-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
}

.eyebrow::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  content: "";
  background: var(--pink);
}

.intro h1 {
  max-width: 760px;
  margin: 16px 0 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 74px);
  font-weight: 500;
  letter-spacing: .045em;
  line-height: 1.18;
  text-wrap: balance;
}

.intro-copy > p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.view-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 310px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}

.view-switch button {
  position: relative;
  z-index: 2;
  min-height: 72px;
  padding: 8px 16px;
  border: 0;
  cursor: pointer;
  background: transparent;
  text-align: left;
  opacity: .48;
  transition: opacity 240ms ease;
}

.view-switch button:hover,
.view-switch button.is-active {
  opacity: 1;
}

.view-switch span,
.view-switch small {
  display: block;
}

.view-switch span {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .08em;
}

.view-switch small {
  margin-top: 6px;
  color: var(--ash);
  font-size: 10px;
  letter-spacing: .18em;
}

.switch-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--pink-ink);
  transform: translateX(100%);
  transition: transform 560ms var(--expo);
}

.view-switch:has([data-view="concept"].is-active) .switch-indicator {
  transform: translateX(0);
}

.view-stage {
  position: relative;
  border-top: 1px solid rgba(134, 125, 107, .25);
  background: rgba(248, 245, 238, .34);
}

.view-panel {
  width: min(1600px, 100%);
  min-height: 760px;
  margin: 0 auto;
  animation: view-enter 620ms var(--expo) both;
}

.view-panel[hidden] {
  display: none;
}

@keyframes view-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.view-heading {
  display: flex;
  min-height: 114px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 26px clamp(24px, 4vw, 64px) 22px;
  border-bottom: 1px solid rgba(134, 125, 107, .25);
}

.view-heading h2 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: .05em;
}

.lens-switch {
  display: flex;
  gap: 4px;
}

.lens-switch button {
  min-height: 40px;
  padding: 7px 13px;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  color: var(--ash);
  background: transparent;
  font-size: 12px;
}

.lens-switch button:hover,
.lens-switch button.is-active {
  color: var(--ink);
  border-color: var(--pink-ink);
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 680px;
}

.root-canvas {
  position: relative;
  min-width: 0;
  min-height: 680px;
  overflow: hidden;
  border-right: 1px solid rgba(134, 125, 107, .25);
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(215,207,191,.16)),
    repeating-linear-gradient(172deg, transparent 0 74px, rgba(134,125,107,.045) 75px, transparent 76px 132px);
}

.soil-field {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.soil-field-a {
  top: 12%;
  left: 12%;
  width: 43%;
  height: 46%;
  opacity: .16;
  background: radial-gradient(circle, rgba(227,169,174,.52), transparent 70%);
}

.soil-field-b {
  right: 8%;
  bottom: 5%;
  width: 48%;
  height: 48%;
  opacity: .13;
  background: radial-gradient(circle, rgba(100,143,160,.42), transparent 70%);
}

.root-svg,
.root-node-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.root-svg {
  overflow: visible;
}

.root-path {
  fill: none;
  stroke: rgba(70, 60, 48, .18);
  stroke-linecap: round;
  transition: opacity 320ms ease, stroke 320ms ease, stroke-width 320ms ease;
  vector-effect: non-scaling-stroke;
}

.root-path--main {
  stroke-width: 2.2;
}

.root-path--branch {
  stroke-width: 1.15;
}

.root-path.is-muted {
  opacity: .14;
}

.root-path.is-active {
  opacity: 1;
  stroke: var(--pink-ink);
}

.root-path--main.is-active {
  stroke-width: 3.3;
}

.root-path--branch.is-active {
  stroke-width: 2;
}

.root-node-layer {
  pointer-events: none;
}

.root-node {
  --node-color: var(--ink-soft);
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--node-color) 48%, transparent);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  background: rgba(248, 245, 238, .9);
  box-shadow: 0 7px 20px rgba(66, 54, 39, .06);
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease, transform 300ms var(--expo), background 260ms ease, box-shadow 260ms ease;
  pointer-events: auto;
  text-align: center;
}

.root-node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--node-color) 18%, transparent);
}

.root-node--core {
  width: 114px;
  height: 114px;
  border-color: var(--pink-ink);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .12em;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.98), rgba(239,201,204,.72));
}

.root-node--group {
  width: 78px;
  height: 78px;
  border-width: 1.4px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .08em;
}

.root-node--leaf {
  width: 58px;
  height: 58px;
  padding: 6px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.25;
}

.root-node.is-active {
  z-index: 4;
  border-color: var(--pink-ink);
  background: rgba(255, 249, 247, .98);
  box-shadow: 0 0 0 7px rgba(227,169,174,.15), 0 14px 34px rgba(80,51,54,.13);
  transform: translate(-50%, -50%) scale(1.08);
}

.root-node.is-related {
  border-color: var(--node-color);
  background: rgba(255,253,249,.96);
}

.root-node.is-muted {
  opacity: .22;
}

.ground-line {
  position: absolute;
  top: 36px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 14%, var(--line-strong) 86%, transparent);
}

.ground-line span {
  position: absolute;
  right: 25px;
  top: -25px;
  color: var(--ash);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .22em;
}

.root-instruction {
  position: absolute;
  bottom: 12px;
  left: 28px;
  margin: 0;
  color: var(--ash);
  font-size: 10px;
  letter-spacing: .08em;
}

.concept-detail {
  --detail-color: var(--pink-ink);
  min-height: 680px;
  padding: 42px 34px 36px;
  background: rgba(248,245,238,.64);
}

.detail-kind {
  margin: 0 0 20px;
  color: var(--detail-color);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
}

.concept-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: .07em;
}

.detail-question {
  margin: 25px 0 0;
  padding-left: 17px;
  border-left: 2px solid var(--detail-color);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
}

.detail-note {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
}

.detail-section {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(134,125,107,.28);
}

.detail-section h4 {
  margin: 0 0 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.related-work-list {
  display: grid;
  gap: 8px;
}

.related-work {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 10px 11px;
  border: 1px solid rgba(134,125,107,.28);
  cursor: pointer;
  background: rgba(255,253,249,.45);
  text-align: left;
}

.related-work:hover {
  border-color: var(--detail-color);
  background: rgba(255,253,249,.86);
}

.related-work small {
  color: var(--pink-ink);
  font-family: var(--serif-latin);
  font-size: 12px;
}

.related-work span {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.45;
}

.detail-empty {
  margin: 0;
  color: var(--ash);
  font-size: 12px;
  line-height: 1.8;
}

.gallery-note {
  max-width: 460px;
  margin: 0;
  color: var(--ash);
  font-size: 11px;
  line-height: 1.8;
  text-align: right;
}

.gallery-shell {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.48) 0 73%, rgba(215,207,191,.22) 73% 100%),
    repeating-linear-gradient(90deg, transparent 0 159px, rgba(134,125,107,.04) 160px, transparent 161px 320px);
}

.gallery-roots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gallery-root,
.gallery-root-branch {
  fill: none;
  stroke: rgba(75,64,50,.12);
  stroke-linecap: round;
  transition: opacity 300ms ease, stroke 300ms ease, stroke-width 300ms ease;
  vector-effect: non-scaling-stroke;
}

.gallery-root {
  stroke-width: 2;
}

.gallery-root-branch {
  stroke-width: 1;
}

.gallery-shell.has-active-work .gallery-root {
  opacity: .14;
}

.gallery-root.is-active {
  opacity: .9 !important;
  stroke: var(--pink-ink);
  stroke-width: 3;
}

.gallery-ground {
  position: absolute;
  top: 73%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(134,125,107,.5) 8%, rgba(134,125,107,.5) 92%, transparent);
}

.gallery-ground span {
  position: absolute;
  right: 30px;
  top: -20px;
  color: var(--ash);
  font-size: 9px;
  letter-spacing: .16em;
}

.specimen-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  min-height: 760px;
  align-items: start;
  padding: 56px clamp(24px, 4vw, 64px) 110px;
}

.specimen {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 14px 14px 18px;
  border: 1px solid rgba(134,125,107,.38);
  cursor: pointer;
  color: inherit;
  background:
    linear-gradient(rgba(255,253,249,.96), rgba(243,238,228,.96));
  box-shadow: var(--shadow-paper);
  transform: rotate(var(--tilt, 0deg)) translateY(var(--lift, 0));
  transition: opacity 300ms ease, transform 420ms var(--expo), box-shadow 300ms ease, border-color 300ms ease;
  text-align: left;
}

.specimen::before,
.specimen::after {
  position: absolute;
  width: 18px;
  height: 1px;
  content: "";
  background: rgba(134,125,107,.55);
}

.specimen::before {
  top: 7px;
  left: 7px;
}

.specimen::after {
  right: 7px;
  bottom: 7px;
}

.specimen:hover,
.specimen:focus-visible,
.specimen.is-active {
  z-index: 4;
  border-color: var(--pink-ink);
  box-shadow: 0 34px 76px rgba(54,44,31,.17), 0 4px 12px rgba(54,44,31,.1);
  transform: rotate(0deg) translateY(-12px);
}

.specimen.is-muted {
  opacity: .34;
}

.specimen--do-self {
  --tilt: -1.2deg;
  grid-column: 1 / 6;
  margin-top: 6px;
}

.specimen--low-energy {
  --tilt: .7deg;
  grid-column: 6 / 9;
  margin-top: 85px;
}

.specimen--direction {
  --tilt: -1deg;
  grid-column: 9 / 13;
  margin-top: 16px;
}

.specimen--first-work {
  --tilt: .5deg;
  grid-column: 2 / 6;
  margin-top: 22px;
}

.specimen--inner-order {
  --tilt: -0.6deg;
  grid-column: 7 / 12;
  margin-top: -18px;
}

.specimen-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(134,125,107,.23);
}

.specimen-number {
  color: var(--pink-ink);
  font-family: var(--serif-latin);
  font-size: 14px;
  font-style: italic;
  letter-spacing: .1em;
}

.specimen-status {
  color: var(--ash);
  font-size: 9px;
  letter-spacing: .16em;
}

.specimen-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(134,125,107,.2);
  background: #d9d1c4;
}

.specimen-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.82) contrast(.96);
  transition: transform 700ms var(--expo), filter 300ms ease;
}

.specimen:hover .specimen-cover img,
.specimen:focus-visible .specimen-cover img {
  transform: scale(1.025);
  filter: saturate(.96) contrast(1);
}

.specimen-cover--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 32%, rgba(227,169,174,.48), transparent 26%),
    radial-gradient(circle at 75% 66%, rgba(116,156,171,.3), transparent 33%),
    linear-gradient(135deg, #e7dfd2, #d8d0c2);
}

.specimen-cover--placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: repeating-linear-gradient(115deg, transparent 0 13px, rgba(22,19,14,.1) 14px, transparent 15px 28px);
}

.specimen-cover--placeholder span {
  position: relative;
  z-index: 2;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: .16em;
}

.specimen h3 {
  margin: 16px 2px 7px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.45;
  text-wrap: pretty;
}

.specimen-question {
  margin: 0 2px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.7;
}

.specimen-roots {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 15px 2px 0;
  padding-top: 10px;
  border-top: 1px solid rgba(134,125,107,.2);
}

.specimen-roots span {
  color: var(--ash);
  font-size: 8px;
  letter-spacing: .08em;
}

.specimen-roots span + span::before {
  margin-right: 5px;
  content: "·";
  color: var(--pink-ink);
}

.reader-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  justify-items: end;
  background: rgba(22,19,14,.34);
  backdrop-filter: blur(12px);
}

.reader-backdrop[hidden] {
  display: none;
}

.reader {
  width: min(760px, 100%);
  min-height: 100vh;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: -24px 0 80px rgba(22,19,14,.18);
  animation: reader-enter 520ms var(--expo) both;
}

@keyframes reader-enter {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.reader-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(22px, 5vw, 52px);
  border-bottom: 1px solid rgba(134,125,107,.28);
  background: rgba(248,245,238,.88);
  backdrop-filter: blur(14px);
}

.reader-toolbar button {
  min-height: 44px;
  padding: 6px 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.reader-toolbar span {
  color: var(--pink-ink);
  font-size: 10px;
  letter-spacing: .16em;
}

.reader-content {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) 26px 100px;
}

.reader-kicker {
  margin: 0 0 16px;
  color: var(--pink-ink);
  font-size: 10px;
  letter-spacing: .18em;
}

.reader-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(37px, 6vw, 58px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.28;
}

.reader-lead {
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--pink-ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.9;
}

.reader-body {
  margin-top: 34px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.1;
}

.reader-root-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(134,125,107,.28);
}

.reader-root-list span {
  padding: 6px 10px;
  border: 1px solid rgba(134,125,107,.3);
  border-radius: 999px;
  color: var(--ash);
  font-size: 10px;
}

.prototype-note {
  margin-top: 34px;
  padding: 16px;
  color: var(--ash);
  background: rgba(215,207,191,.28);
  font-size: 10px;
  line-height: 1.8;
}

.help-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 34px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(22,19,14,.23);
}

.help-dialog::backdrop {
  background: rgba(22,19,14,.28);
  backdrop-filter: blur(7px);
}

.help-dialog h2 {
  margin: 16px 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.help-dialog ol,
.help-dialog > p:last-child {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 25px;
}
