.work-screen {
  min-height: 100vh;
  padding: clamp(110px, 15vh, 150px) var(--px) 80px;
}

.work-screen .kicker {
  line-height: normal;
}

.work-intro {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: #333;
  max-width: 540px;
}

.work-intro strong {
  font-weight: 700;
}

.h2-work {
  margin-top: 16px;
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -.02em;
  line-height: .92;
  text-transform: uppercase;
}

.h2-work .gold {
  color: var(--accent);
}

.work-rows {
  margin-top: clamp(36px, 6vh, 56px);
  border-bottom: 1px solid var(--ink);
}

.work-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.8vh, 28px) 0;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: padding-left .5s var(--ease), color .3s;
}

@media (hover: hover) and (pointer: fine) {
  .work-row:hover {
    padding-left: 24px;
    color: var(--accent);
  }
}

.work-row .num {
  font-size: 12.5px;
  font-weight: 600;
  font-stretch: 75%;
  line-height: normal;
  color: #767676;
}

.work-row .name {
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.work-row .side {
  grid-column: 2;
  text-align: left;
}

.work-row .side .client {
  display: block;
  font-size: 12px;
  font-weight: 700;
  font-stretch: 75%;
  letter-spacing: .1em;
  line-height: normal;
  text-transform: uppercase;
  color: var(--ink);
}

.work-row .side .service {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  font-stretch: 75%;
  letter-spacing: .1em;
  line-height: normal;
  text-transform: uppercase;
  color: #767676;
}

.work-note {
  margin-top: 24px;
  font-size: 11.5px;
  font-weight: 600;
  font-stretch: 75%;
  letter-spacing: .14em;
  line-height: normal;
  text-transform: uppercase;
  color: #767676;
}

.preview-card {
  display: none;
}

@media (min-width: 720px) {
  .work-row {
    grid-template-columns: 52px 1fr minmax(180px, auto);
  }

  .work-row .side {
    grid-column: auto;
    text-align: right;
  }
}

@media (prefers-reduced-motion: no-preference) and (pointer: fine) {
  .preview-card {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: min(400px, 36vw);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    z-index: 45;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 30px 80px rgba(10, 10, 10, .35);
    background: var(--ink);
  }

  .preview-card .pv-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
  }

  .preview-card .pv-tex {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 26px);
  }

  .preview-card .pv-hero {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
  }

  .preview-card .pv-hero-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    height: 1080px;
    transform-origin: top left;
    --fold: 1080px;
  }

  .preview-card .pv-num {
    position: absolute;
    top: -26px;
    right: 6px;
    font-weight: 900;
    font-stretch: 125%;
    font-size: 140px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .25);
    line-height: 1;
  }

  .preview-card .pv-chip {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    font-stretch: 75%;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 5px 11px;
  }
}

@media (max-width: 719px) {
  .h2-work {
    font-size: clamp(32px, 10.2vw, 44px);
    font-stretch: 100%;
  }
}

.work-row .thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ink);
}

.work-row .thumb-n {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  font-stretch: 75%;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .78);
}

.work-row .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 719px) {
  .work-row {
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: start;
  }
}

@media (hover: none) {
  .work-note {
    display: none;
  }
}
