/* ===== PROFIL PAGE ===== */

.profil-hero{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 140px;
  border: 1px solid rgba(15,47,74,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  background: url("/assets/img/gedung-aak.jpg") center/cover no-repeat;
  margin-bottom: 16px;
}
.profil-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,.65));
}
.profil-hero__inner{
  position:relative;
  padding: 18px 16px;
}
.profil-hero__inner h2{
  margin:0 0 6px;
  color:#154360;
  font-weight:1000;
}
.profil-hero__inner p{
  margin:0;
  color: rgba(15,47,74,.82);
  font-weight:800;
  font-size:13px;
}

/* Text */
.profil-text p{
  margin:0 0 12px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(15,47,74,.85);
  line-height: 1.65;
}

/* Highlight */
.profil-highlight{
  font-size: 14px;
  font-weight: 1000;
  color: #154360;
  line-height: 1.6;
}

/* List */
.profil-list{
  margin:0;
  padding-left: 18px;
}
.profil-list li{
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(15,47,74,.85);
}

/* Values */
.profil-values{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.value-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(15,47,74,.14);
  border-radius: 999px;
  padding: 12px 10px;
  text-align:center;
  font-weight: 1000;
  color:#154360;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

@media (max-width:980px){
  .profil-values{
    grid-template-columns: repeat(2, 1fr);
  }
}
