/* ==========================
   MASTERPIECE SECTION
========================== */

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

/* SLIDER */
.masterpiece-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* CARD */
.masterpiece-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.masterpiece-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 26px;
}

/* MOBILE */
@media (max-width: 900px) {
  .masterpiece-image img {
    width: 170px;
    height: 170px;
  }
}

/* TAG */
.masterpiece-tag {
  display: inline-block;
  background: #6f8578;
  color: #fff;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

/* TITLE */
.masterpiece-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 22px;
  border: 1px solid #6f8578;
  border-radius: 30px;
  color: #6f8578;
  font-weight: 600;
}

.btn-outline:hover {
  background: #6f8578;
  color: #fff;
}

/* ALL LINK */
.masterpiece-more {
  margin-top: 60px;
  text-align: center;
}

.masterpiece-link {
  color: #1f3d2b;
  font-size: 1.1rem;
}

/* ==========================
   BLOG GRID
========================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  border-radius: 14px;
  margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .masterpiece-slider,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CENTER WRAPPER
========================= */
.btn-outline-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* =========================
   OUTLINE BUTTON – CLEAN
========================= */
.btn-outline {
  display: inline-block;

  padding: 14px 38px;

  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  /* SATU GARIS SAJA */
  background-color: #ffffff;
  color: #1f3d2b;
  border: 1px solid #1f3d2b; /* ⬅️ JANGAN 1.5 / 2px */

  border-radius: 40px;
  transition: background-color 0.35s ease, color 0.35s ease,
    transform 0.25s ease;
}

/* HOVER */
.btn-outline:hover {
  background-color: #3f6b54;
  color: #ffffff;
}

/* ACTIVE */
.btn-outline:active {
  transform: scale(0.97);
}

/* MOBILE */
@media (max-width: 768px) {
  .btn-outline {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* =========================
   MASTERPIECE TITLE CENTER
========================= */

.philosophy-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.philosophy-center h2 {
  font-family: "Playfair Display", serif; /* sama dengan header */
  font-size: 2.6rem;
  font-weight: 600;
  color: #1f3d2b; /* green-dark */
  letter-spacing: 0.5px;
  position: relative;
}

/* garis halus di bawah (optional tapi cakep) */
.philosophy-center h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #4f7c63;
  margin: 18px auto 0;
  border-radius: 2px;
}
