

/* ================= HERO SECTION ================= */

.blog-hero {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.blog-hero h1 {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  max-width: 900px;
  z-index: 1;
}

/* ================= BLOG CONTENT ================= */

.blog-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.9;
  font-size: 17px;
  color: #333;
}

.blog-content h2 {
  margin-top: 35px;
  font-size: 24px;
  font-weight: 600;
  color: #111;
}

.blog-content ul {
  margin-left: 20px;
}

.blog-content li {
  margin-bottom: 8px;
}

/* ================= BACK BUTTON ================= */

.blog-back {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.blog-back:hover {
  background: #e68900;
}

/* ================= FOOTER FIX ================= */

.footer-bottom {
  text-align: center;
  padding: 15px 0;
}
