.section.closing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 100px 120px;
  margin-bottom: 150px;
}

.closing-text {
  flex: 1;
  max-width: 50%; /* wireframe: teks setengah kiri */
}

.closing-text p {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

/* ✅ Ukuran gambar lebih besar dan proporsional */
.closing-image {
  flex: 1;
  max-width: 500px;      /* perbesar container gambar */
  min-width: 400px;      /* biar gak mengecil drastis */
  position: relative;
}

.closing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url('/asset/img/closingpng.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;

  mask-image: url('/asset/img/closingpng.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

/* 🧠 Responsive */
@media (max-width: 1024px) {
  .section.closing {
    padding: 80px 60px;
    gap: 40px;
  }

  .closing-text {
    max-width: 55%;
  }

  .closing-image {
    max-width: 400px;
    min-width: 300px;
  }

  .closing-text p {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section.closing {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .closing-text {
    max-width: 100%;
  }

  .closing-image {
    max-width: 320px;
    min-width: auto;
  }

  .closing-text p {
    font-size: 22px;
  }
}
