/* Blog-specific styles */
.image-wrapper {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Ensure blog post main content has proper spacing */
.blog-post-content {
  margin-bottom: 2rem;
}

/* Responsive images in blog content */
.blog-post-content img {
  max-width: 100%;
  height: auto;
}

/* Mobile-specific styling */
@media (max-width: 767px) {
  .image-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
  
  .image-wrapper img {
    border-radius: 0;
  }
}
