/* Work index page (/work/, /ja/work/) — shared EN + JA. Not loaded elsewhere. */

.work-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 100px clamp(20px, 8vw, 96px);
  text-align: center;
}

.work-hero-title {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-accent);
}

.work-hero-intro {
  font-size: 16px;
  line-height: 24px;
  max-width: 559px;
  color: var(--text-primary);
}

.work-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 96px;
}

.work-row {
  display: flex;
  gap: 76px;
  width: 100%;
  padding: 64px clamp(20px, 6vw, 60px) 24px;
}

.work-row:first-child {
  padding-top: 0;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 0 0;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.work-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2000 / 1307;
  object-fit: cover;
  display: block;
}

.work-card-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 36px;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .work-row {
    flex-direction: column;
    gap: 32px;
  }

  .work-hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }
}

@media (max-width: 480px) {
  .work-hero-title {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
}
