/* ──────────────────────────────────────────────
   Mants — Lifestyle Photos (Block 5)
   ────────────────────────────────────────────── */

.lifestyle-section {
  padding: 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 100%;
}

.lifestyle-item {
  overflow: hidden;
}

.lifestyle-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 575px) { /* sm and down */
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
}
