:root{
  --navy:#0b2b4a;
  --navy2:#0a3a63;
  --blue:#124b7b;
  --accent:#f2c000;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#f6f8fb;
  --card:#ffffff;
  --border:#e6edf5;
  --shadow:0 10px 30px rgba(2,8,23,.08);
  --radius:14px;
  --radius2:18px;
  --container:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--container), 92vw);margin:0 auto}
.skip{position:absolute;left:-999px;top:8px;background:#fff;border:1px solid var(--border);padding:10px 12px;border-radius:10px;z-index:9999}
.skip:focus{left:10px}

.header{position:sticky;top:0;z-index:50}
.topbar{
  background:linear-gradient(90deg, var(--navy), var(--navy2));
  color:#fff;
  border-bottom:3px solid var(--accent);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand{display:flex;align-items:center;gap:12px;min-width:0}
/* .brand__logo{
  width:44px;height:44px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  flex:0 0 auto;
}
.brand__logo img{width:100%;height:100%;object-fit:cover} */
.brand__logo{
  width:44px;
  height:44px;
  border-radius:50%;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.22);
  background:#fff; /* biar putihnya rapi */
  flex:0 0 auto;
  display:grid;
  place-items:center;
}
.brand__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.brand__text{display:flex;flex-direction:column;min-width:0}
.brand__name{font-weight:900;letter-spacing:.4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.brand__sub{font-size:12px;opacity:.88;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.topbar__info{display:flex;gap:12px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.toplink{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-size:13px;
}

.hamburger{
  display:none;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.hamburger span{display:block;width:22px;height:2px;background:#fff;margin:4px 0;border-radius:2px}

.nav{
  background:var(--blue);
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.nav__inner{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  flex-wrap:wrap;
}
.nav__link{
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  opacity:.95;
}
.nav__link:hover{background:rgba(255,255,255,.08)}
.nav__link.is-active{background:rgba(242,192,0,.18);border:1px solid rgba(242,192,0,.35)}
.nav__cta{
  margin-left:auto;
  background:rgba(242,192,0,.18);
  border:1px solid rgba(242,192,0,.35);
}

.dropdown{position:relative}
.dropdown__btn{display:inline-flex;align-items:center;gap:6px}
.dropdown__menu{
  position:absolute;
  top:44px;
  left:0;
  min-width:220px;
  background:#0f3354;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:8px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  display:none;
}
.dropdown__menu a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  font-weight:700;
  font-size:13px;
}
.dropdown__menu a:hover{background:rgba(255,255,255,.08)}
.dropdown:hover .dropdown__menu{display:block}

.hero{
  position:relative;
  height:440px;
  overflow:hidden;
  background:#0b1f33;
}
.hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .5s ease, transform .6s ease;
  background:
    linear-gradient(90deg, rgba(11,43,74,.86), rgba(11,43,74,.30)),
    var(--bgimg) center/cover no-repeat;
}
.hero__slide.is-active{opacity:1;transform:scale(1)}
.hero__inner{height:100%;display:flex;align-items:center}
.hero__card{
  width:min(620px, 92vw);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  border-radius:var(--radius2);
  padding:22px;
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.hero__pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(242,192,0,.20);
  border:1px solid rgba(242,192,0,.35);
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
}
.hero__title{margin:10px 0 8px;font-size:34px;line-height:1.15}
.hero__desc{margin:0 0 16px;opacity:.95}
.hero__actions{display:flex;gap:10px;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
}
.btn--primary{background:var(--accent);color:#14223a}
.btn--ghost{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.22);color:#fff}
.btn--soft{background:#fff;border:1px solid var(--border);color:#124b7b}
.btn:hover{filter:brightness(.98)}

.hero__controls{
  position:absolute;left:0;right:0;bottom:16px;
  display:flex;align-items:center;justify-content:center;gap:12px;padding:0 14px;
}
.iconbtn{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.18);
  color:#fff;cursor:pointer;font-size:22px;display:grid;place-items:center;
}
.dots{display:flex;gap:8px;align-items:center}
.dot{
  width:10px;height:10px;border-radius:99px;
  border:1px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.2);
  cursor:pointer;
}
.dot.is-active{width:24px;background:var(--accent);border-color:rgba(242,192,0,.9)}

.notice{background:#fff;border-bottom:1px solid var(--border)}
.notice__inner{display:flex;gap:12px;align-items:center;padding:12px 0}
.notice__date{
  padding:8px 10px;background:var(--blue);color:#fff;border-radius:12px;
  font-weight:900;font-size:13px;white-space:nowrap
}
.notice__text{color:var(--muted);font-size:14px}

.section{padding:28px 0}
.section.alt{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.section__header{display:flex;align-items:center;gap:14px;margin:0 0 14px}
.section__title{margin:0;font-size:22px}
.section__line{height:2px;background:linear-gradient(90deg, var(--accent), transparent);flex:1;border-radius:999px}

.grid{display:grid;grid-template-columns: 1.55fr .85fr;gap:18px;align-items:start}
.maincol,.sidecol{min-width:0}

.cards{display:flex;flex-direction:column;gap:12px}
.card{
  display:grid;
  grid-template-columns: 74px 170px 1fr;
  gap:12px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card__date{background:var(--blue);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:12px 8px}
.card__day{font-size:24px;font-weight:900;line-height:1}
.card__mon{font-size:12px;font-weight:900;opacity:.9}
.card__media{background:var(--img) center/cover no-repeat;min-height:120px}
.card__body{padding:14px}
.card__title{margin:0 0 6px;font-size:18px}
.card__text{margin:0 0 10px;color:var(--muted);font-size:14px}
.card__link{font-weight:900;color:var(--blue)}
.card__link:hover{text-decoration:underline}

.widget{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  margin-bottom:12px;
}
.widget__title{font-weight:900;margin:0 0 10px}
.widget__text{margin:0;color:var(--muted)}
.widget__list{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.widget__list li{margin:6px 0}

.profile{padding-top:16px;text-align:center}
.profile__img{
  width:120px;height:120px;border-radius:26px;overflow:hidden;margin:0 auto 10px;
  border:2px solid rgba(18,75,123,.18);
}
.profile__img--kepsek{
  width: min(260px, 100%);
  aspect-ratio: 346 / 302;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 2px solid rgba(18,75,123,.18);
  background: #fff;
}

.profile__img--kepsek img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile__name{font-weight:900}
.profile__role{color:var(--muted);font-size:13px;margin-top:2px;font-weight:900}
.profile__cta{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:12px}

.search__input{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  outline:none;
}
.search__input:focus{border-color:#9cc3e8;box-shadow:0 0 0 3px rgba(156,195,232,.35)}
.search__hint{margin-top:8px;color:var(--muted);font-size:12px}

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}
.stat__k{color:var(--muted);font-weight:900;font-size:12px}
.stat__v{font-weight:900;font-size:22px;margin-top:6px}
.stat__s{color:var(--muted);font-size:12px;margin-top:6px}

.gallery{display:grid;grid-template-columns: repeat(4, 1fr);gap:12px}
.gitem{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:var(--img) center/cover no-repeat;
  min-height:170px;
}
.gallery--single{
  grid-template-columns: 1fr;
  place-items: center;
}
.widget__text--justify{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  text-align-last: center;
}

.gitem--video{
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.gitem::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, transparent, rgba(0,0,0,.55))}
.gitem__cap{position:absolute;left:12px;right:12px;bottom:10px;color:#fff;font-weight:900;z-index:2}

.kontak{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:start;
}
.panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}
.row{display:flex;justify-content:space-between;gap:10px;padding:10px 0;border-top:1px dashed var(--border)}
.row:first-of-type{border-top:none}
.k{color:var(--muted);font-weight:900;font-size:12px}
.v{font-weight:800;font-size:13px}
.v a{color:var(--blue)}
.field{margin-bottom:12px}
.label{display:block;font-weight:900;font-size:12px;margin-bottom:6px;color:#1f2a44}
.input{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  outline:none;
  font:inherit;
}
.input:focus{border-color:#9cc3e8;box-shadow:0 0 0 3px rgba(156,195,232,.35)}
.textarea{resize:vertical;min-height:120px}
.formnote{margin-top:10px;color:var(--muted);font-size:13px}

.footer{
  background:linear-gradient(90deg, var(--navy), var(--navy2));
  color:#fff;
  border-top:3px solid var(--accent);
}
.footer__inner{display:flex;justify-content:space-between;gap:14px;padding:18px 0;flex-wrap:wrap}
.footer__brand{font-weight:900}
.footer__muted{opacity:.85;font-size:13px;margin-top:4px}
.footer__links{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.footer__links a{opacity:.9;font-weight:900}
.footer__links a:hover{text-decoration:underline}

.breadcrumb{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.breadcrumb__inner{display:flex;gap:10px;align-items:center;padding:12px 0;color:var(--muted);font-size:14px}
.breadcrumb__inner a{color:var(--blue);font-weight:900}

.pagehead{
  padding:22px 0 0;
}
.pagehead__title{margin:0;font-size:26px}
.pagehead__desc{margin:6px 0 0;color:var(--muted)}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#fff;
}
.table th,.table td{padding:12px 12px;border-bottom:1px solid var(--border);text-align:left}
.table th{background:#f8fafc;font-weight:900}
.table tr:last-child td{border-bottom:none}

.modal,.lightbox{position:fixed;inset:0;z-index:99}
.modal__backdrop,.lightbox__backdrop{position:absolute;inset:0;background:rgba(2,6,23,.65)}
.modal__panel{
  position:relative;
  width:min(760px, 92vw);
  margin:8vh auto 0;
  background:#fff;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  padding:18px;
}
.modal__close{
  position:absolute;right:12px;top:10px;
  border:1px solid var(--border);
  background:#fff;border-radius:12px;
  width:40px;height:36px;cursor:pointer;
}
.modal__content h3{margin:0 0 8px}
.modal__content p{margin:0 0 10px;color:var(--muted)}

.lightbox__img{
  position:relative;
  width:min(980px, 92vw);
  max-height:82vh;
  object-fit:contain;
  display:block;
  margin:8vh auto 0;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.lightbox__close{
  position:absolute;top:16px;right:16px;
  width:44px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);
  color:#fff;cursor:pointer;font-weight:900;
}

.notice__ticker{
  flex:1;
  overflow:hidden;
  border-left:1px solid var(--border);
  padding-left:12px;
  min-width:0;
}

.notice__track{
  display:flex;
  width:max-content;
  will-change:transform;
  animation: tickerLoop 18s linear infinite;
}

.notice__item{
  white-space:nowrap;
  font-weight:900;
  color:var(--blue);
  padding-right:48px;
}



@keyframes tickerLoop{
  0%{ transform: translateX(0) }
  100%{ transform: translateX(-50%) }
}

@media (prefers-reduced-motion: reduce){
  .notice__track{ animation:none }
}


@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
  .nav__cta{margin-left:0}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .stats{grid-template-columns: repeat(2, 1fr)}
  .kontak{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .topbar__info{display:none}
  .hamburger{display:inline-block}
  .nav{display:none}
  .nav.is-open{display:block}
  .nav__inner{flex-direction:column;align-items:stretch}
  .nav__link{padding:12px 12px}
  .dropdown:hover .dropdown__menu{display:none}
  .dropdown__menu{position:static;display:block;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14)}
  .hero{height:420px}
  .hero__title{font-size:28px}
  .card{grid-template-columns: 74px 1fr}
  .card__media{display:none}
}

@media (max-width: 420px){
  .gallery{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
}
/* ===== Pagination News ===== */
.pager{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  padding:10px 12px;
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.pager__info{
  font-weight:900;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  flex:1;
}

.pager .btn{
  border-radius:14px;
  padding:10px 14px;
  font-weight:900;
  transition:transform .08s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}

.pager .btn:hover{
  transform:translateY(-1px);
}

.pager .btn:active{
  transform:translateY(0);
}

.pager .btn[disabled]{
  opacity:.55;
  cursor:not-allowed;
  transform:none;
  filter:none;
}

.pager .btn--soft{
  background:#fff;
  border:1px solid var(--border);
  color:var(--blue);
}

.pager .btn--soft:not([disabled]){
  border-color:rgba(18,75,123,.20);
}

.pager .btn--soft:not([disabled]):hover{
  background:#f8fbff;
  border-color:rgba(18,75,123,.35);
}
.lightbox__nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--border);
  background: rgba(0,0,0,.55);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;
}

.lightbox__prev{ left: 18px; }
.lightbox__next{ right: 18px; }

/* Mobile: tombol jadi 2 baris biar nggak sempit */
@media (max-width: 520px){
  .pager{
    flex-wrap:wrap;
    justify-content:center;
  }
  .pager__info{
    order:3;
    width:100%;
  }
}
