.blog-detail-section {
  padding: 120px 0 80px;
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.blog-meta {
  color: #666;
  margin-bottom: 20px;
}

.blog-tags {
  margin-bottom: 30px;
}

.tag {
  background: #34bec1;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-right: 8px;
}

.blog-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 40px;
}

.blog-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-content pre {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
}

.share-buttons {
  text-align: center;
  margin: 30px 0;
}

.share-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 45px;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.share-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.share-facebook {
  background: #3b5998;
}
.share-twitter {
  background: #1da1f2;
}
.share-linkedin {
  background: #0077b5;
}

.related-blogs {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
}

.related-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.related-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.related-content {
  padding: 15px;
}

.related-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.related-meta {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
}

.related-read-more {
  color: #34bec1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.related-read-more:hover {
  text-decoration: underline;
  color: #34bec1;
}
