/* Placeholder page card */
.work-center {
  min-height: calc(100vh - 57px - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.work-card {
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 56px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card.is-ready {
  transform: translateY(0);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.work-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(74,158,255,0.1);
  border: 1px solid rgba(74,158,255,0.3);
  border-radius: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.work-title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.1;
}

.work-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
}

.work-btn {
  font-size: 15px;
  padding: 13px 28px;
}

@media (max-width: 768px) {
  .work-card {
    padding: 40px 28px;
  }

  .work-title {
    font-size: 30px;
  }
}
