/* Blog post cards - visual separation between articles */
.md-post {
  background: var(--md-code-bg-color);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.md-post:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Remove the default hr separators since cards provide separation */
.md-post hr {
  display: none;
}

/* Post title styling */
.md-post h2 {
  margin-top: 0;
  padding-top: 0;
}

/* Post metadata spacing */
.md-post .md-post__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

/* Dark mode adjustments */
[data-md-color-scheme="slate"] .md-post {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-md-color-scheme="slate"] .md-post:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
