:root {
  --bg: #f5f7fa;         /* light neutral background for clean readability */
  --panel: #ffffff;       /* pure white panels for depth layering */
  --text: #1a1b20;        /* dark slate for crisp contrast on light bg */
  --muted: #6b7280;       /* soft gray for secondary text */
  --accent: #3b8288;      /* desaturated teal — professional, modern */
  --border: #e5e7eb;      /* light neutral border for minimalist separation */
}

html, body {font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; height: 100% }


/* Project page container when shown inside the viewer */
.entry-content {
  width: 100%;               /* constrain content width for readability */
  color: var(--text);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* headings */
.entry-content h1 { margin: 0 0 0.5rem 0; font-size: 1.9rem; color: var(--accent); }
.entry-content h2 { margin: 0 0 0 0; color: var(--text); font-weight: 600; }

/* media and tables inside project content */
.entry-content img, .entry-content video { max-width: 100%; height: auto; display: block; border-radius: 6px; }

.title {
  width: 100%;
}

.information {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5%;
}

.summary {
  width: 80%
}

.summary p {margin: 0 0 1rem 0;}

.summary img {width: 50%;}

/* reuse the meta-grid but tighten spacing for project pages */

/* tech stack card */
.tech-stack {
  padding: 1rem;
  border: 3px solid var(--accent);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--muted);
  width: 15%;
  position: sticky;
  top: 9%;
  align-self: flex-start;
}

.tech-stack ul {
  margin-block-start: 0;
  padding-inline-start: 7%;
}

/* responsive: stack the columns on narrow screens */
@media (max-width: 720px) {
  .entry-content {
    margin: 1rem;
    padding: 1rem;
    font-size: 1rem;
  }

  .entry-content .tech-stack {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    position: static; /* disable sticky on small screens */
    width: 100%;
    margin-top: 1rem;
  }
}

