/* Grid pembungkus */
.kerjasama-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

/* Kotak tiap cover */
.kerjasama-item {
  display: block;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover hidup, tapi sopan */
.kerjasama-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* Gambar cover */
.kerjasama-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Responsif: kalau layar kecil, turun otomatis */
@media (max-width: 768px) {
  .kerjasama-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .kerjasama-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ================================
   DESKTOP OVERRIDE (WAJIB)
   ================================ */

ul.pkp_navigation_primary > li > a {
  background: linear-gradient(to bottom, #882020, #882020) !important;
  color: #ffffff !important;

  padding: 10px 18px !important;
  margin: 4px !important;

  border-radius: 8px !important;
  font-weight: 600 !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 4px 8px rgba(0,0,0,0.35) !important;
}

/* HOVER DESKTOP */
ul.pkp_navigation_primary > li > a:hover {
  background: linear-gradient(to bottom, #68a028, #68a028) !important;
  transform: translateY(-3px) !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 7px 14px rgba(0,0,0,0.45) !important;
}

/* ACTIVE DESKTOP */
ul.pkp_navigation_primary > li.current > a {
  background: linear-gradient(to bottom, #68a028, #68a028) !important;
}


