/* ================================================
   PROPERTY AGENCY PLATFORM — Page-specific styles
   ================================================ */

/* ── Opening statement — widen for longer first line ── */
.project-intro-wrap { max-width: 980px; }

/* ── 3×2 process render grid ── */
.render-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 0.5rem;
}

.render-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

/* ── Placeholder for unset media ── */
.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ede9e3;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .render-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .render-grid { grid-template-columns: 1fr; }
}
