.work-hero h1 {
  font-size: clamp(58px, 12vw, 140px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
}

.work-lede {
  color: var(--color-muted-strong);
  font-size: 18px;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 640px;
}

.project-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.project-stack {
  display: grid;
  gap: clamp(4px, 1vw, 8px);
  max-width: 1240px;
  padding-top: 0;
}

.project-image-panel {
  background: #050505;
  border: none;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  margin: 0;
  overflow: hidden;
  will-change: transform;
  transform: scale(1);
  transition: transform 300ms ease;
}

.project-image-panel:hover {
  transform: scale(1.03) !important;
  transition: transform 300ms ease !important;
}

.project-image-panel img {
  aspect-ratio: 9174 / 3240;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.project-card {
  background: transparent;
  border: none;
  border-radius: 0;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 0;
  transition: transform 220ms ease;
}

.project-card:hover {
  transform: translateY(-2px);
}

.project-card img {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-card span {
  color: var(--color-blue-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.project-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.project-card p {
  color: var(--color-muted-strong);
  line-height: 1.6;
  margin: 0 0 8px;
}

@media (max-width: 820px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-stack {
    gap: 16px;
    padding-inline: 12px;
  }
}
