/* Global styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafc;
  color: #111;
  line-height: 1.7;
}

/* Top Banner */
.blog-banner {
  background: linear-gradient(to right, #6d6d6d, #111111);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.blog-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.blog-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Blog Container */
.blog-container {
  margin: 0 auto;
  padding: 40px 70px;
  background: #fff;
  position: relative;
  z-index: 1;
}

/* Header */
.blog-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.blog-meta {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  margin-bottom: 30px;
}
.blog-meta .author {
  color: #ff661f;
  font-weight: 600;
}

/* Hero Image */
.blog-hero-image img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

/* Content */
.blog-content h3 {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

.blog-content p {
  margin: 16px 0;
  color: #333;
  font-size: 1rem;
}

/* Back link */
.back-link {
  margin-top: 40px;
}
.back-link a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.back-link a:hover {
  text-decoration: underline;
  margin-left: 5px;
}


.blog-content ul li{
  list-style: none;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-banner h1 {
    font-size: 2rem;
  }
  .blog-container {
    padding: 30px 15px;
  }
  .blog-header h2 {
    font-size: 1.5rem;
  }
  .blog-content h3 {
    font-size: 1.15rem;
  }
}
