
#post-single-3 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#post-single-3 .hero-header {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
#post-single-3 .hero-header img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#post-single-3 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
#post-single-3 .hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#post-single-3 .post-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#post-single-3 .post-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
}



#related-posts-3 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#related-posts-3 .masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#related-posts-3 .masonry-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#related-posts-3 .masonry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#related-posts-3 .card-body {
  padding: 15px;
}


