#blog-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  /* Related Posts */
}
#blog-content .post-hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog-content .post-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
#blog-content .post-header {
  margin-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 20px;
}
#blog-content .post-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
#blog-content .post-meta {
  font-size: 0.9rem;
  color: #777;
}
#blog-content .post-meta .post-date {
  background-color: #f9f9f9;
  padding: 5px;
}
#blog-content .post-content {
  margin-top: 1.5rem;
  line-height: 1.7;
}
#blog-content .post-navigation {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  background-color: #f9f9f9;
  padding: 20px;
}
#blog-content .post-navigation a {
  color: #000000;
}
#blog-content .post-navigation a:hover {
  color: #4971AF;
}
#blog-content .sidebar {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
}
#blog-content .related-posts {
  margin-top: 3rem;
}
#blog-content .related-posts h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
}
#blog-content .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
#blog-content .related-post-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#blog-content .related-post-item h3 {
  font-size: 15px;
  margin-bottom: 0;
  text-align: center;
  color: #000;
}
#blog-content .related-post-item h3:hover {
  color: #4971AF;
}
#blog-content .related-post-item:hover {
  transform: translateY(-4px);
}
#blog-content .related-post-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}/*# sourceMappingURL=blogs.css.map */