/* Post styling */
.post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.post img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.post img:hover {
  transform: scale(1.02);
}

[data-theme="dark"] .post img {
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Standard image sizes */
.post img.small {
  max-width: 300px;
}

.post img.medium {
  max-width: 500px;
}

.post img.large {
  max-width: 700px;
}

/* Add a consistent max-height for wide images */
.post img.wide {
  max-height: 400px;
  width: auto;
  max-width: 100%;
}
