/* ==========================
   HERO DEPARTEMEN (NYATU GLOBAL)
========================== */
.dept-hero {
  padding: 80px 0 60px;
}

/* Badge Divisi */
.dept-badge {
  background: rgba(255, 255, 255, 0.65);
  color: #111;
  font-size: 12px;
  font-weight: 600;
}

/* Card / Box */
.dept-box {
  position: relative;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dept-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

/* Gambar atas */
.img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Title bawah gambar */
.dept-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-title);
}

/* Quote kecil */
.dept-quote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.35);
}

/* Icon */
.dept-icon {
  color: #31b7ff;
}

/* HR card */
.dept-hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hr-middle), transparent);
  margin: 14px 0;
}

/* Link detail */
.dept-link {
  font-size: 14px;
  font-weight: 600;
  color: #1e80ff;
  text-decoration: none;
}

.dept-link:hover {
  text-decoration: underline;
}
