/* see.css — dark gallery, images first */
:root {
  --color-bg: #0d0d0d;
  --color-surface: #1a1a1a;
  --color-text: #e8e8e8;
  --color-text-muted: #888;
  --color-accent: #d4a017;
  --color-accent-hover: #f0c040;
  --color-border: #2a2a2a;
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 90ch;
}

.section-see .post__hero-image img {
  border-radius: 0;
  max-height: 70vh;
  object-fit: cover;
}

.section-see .post__gallery {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}

.section-see .post__gallery-item img {
  height: 240px;
  border-radius: 0;
}

.section-see .post-card__inner {
  grid-template-columns: 180px 1fr;
}

.section-see .post-card__thumb {
  width: 180px;
  height: 120px;
}

.section-see .site-nav {
  background: #000;
}

@media (max-width: 600px) {
  .section-see .post-card__inner { grid-template-columns: 1fr; }
  .section-see .post-card__thumb { width: 100%; height: 200px; }
}
