/* assets/css/style.css */
:root{
  --radius: 14px;
}

.card { border-radius: var(--radius); }
.btn { border-radius: 12px; }
.navbar-brand { letter-spacing: .2px; }
.content { line-height: 1.75; font-size: 1.02rem; }

/* === Profil style (mirip halaman profil sekolah) === */
.ap-cover{
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
}
.ap-cover-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7));
}
.ap-cover-inner{
  position: relative;
  padding: 36px 12px 18px;
}
.ap-logo-wrap{
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.ap-logo{
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.ap-muted-white{ opacity:.9; }

.ap-quickcard{
  border: 0;
  border-radius: 16px;
}

.ap-tabs .nav-link{
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25);
  margin-right: 8px;
  border-radius: 999px;
  padding: 8px 14px;
}
.ap-tabs .nav-link.active{
  background: #fff;
  color: #0d6efd;
  border-color: #fff;
}

.ap-info-row{
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,.12);
}
.ap-info-row:last-child{ border-bottom: 0; }
