/* public_blog.css */
/* Styling for ShiftHain public blog pages */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background-color: #f8fafc; /* light gray */
  color: #1a1d23; /* dark slate */
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Navigation and footer styles can be added here */
/* Blog card hover effect */
article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
/* Tag pills */
.tag-pill {
  display: inline-block;
  background-color: rgba(39,174,96,0.1);
  color: #27ae60;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
