/* Now page (scoped) */

/* Card styling and crop for any image inside the Now timeline */
.timeline .timeline-body img {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
  aspect-ratio: 4 / 3;  /* match About photos */
  object-fit: cover;
  margin: 0;            /* override main.css auto margins */
  object-position: 50% 70%;
}

/* Dedicated gallery wrapper */
.timeline .timeline-body .now-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 280px));
  gap: 12px;
  justify-content: center;  /* center the last row */
  margin: 12px 0 18px;
}
.timeline .timeline-body .now-gallery img {
  width: 100%;
  display: block;
  object-position: 50% 70%;
}
