/* Sidebar locked feature */
.nav-link.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Optional: lock icon color */
.nav-link.disabled i {
    color: #aaa;
}

.hp-card img,
.hp-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.hp-title-text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  max-height: 2.4em;
  overflow: hidden;
}

.hp-summary {
  font-size: 0.85rem;
  color: #666;
  max-height: 3.6em;
  overflow: hidden;
}

/* MKP Modal */
#mkp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#mkp-modal {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  padding: 1rem;
  position: relative;
}

#mkp-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.mkp-hidden {
  display: none;
}

