
  .logo-besar-bg {
    width: 100vw;
    height: 180px;
    max-width: 100%;
    max-height: 180px;
    object-fit: cover;
    z-index: 1;
  }
  .judul-investasi {
    color: #434f67 !important;
    font-size: 3rem;
    font-weight: bold;
    /*text-shadow: 2px 2px 8px #0008;*/
    z-index: 3;
    position: relative;
    margin-bottom: 2rem;
  }
  .partner-item img {
    max-width: 200px !important;
    max-height: 120px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.85;
    transition: all 0.3s ease;
  }

.partner-section {
  position: relative;
  padding: 0 0 0 0;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

/* Background Image */
.partner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */
.partner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(86, 124, 238, 0.85),
    rgba(20, 20, 20, 0.85)
  );
  z-index: 2;
}

/* Content */
.partner-section .container {
  position: relative;
  z-index: 3;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title */
.partner-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Grid */
.partner-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 120px;
  align-items: center;
  justify-items: center;
}

/* Item */
.partner-item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.partner-item img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-item img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}

/* Mobile */
@media (max-width: 768px) {
  .partner-section {
    padding: 70px 15px 60px;
  }

  .partner-section h2 {
    font-size: 1.6rem;
  }

  .partner-grid {
    gap: 24px;
  }

  .partner-item img {
    max-width: 110px;
    max-height: 55px;
  }
}
