body{
    background-image: url("/gambar/Technologic_A4.png");
    background-repeat: repeat;
    background-position: left top;
}

.pkp_site_name_wrapper {
    padding-left: 0;
    padding-right: 0;
}

.pkp_site_name {
padding-top: 0;
padding-bottom: 0;
}

@media (min-width: 768px) {
  .pkp_site_name .is_img img {
    max-height: none; 
    
  }
}

/* FIX TOP */



/* Container utama */
.pkp_block {
  background: #ffffff;
  color: #111;
  border-left: 4px solid #000;
  padding: 18px;
  border-radius: 6px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 10px;
}

/* Efek garis hover (modern feel) */
.pkp_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(0,0,0,0.04);
  transition: width 0.3s ease;
}

.pkp_block:hover::before {
  width: 100%;
}

/* Hover utama */
.pkp_block:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  border-left: 4px solid #000;
}

/* Judul */
.pkp_block .title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

/* Garis kecil bawah judul */
.pkp_block .title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  margin-top: 6px;
}

/* Paragraf */
.pkp_block p {
  text-align: justify;
  line-height: 1.7;
  font-size: 14px;
  color: #333;
}

/* Link */
.pkp_block a {
  color: #000;
  text-decoration: none;
  position: relative;
}

/* Hover link (underline animasi) */
.pkp_block a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.pkp_block a:hover::after {
  width: 100%;
}