/* ===========================
   Wrapper
=========================== */
.blog-detail-wrapper {
  background: #fff;
  padding: 80px 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===========================
   Back Link
=========================== */
.back-link {
  display: inline-block;
  margin-bottom: 25px;
  color: #6a0dad;
  text-decoration: none;
  font-size: 14px;
}

.back-link:hover {
  text-decoration: underline;
}

/* ===========================
   Title
=========================== */
.blog-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* ===========================
   Meta
=========================== */
.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===========================
   Hero Image
=========================== */
.blog-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 35px;
}

/* ===========================
   Content
=========================== */
.blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

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

.blog-content h2 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 600;
}

/* ===========================
   CTA
=========================== */
.blog-cta {
  margin-top: 60px;
  padding: 40px 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  background: #fafafa;
}

.blog-cta h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

/* ===========================
   Button
=========================== */
.btn-primary {
  display: inline-block;
  background: #6a0dad;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #520b91;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .blog-title {
    font-size: 32px;
  }

  .blog-content {
    font-size: 16px;
  }

  .blog-hero-image {
    max-height: 300px;
  }

  .blog-cta {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .blog-detail-wrapper {
    padding: 50px 15px;
  }

  .blog-title {
    font-size: 26px;
  }

  .blog-meta {
    font-size: 13px;
  }

  .blog-cta h3 {
    font-size: 20px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}