/* Passion & Collaboration Combined Section */
.passion-collaboration {
  position: relative;
  width: 100%;
  height: 43vw;
  margin: 0;
  z-index: 1;
}

.passion-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: 1;
  overflow:hidden;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 5%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 1) 800%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 5%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 1) 57%
  );
}

.passion-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  aspect-ratio: 16 / 10;
}

.passion-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.collaboration-content {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: black;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.collaboration-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.collaboration-content h2 .blue-text {
  color: #204f9d;
}

.collaboration-content h2 .red-text {
  color: #ff6b6b;
}

.collaboration-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.collaboration-content .view-all-btn {
  display: inline-block;
  margin: 0 auto;
}

/* Responsive Design untuk Tablet */
@media (max-width: 1480px) {
  .passion-collaboration {
    width: 100%;
    max-width: 1440px;
  }
}

@media (max-width: 1024px) {
  /*.passion-collaboration {
    height: 1500px;
  }

  .passion-background {
    height: 1464px;
  }*/

  .collaboration-content h2 {
    font-size: 42px;
  }

  .collaboration-content p {
    font-size: 15px;
    max-width: 500px;
  }
}
