/* blog-story.css */
.blog-story-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-story-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.blog-story-title {
  font-size: 36px;
  font-weight: 600;
  color: #073550;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-story-meta {
  color: #777;
  margin-bottom: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.blog-story-date {
  margin-right: 20px;
}

.blog-story-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.blog-story-content p {
  margin-bottom: 25px;
}

.blog-story-content h2 {
  font-size: 28px;
  color: #073550;
  margin: 40px 0 20px;
  font-weight: 600;
}

.blog-story-content h3 {
  font-size: 22px;
  color: #073550;
  margin: 30px 0 15px;
  font-weight: 500;
}

.blog-story-content ul,
.blog-story-content ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.blog-story-content li {
  margin-bottom: 10px;
}

.back-to-blogs {
  display: inline-block;
  margin-top: 40px;
  color: #daa800;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-to-blogs:hover {
  color: #073550;
  text-decoration: underline;
}

.back-to-blogs:before {
  content: "← ";
}

@media (max-width: 768px) {
  .blog-story-container {
    padding: 20px 15px;
  }
  
  .blog-story-image {
    height: 250px;
  }
  
  .blog-story-title {
    font-size: 28px;
  }
  
  .blog-story-content {
    font-size: 16px;
  }
  
  .blog-story-content h2 {
    font-size: 24px;
  }
  
  .blog-story-content h3 {
    font-size: 20px;
  }
}