/* ============================================
   LUZID — WORK / PORTFOLIO PAGE STYLES
   ============================================ */

/* --- EMPTY STATE --- */
.work-empty__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px) 0;
}

.work-empty__graphic {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.work-empty__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 120px;
  gap: 8px;
  width: 100%;
  max-width: 380px;
}

.work-empty__block {
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.work-empty__block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 8px,
    rgba(255,255,255,0.025) 8px, rgba(255,255,255,0.025) 9px
  );
}

.work-empty__block--a {
  background: var(--black);
  grid-row: span 2;
}

.work-empty__block--b {
  background: var(--red);
  opacity: 0.12;
}

.work-empty__block--c { background: var(--gray-6); }

.work-empty__block--d {
  background: var(--gray-5);
  opacity: 0.45;
}

/* --- EXPECT GRID --- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.expect-item {
  background: var(--white);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  position: relative;
}

.expect-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.55s var(--ease-out);
}

.expect-item.visible::before { width: 100%; }

.expect-item__num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-6);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.expect-item__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.expect-item__desc {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ============================================
   WORK — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .work-empty__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-empty__graphic {
    display: none;
  }
}

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

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