/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Inter, Roboto, Helvetica, Arial, sans-serif;
}

/* PAGE */
body {
  background: #f7f7f5; /* Notion-like off white */
  color: #37352f;
  line-height: 1.6;
}

/* HEADER */
.header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.header p {
  color: #6b6f76;
  font-size: 1rem;
}

/* PROJECT GRID */
.projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* CARD */
.project-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.25rem 1.25rem 1.4rem;
  border: 1px solid #e6e6e3;
  transition: background 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease;
}

.project-card:hover {
  background: #fbfbfa;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.project-card h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.project-card p {
  font-size: 0.95rem;
  color: #6b6f76;
}

/* VERSION LINKS */
.versions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.versions a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #37352f;
  background: #f1f1ef;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #e6e6e3;
  transition: background 0.15s ease, border 0.15s ease;
}

.versions a:hover {
  background: #e9e9e7;
  border-color: #d6d6d3;
}

/* FOOTER */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8f8f8b;
}
