/* ===== PROJECT DETAIL PAGE ===== */

.project-page-header {
  padding: 72px 0 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--color-accent);
}

.project-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.project-page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.project-page-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 28px;
}

.project-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.project-page-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-faint);
}

/* ===== BODY SECTIONS ===== */

.project-page-body {
  border-top: 1px solid var(--color-border);
  padding-bottom: 80px;
}

.project-page-section {
  padding: 48px 0 0;
  max-width: 720px;
}

.project-page-section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.project-page-section p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.project-page-section p:last-child {
  margin-bottom: 0;
}

/* ===== FEATURE LIST ===== */

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.feature-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== TECH GRID ===== */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.tech-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
}

.tech-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== SCREENSHOTS ===== */

.screenshots-section {
  max-width: 100%;
}

.screenshots-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.screenshot-item img {
  height: 460px;
  width: auto;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  display: block;
  background-color: var(--color-surface);
}

.screenshot-item figcaption {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--color-text-faint);
  text-align: center;
}
