/* =========================
   SINGLE BLOG
========================= */

.single-blog {
  padding: 120px 0;
  background-image: url("../images/patterns/jungle-texture.png");
  background-size: cover;
  background-position: center;
}

/* CARD */
.single-blog-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* HEADER */
.single-blog-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #1f3d2b;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* IMAGE */
/* IMAGE WRAPPER */
.single-blog-image {
  max-width: 760px; /* ⬅️ BIKIN FIX & NYAMAN */
  margin: 0 auto 40px; /* center + jarak bawah */
  border-radius: 22px;
  overflow: hidden;
}

/* IMAGE */
.single-blog-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CONTENT */
.single-blog-content {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.single-blog-content p {
  margin-bottom: 1.4rem;
}

/* SHARE */
.single-blog-share {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;

  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.single-blog-share span {
  font-weight: 600;
  color: #1f3d2b;
}

.single-blog-share a {
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #f4f7f5;
  color: #1f3d2b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.single-blog-share a:hover {
  background-color: #1f3d2b;
  color: #ffffff;
  transform: translateY(-2px);
}

/* NAVIGATION */
.single-blog-nav {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.single-blog-nav a {
  padding: 10px 20px;
  border-radius: 999px;
  background: #1f3d2b;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.single-blog-nav a:hover {
  background: #3f6b55;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .single-blog-card {
    padding: 28px 22px;
  }

  .single-blog-title {
    font-size: 1.9rem;
  }

  .single-blog-nav {
    flex-direction: column;
    align-items: center;
  }
}

.single-blog-share {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;

  display: flex;
  align-items: center;
  gap: 14px;
}

.single-blog-share span {
  font-weight: 600;
  color: #1f3d2b;
  margin-right: 6px;
}

.single-blog-share a {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f4f7f5;
  color: #1f3d2b;
  font-size: 18px;

  transition: all 0.3s ease;
}

.single-blog-share a:hover {
  background-color: #1f3d2b;
  color: #ffffff;
  transform: translateY(-3px);
}
