/* Global Styles */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background-color: #f9fafb;
  color: #111827;
}

/* Main container with max-width and padding */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

/* App Header Styles */
app-header {
  margin-bottom: 48px;
}

/* Blog Grid Styles */
blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* Blog Card Styles */
blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* Blog Post Styles */
blog-post .post-content {
  max-width: 1200px;
  margin: 0 auto;
}

blog-post h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

blog-post .post-meta {
  color: #6b7280;
  margin-bottom: 32px;
}

blog-post .post-body p {
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 1.5em;
}