.active-link {
  color: var(--ink) !important;
}

/* ---------- Hero ---------- */
.projects-hero .hero-inner {
  padding-top: 120px;
  padding-bottom: 64px;
}
.projects-hero p {
  max-width: 60ch;
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- Grid ---------- */
.projects-section > .shell {
  padding-top: 56px;
  padding-bottom: 96px;
}
.proj-count {
  color: var(--faint);
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.proj-card {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.proj-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(20, 20, 19, 0.3);
}

.pc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pc-num {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--faint);
}

.proj-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.proj-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  flex: 1 0 auto;
}

.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pc-tag {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface-warm);
  padding: 5px 11px;
  border-radius: 999px;
}
.pc-arrow {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--clay-deep);
  white-space: nowrap;
  transition: transform 0.18s ease;
}
.proj-card:hover .pc-arrow {
  transform: translateX(3px);
}

/* Dự án chưa có nội dung — không bấm được, nhãn mờ */
.proj-card.is-soon {
  cursor: default;
}
.proj-card.is-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.pc-soon {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--faint);
  background: var(--surface-warm);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .projects-hero .hero-inner {
    padding-top: 84px;
    padding-bottom: 48px;
  }
}
