.blog_show_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  min-height: 100vh;
}

.blog_header {
  margin-bottom: 3rem;
}

.back_link {
  display: inline-block;
  color: rgb(139, 0, 8);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back_link:hover {
  background: rgb(101, 0, 5);
}

.blog_image_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog_hero_image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog_hero_image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.hero_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog_hero_image:hover .hero_image {
  transform: scale(1.05);
}

.blog_title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog_meta {
  color: #7f8c8d;
  font-size: 0.9rem;
  border-bottom: 1px solid #ecf0f1;
  padding-bottom: 1rem;
}

.blog_content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #34495e;
}

.blog_description {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog_body {
  margin-top: 2rem;
}

.blog_body p {
  margin-bottom: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .blog_show_container {
    padding: 1rem;
  }
  
  .blog_title {
    font-size: 2rem;
  }
  
  .blog_image_gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .blog_hero_image {
    height: 250px;
  }
  
  .blog_content {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog_hero_image {
    height: 200px;
  }
  
  .blog_image_gallery {
    gap: 0.75rem;
  }
}