:root {
  --blue: #1A3A6B;
  --blue-mid: #1E50A2;
  --blue-light: #2E6DD4;
  --blue-pale: #EBF1FB;
  --blue-soft: #D6E4F7;
  --gold: #C8922A;
  --gold-light: #F0C060;
  --gold-pale: #FDF5E6;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --text: #0F1F3D;
  --text-mid: #3D5080;
  --text-soft: #8A96B0;
  --border: rgba(26, 58, 107, 0.10);
  --shadow: 0 4px 20px rgba(26, 58, 107, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 58, 107, 0.13);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-light);
  border-radius: 2px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue);
  color: rgba(255, 255, 255, .75);
  padding: 8px 60px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color .2s;
}

.topbar a:hover {
  color: white;
}

.topbar-links {
  display: flex;
  gap: 24px;
}

/* ── NAV WRAPPER ── */
#nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  background: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow .3s;
  position: relative;
}

nav.scrolled {
  box-shadow: 0 4px 28px rgba(26, 58, 107, .14);
}

/* ── BRAND ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-box {
  width: 46px;
  height: 46px;
  /* background: linear-gradient(135deg, var(--blue), var(--blue-mid)); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
}

.nav-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-brand-text .uni-name {
  font-family: 'Playfair Display';
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}

.nav-brand-text .uni-tagline {
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: .5px;
  margin-top: 1px;
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  list-style: none;
  height: 100%;
}

.nav-links>li {
  position: static;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.nav-links>li>a .chevron {
  font-size: 8px;
  opacity: .5;
  transition: transform .25s;
  display: inline-block;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  height: 3px;
  background: var(--blue-light);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-links>li>a:hover {
  color: var(--blue-light);
}

.nav-links>li>a:hover::after {
  transform: scaleX(1);
}

/* Aktif saat mega menu terbuka */
.nav-links>li.is-open>a {
  color: var(--blue-light);
}

.nav-links>li.is-open>a::after {
  transform: scaleX(1);
}

.nav-links>li.is-open>a .chevron {
  transform: rotate(180deg);
}

/* ── MEGA MENU ──
   Pakai visibility+opacity bukan display:none
   supaya transisi smooth DAN tidak ada gap masalah pointer-events
*/
.mega-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: var(--white);
  border-top: 2px solid var(--blue-light);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(26, 58, 107, .16);
  z-index: 9998;

  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  transform: translateY(-6px);
}

/* Terbuka (dikontrol JS, bukan :hover murni) */
.nav-links>li.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── MEGA INNER ── */
.mega-inner {
  display: grid;
  padding: 28px 48px;
  gap: 0;
}

/* ── MEGA COLUMN ── */
.mega-col {
  padding: 0 20px 0 0;
}

.mega-col:not(:last-child) {
  border-right: 1px solid var(--border);
  margin-right: 20px;
}

.mega-col-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-light);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── MEGA LINKS ── */
.mega-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background .16s, color .16s, padding-left .16s;
}

.mega-link:hover {
  background: var(--blue-pale);
  color: var(--blue);
  padding-left: 14px;
}

.mega-link .ml-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .16s;
}

.mega-link:hover .ml-icon {
  background: var(--blue-soft);
}

.mega-link-text .ml-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.mega-link-text .ml-sub {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 1px;
}

.mega-tag {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

/* ── FEATURED BOX ── */
.mega-featured {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 8px;
  min-width: 240px;
}

.mega-featured-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.mega-featured-title {
  font-family: 'Playfair Display';
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
}

.mega-featured-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.mega-featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: white;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: background .18s, transform .15s;
}

.mega-featured-btn:hover {
  background: #a87420;
  transform: translateY(-1px);
}

/* ── NAV ACTIONS ── */
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.btn-outline-nav {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--blue-light);
  color: var(--blue-light);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-outline-nav:hover {
  background: var(--blue-pale);
}

.btn-solid-nav {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(46, 109, 212, .3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-solid-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 109, 212, .4);
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s;
  padding: 0;
}

.nav-hamburger:hover {
  background: var(--blue-pale);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.mobile-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: var(--white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(26, 58, 107, .18);
  overflow: hidden;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Mobile header */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: background .2s;
}

.mobile-close:hover {
  background: var(--blue-pale);
}

/* Mobile scroll body */
.mobile-body {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0 20px;
}

/* Mobile accordion section */
.mobile-section {
  border-bottom: 1px solid var(--border);
}

.mobile-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: background .18s, color .18s;
}

.mobile-section-toggle:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.mobile-section-toggle .mob-chv {
  font-size: 10px;
  opacity: .5;
  transition: transform .28s;
  display: inline-block;
}

.mobile-section-toggle.open {
  color: var(--blue-light);
}

.mobile-section-toggle.open .mob-chv {
  transform: rotate(180deg);
}

.mobile-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s cubic-bezier(.4, 0, .2, 1);
  background: var(--bg);
}

.mobile-section-body.open {
  max-height: 800px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 6px 12px 12px;
  gap: 2px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background .16s, color .16s;
}

.mobile-link:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.mobile-link .mob-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Plain link (tanpa accordion) */
.mobile-plain-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .16s, color .16s;
}

.mobile-plain-link:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.mobile-plain-link .mob-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Mobile CTA */
.mobile-cta {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-cta a {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mob-cta-solid {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  color: white !important;
  box-shadow: 0 4px 14px rgba(46, 109, 212, .3);
}

.mob-cta-outline {
  border: 1.5px solid var(--blue-light);
  color: var(--blue-light) !important;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {

  .topbar,
  nav {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-links>li>a {
    padding: 20px 9px;
    font-size: 11px;
  }
}

@media(max-width:960px) {

  .nav-links,
  .btn-outline-nav,
  .btn-solid-nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  nav {
    padding: 0 20px;
  }
}

@media(max-width:640px) {
  .topbar {
    display: none;
  }
}

/* ── HERO ── */
#hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #2660B8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-circle1 {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.hero-circle2 {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
}

.hero-circle3 {
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200, 146, 42, .08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 42, .2);
  border: 1px solid rgba(200, 146, 42, .4);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}

.hero-badge .bdot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Playfair Display';
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  animation: fadeUp .8s .12s ease both;
}

.hero-title .hl {
  color: var(--gold-light);
}

.hero-sub-title {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px;
  font-style: italic;
  animation: fadeUp .8s .2s ease both;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp .8s .3s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), #B07820);
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(200, 146, 42, .4);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 146, 42, .5);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, .1);
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .3);
  transition: background .2s, border-color .2s;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .5);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .15);
  border-radius: 16px;
  overflow: hidden;
  animation: fadeUp .8s .5s ease both;
  backdrop-filter: blur(8px);
}

.hstat {
  padding: 22px 28px;
  background: rgba(255, 255, 255, .06);
  text-align: center;
}

.hstat-num {
  font-family: 'Playfair Display';
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.hstat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── QUICK LINKS ── */
#quicklinks {
  background: var(--white);
  padding: 0 60px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.ql-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.ql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: background .22s;
  text-decoration: none;
  color: inherit;
}

.ql-item:last-child {
  border-right: none;
}

.ql-item:hover {
  background: var(--blue-pale);
}

.ql-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background .22s, transform .2s;
}

.ql-item:hover .ql-icon {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.ql-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
   align-items: center;

}

.ql-label-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
      text-align: -webkit-center;
}


/* ── SHARED ── */
section {
  padding: 90px 60px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display';
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 520px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap .2s;
}

.see-all:hover {
  gap: 10px;
}

/* ── NEWS ── */
/* ── SECTION NEWS ── */
#news {
  background: var(--bg);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 16px;
}

/* ── LAYOUT MAJALAH ── */
.news-magazine {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ── HERO CARD ── */
.news-hero {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .28s, box-shadow .28s;
}

.news-hero:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Gambar hero — pakai foto nyata atau placeholder warna */
.news-hero-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 60%, #2660B8 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

/* Jika ada <img> di dalam hero-img */
.news-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay gelap supaya teks terbaca di atas foto */
.news-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 25, 60, .72) 100%);
  pointer-events: none;
}

.news-hero-img-content {
  position: relative;
  z-index: 1;
}

.news-hero-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  background: var(--gold);
  color: white;
  margin-bottom: 10px;
}

.news-hero-title-img {
  font-family: 'Playfair Display';
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: white;
  line-height: 1.35;
  margin-bottom: 6px;
}

.news-hero-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-hero-meta::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, .4);
}

/* Badan hero di bawah gambar */
.news-hero-body {
  padding: 20px 24px 24px;
  flex: 1;
}

.news-hero-excerpt {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-hero-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
}

.news-hero:hover .news-hero-readmore gap-arrow {
  gap: 10px;
}

/* ── DAFTAR BERITA KANAN ── */
.news-list-panel {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-list-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border);
}

.news-list-head-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-soft);
}

.news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .18s, padding-left .18s;
  position: relative;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item:hover {
  background: var(--blue-pale);
  padding-left: 28px;
}

/* Nomor urut */
.news-list-num {
  font-family: 'Playfair Display';
  font-size: 28px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  transition: color .18s;
}

.news-list-item:hover .news-list-num {
  color: var(--blue-soft);
}

.news-list-content {
  flex: 1;
}

.news-list-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-light);
  margin-bottom: 5px;
}

/* variasi warna kategori */
.news-list-cat.cat-akademik {
  color: var(--blue-light);
}

.news-list-cat.cat-kerjasama {
  color: var(--gold);
}

.news-list-cat.cat-riset {
  color: #0F6E56;
}

.news-list-cat.cat-program {
  color: #7B3FA0;
}

.news-list-cat.cat-prestasi {
  color: var(--gold);
}

.news-list-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 5px;
  transition: color .18s;
}

.news-list-item:hover .news-list-title {
  color: var(--blue);
}

.news-list-date {
  font-size: 11px;
  color: var(--text-soft);
}

/* Foto thumbnail kecil (opsional) */
.news-list-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tombol lihat semua di bawah list */
.news-list-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
/* .news-list-footer a {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.news-list-footer a:hover { gap: 10px; } */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .news-magazine {
    grid-template-columns: 1fr;
  }

  .news-hero-img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-hero-img {
    height: 180px;
  }

  .news-list-item {
    padding: 14px 16px;
  }

  .news-list-item:hover {
    padding-left: 20px;
  }
}



/* ── ANNOUNCEMENTS ── */


/* ================================================================
   TAMBAHKAN KE core.css ANDA
   Bagian ini menggabungkan:
   1. CSS section #announcement di index.php  (prefix: .ann-)
   2. CSS halaman pengumuman-detail.php        (prefix: .ann-detail-)
   
   PENTING: Hapus dulu CSS lama di core.css yang berkaitan dengan
   #announcement, .ann-layout, .ann-list, .ann-item, .ann-dot,
   .ann-cat, .ann-title, .ann-date, .ann-featured, dll.
   Ganti SEMUA dengan kode di bawah ini saja.
================================================================ */


/* ════════════════════════════════════════════════════════════════
   BAGIAN 1 — SECTION PENGUMUMAN DI INDEX.PHP
   Class: .ann-layout, .ann-list, .ann-item, .ann-dot,
          .ann-cat, .ann-info, .ann-date,
          .ann-featured, .ann-featured-label, dll.
   Tidak ada perubahan — persis seperti yang sudah jalan.
════════════════════════════════════════════════════════════════ */

#announcement {
  background: var(--white);
}

.ann-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.ann-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ann-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left .2s;
  text-decoration: none;
  color: inherit;
}
.ann-item:last-child  { border-bottom: none; }
.ann-item:hover       { padding-left: 6px; }

.ann-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.ann-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}
.ann-dot.gold { background: var(--gold); }

.ann-info {}

.ann-cat {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.ann-cat.gold { color: var(--gold); }

/* ann-title di index hanya untuk item list */
.ann-item .ann-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.ann-date {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* Featured box */
.ann-featured {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 22px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.ann-featured::before {
  content: '📢';
  position: absolute; right: 24px; bottom: 24px;
  font-size: 100px; opacity: .08;
}
.ann-featured-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold-light);
  font-weight: 700; margin-bottom: 14px;
}
.ann-featured-title {
  font-family: 'Playfair Display';
  font-size: 26px; font-weight: 800;
  line-height: 1.3; margin-bottom: 14px;
}
.ann-featured-desc {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 28px;
}
.ann-featured-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: white;
  padding: 12px 24px; border-radius: 10px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .18s;
}
.ann-featured-btn:hover {
  background: var(--gold-light);
  color: var(--text);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════════════════════════
   BAGIAN 2 — HALAMAN PENGUMUMAN DETAIL
   Semua pakai prefix "ann-detail-" KECUALI yang memang
   dipakai bersama (ann-badge, ann-pulse-dot, ann-infobox,
   ann-table, ann-file, ann-share, ann-countdown, dll.)
   
   KENAPA AMAN:
   - .ann-title   di index  → hanya berlaku di dalam .ann-item
   - .ann-title   di detail → hanya berlaku di dalam .ann-page-wrap
   - Tidak ada tumbukan karena scope berbeda
════════════════════════════════════════════════════════════════ */

/* ── PROGRESS BAR BACA ── */
.ann-read-progress {
  position: fixed;
  top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  z-index: 99990;
  width: 0%;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── BREADCRUMB DETAIL ── */
.ann-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.ann-breadcrumb a {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.ann-breadcrumb a:hover { color: var(--blue); }
.ann-bc-sep     { opacity: .4; }
.ann-bc-current { color: var(--text-mid); font-weight: 500; }

/* ── LAYOUT HALAMAN DETAIL ── */
.ann-page-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 60px 64px;
}

/* ── HEADER PENGUMUMAN DETAIL ── */
.ann-header { margin-bottom: 28px; }

/* Badge */
.ann-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ann-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.ann-badge-penting {
  background: #FEF3E2; color: #C45E0A;
  border: 1px solid rgba(196,94,10,.2);
}
.ann-badge-akademik {
  background: var(--blue-pale); color: var(--blue-light);
  border: 1px solid rgba(46,109,212,.2);
}
.ann-badge-beasiswa {
  background: #E8F5E9; color: #2E7D32;
  border: 1px solid rgba(46,125,50,.2);
}
.ann-badge-kemahasiswaan {
  background: #F3E5F5; color: #7B1FA2;
  border: 1px solid rgba(123,31,162,.2);
}
.ann-badge-umum {
  background: var(--bg); color: var(--text-soft);
  border: 1px solid var(--border);
}

/* Dot berkedip */
.ann-pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  animation: ann-pulse 1.8s infinite; flex-shrink: 0;
}
@keyframes ann-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.65); }
}

/* Judul halaman detail — scoped ke .ann-page-wrap agar tidak
   bentrok dengan .ann-item .ann-title di index */
.ann-page-wrap .ann-title {
  font-family: 'Playfair Display';
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; line-height: 1.25;
  color: var(--text); margin-bottom: 18px;
}

/* Meta info */
.ann-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ann-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-soft);
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.ann-meta-item:first-child { padding-left: 0; }
.ann-meta-item:last-child  { border-right: none; }
.ann-meta-val { font-weight: 600; color: var(--text-mid); }

/* Deadline */
.ann-deadline-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 8px 16px; border-radius: 10px;
  background: #FEF3E2; border: 1px solid rgba(196,94,10,.2);
  font-size: 12px; font-weight: 700; color: #C45E0A;
}
.ann-deadline-badge.expired { background:#FFEBEE; color:#C62828; border-color:rgba(198,40,40,.2); }
.ann-deadline-badge.soon    { background:#FFF8E1; color:#F57F17; border-color:rgba(245,127,23,.2); }
.ann-deadline-badge.safe    { background:#E8F5E9; color:#2E7D32; border-color:rgba(46,125,50,.2);  }

/* Hero image */
.ann-hero-img {
  width: 100%; border-radius: 18px; overflow: hidden;
  margin: 24px 0 28px; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  aspect-ratio: 16/7;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ann-hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ann-hero-img .ann-img-icon { font-size: 56px; opacity: .15; }
.ann-hero-caption {
  font-size: 11px; color: var(--text-soft);
  text-align: center; margin-top: -18px; margin-bottom: 24px;
  font-style: italic;
}

/* Body isi */
.ann-body {
  font-size: 15px; line-height: 1.85; color: var(--text-mid);
}
.ann-body p            { margin-bottom: 18px; }
.ann-body p:last-child { margin-bottom: 0; }
.ann-body h2 {
  font-family: 'Playfair Display';
  font-size: 20px; font-weight: 800; color: var(--text);
  margin: 32px 0 12px; padding-top: 6px;
  border-top: 3px solid var(--blue-pale);
}
.ann-body h3 {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin: 24px 0 8px;
}

/* Blockquote */
.ann-body blockquote {
  border-left: 4px solid var(--blue-light);
  background: var(--blue-pale);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px; margin: 24px 0;
  font-style: italic; color: var(--blue); position: relative;
}
.ann-body blockquote p    { margin-bottom: 6px; }
.ann-body blockquote cite {
  font-size: 12px; font-style: normal;
  font-weight: 700; color: var(--blue-mid);
}

/* Info box */
.ann-infobox {
  background: var(--blue-pale);
  border: 1px solid rgba(46,109,212,.2);
  border-radius: 14px; padding: 20px 24px; margin: 24px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.ann-infobox-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ann-infobox-text { font-size: 14px; line-height: 1.65; color: var(--blue); }
.ann-infobox-text strong { font-weight: 700; display: block; margin-bottom: 4px; }
.ann-infobox.warning { background:#FFF8E1; border-color:rgba(245,127,23,.25); }
.ann-infobox.warning .ann-infobox-text { color: #E65100; }
.ann-infobox.success { background:#E8F5E9; border-color:rgba(46,125,50,.2); }
.ann-infobox.success .ann-infobox-text { color: #1B5E20; }
.ann-infobox.danger  { background:#FFEBEE; border-color:rgba(198,40,40,.2); }
.ann-infobox.danger  .ann-infobox-text { color: #B71C1C; }

/* Tabel */
.ann-table-wrap {
  overflow-x: auto; margin: 24px 0;
  border-radius: 14px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ann-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ann-table thead tr  { background: var(--blue); }
.ann-table thead th  {
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.85);
}
.ann-table tbody tr  { border-bottom: 1px solid var(--border); transition: background .15s; }
.ann-table tbody tr:last-child { border-bottom: none; }
.ann-table tbody tr:hover      { background: var(--blue-pale); }
.ann-table tbody td  { padding: 12px 16px; color: var(--text-mid); vertical-align: top; }
.ann-table tbody td:first-child { font-weight: 600; color: var(--text); }

/* List bergaya */
.ann-body ul.ann-list,
.ann-body ol.ann-list {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px; margin: 16px 0;
}
.ann-body ul.ann-list li,
.ann-body ol.ann-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.6; color: var(--text-mid);
}
.ann-body ul.ann-list li::before {
  content: '•'; color: var(--blue-light);
  font-weight: 900; font-size: 16px; flex-shrink: 0; margin-top: -1px;
}
.ann-body ol.ann-list { counter-reset: ann-ol; }
.ann-body ol.ann-list li { counter-increment: ann-ol; }
.ann-body ol.ann-list li::before {
  content: counter(ann-ol);
  min-width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue-mid);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* Lampiran */
.ann-attachments {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ann-attachments-title {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-soft); margin-bottom: 14px;
}
.ann-file-list { display: flex; flex-direction: column; gap: 10px; }
.ann-file-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--white);
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ann-file-item:hover {
  border-color: rgba(46,109,212,.3);
  box-shadow: var(--shadow); transform: translateX(4px);
}
.ann-file-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ann-file-icon.pdf { background: #FFEBEE; }
.ann-file-icon.doc { background: var(--blue-pale); }
.ann-file-icon.img { background: #E8F5E9; }
.ann-file-icon.zip { background: var(--gold-pale); }
.ann-file-info    { flex: 1; min-width: 0; }
.ann-file-name    { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ann-file-size    { font-size: 11px; color: var(--text-soft); margin-top: 2px; }
.ann-file-dl      {
  flex-shrink: 0; padding: 7px 16px; border-radius: 8px;
  background: var(--blue-pale); color: var(--blue-light);
  font-size: 12px; font-weight: 700; transition: background .2s;
}
.ann-file-item:hover .ann-file-dl { background: var(--blue-soft); }

/* Share */
.ann-share       { display: flex; align-items: center; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.ann-share-label { font-size: 12px; font-weight: 600; color: var(--text-soft); }
.ann-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-mid); background: var(--white);
  cursor: pointer; transition: all .2s;
}
.ann-share-btn:hover             { transform: translateY(-1px); box-shadow: var(--shadow); }
.ann-share-btn.wa                { border-color: #25D366; color: #25D366; }
.ann-share-btn.wa:hover          { background: #25D366; color: white; }
.ann-share-btn.cp:hover          { background: var(--blue-pale); border-color: var(--blue-light); color: var(--blue); }

/* Nav prev/next */
.ann-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 36px;
}
.ann-nav-item {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--border); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 5px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ann-nav-item:hover {
  border-color: rgba(46,109,212,.3);
  box-shadow: var(--shadow); transform: translateY(-2px);
}
.ann-nav-item.next { text-align: right; }
.ann-nav-dir       { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-light); }
.ann-nav-title     { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── SIDEBAR DETAIL ── */
.ann-sidebar {
  position: sticky; top: 20px;
  display: flex; flex-direction: column; gap: 18px;
}
.ann-scard {
  background: var(--white); border-radius: 18px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden;
}
.ann-scard-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: var(--text-soft);
}

/* Info ringkas */
.ann-sinfo-list { padding: 8px 0; }
.ann-sinfo-row  {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 18px; border-bottom: 1px solid var(--border);
}
.ann-sinfo-row:last-child { border-bottom: none; }
.ann-sinfo-icon  { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.ann-sinfo-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-soft); margin-bottom: 2px; }
.ann-sinfo-val   { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* Countdown */
.ann-countdown        { padding: 20px 18px; text-align: center; }
.ann-countdown-label  { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-soft); margin-bottom: 12px; }
.ann-countdown-boxes  { display: flex; gap: 6px; justify-content: center; }
.ann-cd-box    { background: var(--blue); border-radius: 10px; padding: 10px 12px; min-width: 52px; text-align: center; }
.ann-cd-num    { font-family: 'Playfair Display'; font-size: 24px; font-weight: 800; color: white; line-height: 1; }
.ann-cd-lbl    { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.6); margin-top: 3px; }
.ann-countdown-footer { font-size: 11px; color: var(--text-soft); margin-top: 10px; }

/* Tombol aksi */
.ann-action-btns { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.ann-btn-primary {
  display: block; text-align: center; padding: 13px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700; text-decoration: none;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  color: white; box-shadow: 0 4px 14px rgba(46,109,212,.3);
  transition: transform .2s, box-shadow .2s;
}
.ann-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,109,212,.4); }
.ann-btn-secondary {
  display: block; text-align: center; padding: 11px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; text-decoration: none;
  border: 1.5px solid var(--border); color: var(--text-mid);
  transition: border-color .2s, color .2s, background .2s;
}
.ann-btn-secondary:hover { border-color: var(--blue-light); color: var(--blue-light); background: var(--blue-pale); }

/* Pengumuman terkait sidebar */
.ann-related-list { padding: 4px 0; }
.ann-related-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 18px; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: background .18s;
}
.ann-related-item:last-child { border-bottom: none; }
.ann-related-item:hover      { background: var(--bg); }
.ann-rel-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; margin-top: 5px; }
.ann-rel-dot.gold { background: var(--gold); }
.ann-rel-cat  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--blue-light); margin-bottom: 3px; }
.ann-rel-title { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; transition: color .18s; }
.ann-related-item:hover .ann-rel-title { color: var(--blue-light); }
.ann-rel-date  { font-size: 11px; color: var(--text-soft); margin-top: 3px; }

/* Back to top */
.ann-back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,58,107,.3);
  opacity: 0; visibility: hidden;
  transition: all .25s; z-index: 9990;
}
.ann-back-top.show { opacity: 1; visibility: visible; }
.ann-back-top:hover { background: var(--blue-mid); transform: translateY(-3px); }


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — KEDUA HALAMAN
════════════════════════════════════════════════════════════════ */

/* Index — announcement section */
@media (max-width: 900px) {
  .ann-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Detail page */
@media (max-width: 1024px) {
  .ann-page-wrap  { grid-template-columns: 1fr; padding: 24px 32px 48px; }
  .ann-sidebar    { position: static; }
}
@media (max-width: 640px) {
  .ann-page-wrap  { padding: 16px 20px 40px; }
  .ann-meta-item  { padding: 0 10px; font-size: 11px; }
  .ann-nav        { grid-template-columns: 1fr; }
  .ann-countdown-boxes { gap: 4px; }
  .ann-cd-box     { min-width: 44px; padding: 8px; }
  .ann-cd-num     { font-size: 20px; }
}






/* ── PRODI ── */
#prodi {
  background: var(--bg);
}

.prodi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.prodi-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.prodi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.prodi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: transform .28s;
}

.prodi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 109, 212, .25);
}

.prodi-card:hover::before {
  transform: scaleX(1);
}

.prodi-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: background .25s, transform .2s;
}

.prodi-card:hover .prodi-icon {
  background: var(--blue-soft);
  transform: scale(1.05);
}

.prodi-fak {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.prodi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
}

.prodi-jenjang {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: var(--blue-pale);
  color: var(--blue-mid);
  margin-bottom: 10px;
}

.prodi-jenjang.s2 {
  background: var(--gold-pale);
  color: var(--gold);
}

.prodi-akred {
  font-size: 11px;
  color: var(--text-soft);
}

.prodi-akred span {
  font-weight: 700;
  color: var(--text-mid);
}

/* ── PMB BANNER ── */
#pmb {
  background: linear-gradient(135deg, #0E2A58 0%, var(--blue) 50%, #1A52A0 100%);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.pmb-bg1 {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

.pmb-bg2 {
  position: absolute;
  left: 30%;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(200, 146, 42, .07);
}

.pmb-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pmb-text .section-title {
  color: white;
}

.pmb-text .section-desc {
  color: rgba(255, 255, 255, .68);
}

.pmb-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pmb-step {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 18px 20px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display';
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.step-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.pmb-cta {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  padding: 40px;
}

.pmb-date-badge {
  background: var(--gold);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pmb-cta h3 {
  font-family: 'Playfair Display';
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.pmb-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-pmb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}

.btn-pmb:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .3);
}

/* ── DIGITAL SERVICES ── */
#layanan {
  background: var(--white);
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.layanan-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: center;
}

.layanan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 109, 212, .25);
}

.layanan-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
  transition: transform .2s;
}

.layanan-card:hover .layanan-icon {
  transform: scale(1.08);
}

.layanan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.layanan-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ── GALLERY ── */
#gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.gal-item {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: transform .28s;
  position: relative;
}

.gal-item:hover {
  transform: scale(1.02);
}

.gal-item:first-child {
  grid-row: 1/3;
}

.gal-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 58, 107, .6) 100%);
  opacity: 0;
  transition: opacity .25s;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gi1 {
  background: linear-gradient(135deg, #1A3A6B, #2E6DD4);
}

.gi2 {
  background: linear-gradient(135deg, #1E50A2, #3A7BD5);
}

.gi3 {
  background: linear-gradient(135deg, #C8922A, #E8B84B);
}

.gi4 {
  background: linear-gradient(135deg, #1A5276, #2E86C1);
}

.gi5 {
  background: linear-gradient(135deg, #154360, #1A6FA3);
}

/* ── TESTIMONIAL ── */
#testimoni {
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-quote {
  font-size: 36px;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-role {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 14px;
}

/* ── PARTNERS ── */
/* ── SECTION PARTNERS ── */

/* ── SECTION ── */
#partners {
  background: var(--bg);
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-inner {
  text-align: center;
}

.partners-inner h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: 32px;
}

/* ── TRACK WRAPPER ──
   overflow:hidden memotong konten di luar batas
   fade kiri & kanan lewat mask-image
*/
.partners-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* Fade di tepi kiri & kanan */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

/* ── TRACK ──
   Flex row, lebar auto supaya semua item sejajar
   Animasi: geser dari 0 → -50% (karena item diduplikat 2×)
*/
.partners-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;

  animation: marquee 28s linear infinite;
}

/* Pause saat hover di atas track */
.partners-track-wrap:hover .partners-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── TIAP LOGO ── */
.partner-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 28px;

  /* ukuran seragam */
  width: 160px;
  height: 80px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}

.partner-badge:hover {
  border-color: rgba(46, 109, 212, .3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.04);
}

/* Gambar logo */
.partner-badge img {
  max-width: 108px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;

  /* Abu-abu → berwarna saat hover */
  filter: grayscale(100%) opacity(.5);
  transition: filter .3s ease;
}

.partner-badge:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #partners {
    padding: 40px 0;
  }

  .partner-badge {
    width: 130px;
    height: 68px;
    padding: 12px 18px;
  }

  .partner-badge img {
    max-width: 88px;
    max-height: 36px;
  }

  .partners-track {
    gap: 14px;
    animation-duration: 20s;
  }
}



/* ── FOOTER ── */

/* ================================================================
   GANTI SELURUH BAGIAN FOOTER DI CSS ANDA
   Cari semua baris yang ada kata "footer" lalu hapus,
   ganti dengan kode di bawah ini saja.
   
   YANG DIHAPUS:
   1. footer{ background:var(--blue); padding:32px 60px; 
              display:flex; justify-content:space-between; ... }
      ← ini dari detail-berita, salah masuk ke CSS utama
   
   2. .footer-bottom{ padding:20px 0; display:flex; ... }
      duplikat lama yang masih ada
================================================================ */

/* ── FOOTER ── */
footer {
  background: var(--blue);
  padding: 60px 60px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* Brand */
.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
}

.footer-logo .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo .logo-name {
  font-family: 'Playfair Display';
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  max-width: 280px;
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact-item a:hover {
  color: white;
}

/* Social media icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  color: white;
  transition: background .2s, border-color .2s, transform .2s;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

/* Kolom link */
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, padding-left .2s;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

/* ── FOOTER BOTTOM ── */
/* HANYA ADA SATU deklarasi ini, tidak ada yang lain! */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.6;
}

.footer-bottom .gold {
  color: var(--gold-light);
}

.footer-bottom .divider-dot {
  color: rgba(255, 255, 255, .2);
  margin: 0 8px;
}

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 1100px) {
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    padding: 20px 0;
  }
}


/* footer{background:var(--blue);padding:60px 60px 0;}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.1);}
.footer-brand{}
.footer-logo{display:flex;align-items:center;gap:12px;margin-bottom:16px;}
.footer-logo .logo-box{width:44px;height:44px;background:rgba(255,255,255,.1);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;}
.footer-logo .logo-name{font-family:'Playfair Display';font-size:16px;font-weight:800;color:white;}
.footer-brand p{font-size:13px;color:rgba(255,255,255,.45);line-height:1.75;max-width:280px;}
.footer-contact{margin-top:20px;display:flex;flex-direction:column;gap:8px;}
.footer-contact-item{font-size:12px;color:rgba(255,255,255,.45);display:flex;gap:8px;align-items:flex-start;}
.footer-col h4{font-size:12px;text-transform:uppercase;letter-spacing:1.5px;font-weight:700;color:rgba(255,255,255,.45);margin-bottom:16px;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-col ul li a{font-size:13px;color:rgba(255,255,255,.5);text-decoration:none;transition:color .2s;}
.footer-col ul li a:hover{color:white;}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;    /* vertikal */
/* align-items: center;       /* tengah */
/* gap: 6px;
  text-align: center;
}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.28);}
.footer-bottom .gold{color:var(--gold-light);} */
*/ */

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {

  nav,
  #quicklinks,
  .topbar,
  section,
  #pmb,
  footer,
  #partners {
    padding-left: 32px;
    padding-right: 32px;
  }

  .prodi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-side .news-card-sm {
    flex: 1;
    min-width: 220px;
  }

  .hero-stats {
    position: static;
    margin-top: 40px;
    display: inline-grid;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .pmb-inner {
    grid-template-columns: 1fr;
  }

  .ql-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px) {
  .topbar {
    display: none;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  nav {
    padding: 0 20px;
  }

  section,
  #pmb,
  footer,
  #partners {
    padding: 64px 20px;
  }

  #quicklinks {
    padding: 0 20px;
  }

  .news-grid,
  .testi-grid,
  .layanan-grid,
  .prodi-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item:first-child {
    grid-row: auto;
  }

  .ann-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }

  .ql-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ── SECTION MEDIA ── */
#media-sosial {
  background: var(--white);
}

/* ── TABS ── */
.media-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.media-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  border-radius: 0;
  transition: color .2s;
  white-space: nowrap;
}

.media-tab-btn:hover {
  color: var(--text-mid);
}

.media-tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue-light);
}

.media-tab-btn.active.yt {
  color: #CC0000;
  border-bottom-color: #CC0000;
}

.media-tab-btn.active.ig {
  color: #C13584;
  border-bottom-color: #C13584;
}

.media-tab-btn.active.tt {
  color: #010101;
  border-bottom-color: #010101;
}

.tab-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.tab-icon.yt-ico {
  background: #FF0000;
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.tab-icon.ig-ico {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-size: 12px;
}

.tab-icon.tt-ico {
  background: #010101;
  color: white;
  font-size: 11px;
}

/* ── PANEL WRAPPER ── */
.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
}

/* ════════════════════════════════
   YOUTUBE PANEL
════════════════════════════════ */
.yt-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Video utama */
.yt-featured {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  position: relative;
  cursor: pointer;
}

.yt-featured-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.yt-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.yt-featured:hover .yt-featured-thumb img {
  transform: scale(1.04);
}

/* Overlay gradient */
.yt-featured-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .7) 100%);
  pointer-events: none;
}

/* Play button */
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(204, 0, 0, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .2s, background .2s;
}

.yt-play-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

.yt-featured:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #CC0000;
}

.yt-featured-info {
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 18px 18px;
}

.yt-featured-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}

.yt-featured-meta {
  font-size: 12px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Video grid kanan */
.yt-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yt-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: background .18s, border-color .18s, transform .2s;
  cursor: pointer;
}

.yt-item:hover {
  background: var(--white);
  border-color: rgba(204, 0, 0, .25);
  transform: translateX(4px);
}

.yt-item-thumb {
  width: 100px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #1a1a1a;
}

.yt-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-item-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  transition: background .18s;
}

.yt-item:hover .yt-item-thumb-play {
  background: rgba(204, 0, 0, .55);
}

.yt-item-thumb-play svg {
  width: 16px;
  height: 16px;
  fill: white;
  margin-left: 2px;
}

.yt-item-body {
  flex: 1;
  min-width: 0;
}

.yt-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .18s;
}

.yt-item:hover .yt-item-title {
  color: #CC0000;
}

.yt-item-date {
  font-size: 11px;
  color: var(--text-soft);
}

/* Footer YouTube */
.yt-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.yt-channel-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-channel-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #CC0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.yt-channel-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.yt-channel-sub {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 1px;
}

.yt-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #CC0000;
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .18s;
}

.yt-subscribe-btn:hover {
  background: #aa0000;
  transform: translateY(-1px);
}

/* ════════════════════════════════
   INSTAGRAM PANEL
════════════════════════════════ */
.ig-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.ig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 2px;
  flex-shrink: 0;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  overflow: hidden;
}

.ig-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ig-profile-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.ig-profile-handle {
  font-size: 12px;
  color: var(--text-soft);
}

.ig-stats {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.ig-stat-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ig-stat-label {
  font-size: 11px;
  color: var(--text-soft);
}

.ig-follow-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: white;
  transition: opacity .2s, transform .18s;
}

.ig-follow-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ig-post {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--blue-soft);
  cursor: pointer;
  text-decoration: none;
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.ig-post:hover img {
  transform: scale(1.06);
}

.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 107, .65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity .25s;
}

.ig-post:hover .ig-post-overlay {
  opacity: 1;
}

.ig-post-overlay span {
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.ig-post-overlay small {
  font-size: 11px;
  color: rgba(255, 255, 255, .8);
}

/* Placeholder gradient posts (jika belum ada foto) */
.ig-ph-1 {
  background: linear-gradient(135deg, #185FA5, #378ADD);
}

.ig-ph-2 {
  background: linear-gradient(135deg, #C8922A, #F0C060);
}

.ig-ph-3 {
  background: linear-gradient(135deg, #0F6E56, #1D9E75);
}

.ig-ph-4 {
  background: linear-gradient(135deg, #993C1D, #E87722);
}

.ig-ph-5 {
  background: linear-gradient(135deg, #3C3489, #7F77DD);
}

.ig-ph-6 {
  background: linear-gradient(135deg, #154360, #2E86C1);
}

.ig-ph-icon {
  font-size: 32px;
  opacity: .4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ════════════════════════════════
   TIKTOK PANEL
════════════════════════════════ */
.tt-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.tt-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #010101;
  padding: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.tt-profile-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.tt-profile-handle {
  font-size: 12px;
  color: var(--text-soft);
}

.tt-follow-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: #010101;
  color: white;
  transition: opacity .2s, transform .18s;
}

.tt-follow-btn:hover {
  opacity: .8;
  transform: translateY(-1px);
}

.tt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tt-video-card {
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  aspect-ratio: 9/16;
}

.tt-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.tt-video-card:hover img {
  transform: scale(1.05);
}

.tt-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.tt-video-views {
  font-size: 12px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tt-video-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.35;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* TikTok play button */
.tt-play-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-play-icon svg {
  width: 12px;
  height: 12px;
  fill: white;
  margin-left: 1px;
}

/* Placeholder TikTok */
.tt-ph-1 {
  background: linear-gradient(160deg, #010101, #2a2a2a);
}

.tt-ph-2 {
  background: linear-gradient(160deg, #0D1B2A, #185FA5);
}

.tt-ph-3 {
  background: linear-gradient(160deg, #1a0a0a, #CC0000);
}

.tt-ph-4 {
  background: linear-gradient(160deg, #0a1a0a, #1D9E75);
}

/* Footer TikTok */
.tt-footer-link {
  margin-top: 20px;
  display: flex; justify-content: center;
}
.tt-footer-link a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--text);
  text-decoration: none; transition: border-color .2s, background .2s;
}
.tt-footer-link a:hover { border-color: #010101; background: var(--white); }

/* ── VIDEO MODAL ── */
.yt-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

.yt-modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.yt-modal-box {
  width: min(860px, 92vw);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.yt-modal-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
}

.yt-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.yt-modal-close:hover {
  background: rgba(255, 255, 255, .3);
}

.yt-modal-close svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .yt-layout {
    grid-template-columns: 1fr;
  }

  .tt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .media-tab-btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .tt-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yt-item-thumb {
    width: 80px;
    height: 50px;
  }
}

akhir media sosial */

/* Awal Gallery Foto


/* ── SECTION GALLERY ── */
#gallery {
  background: var(--bg);
}

/* ── FILTER TABS ── */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gal-filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.gal-filter-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: var(--blue-pale);
}

.gal-filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* ── MASONRY-STYLE GRID ── */
.gallery-grid {
  columns: 4;
  column-gap: 14px;
}

@media (max-width: 1100px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ── GALLERY ITEM ── */
.gal-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  background: var(--blue-soft);
}

/* Animasi masuk */
.gal-item {
  opacity: 0;
  transform: translateY(20px);
  animation: galItemIn .45s ease forwards;
}

@keyframes galItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Item hidden saat filter */
.gal-item.hidden {
  display: none;
}

.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

/* ── OVERLAY ── */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 31, 61, .82) 100%);
  opacity: 0;
  transition: opacity .28s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gal-overlay-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* Zoom icon */
.gal-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: scale(.8);
  color: white;
  font-size: 14px;
}

.gal-item:hover .gal-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Kategori badge (pojok kiri atas) */
.gal-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  color: white;
  transition: opacity .25s;
}

.gal-item:hover .gal-cat-badge {
  opacity: 0;
}

/* ── TOMBOL LIHAT SEMUA ── */
/* .gallery-footer {
  margin-top: 36px;
  display: flex;
  justify-content: center;
} */
.btn-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
  box-shadow: var(--shadow);
}

.btn-gallery-more:hover {
  border-color: var(--blue-light);
  background: var(--blue-pale);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ── LIGHTBOX ── */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 12, 30, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
  padding: 20px;
}

.gal-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.gal-lb-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  animation: lbIn .3s ease;
}

@keyframes lbIn {
  from {
    transform: scale(.94);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gal-lb-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  line-height: 0;
}

.gal-lb-img-wrap img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.gal-lb-info {
  padding: 16px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gal-lb-info-left .gal-lb-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gal-lb-info-left .gal-lb-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.gal-lb-counter {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  flex-shrink: 0;
}

/* Nav prev/next */
.gal-lb-prev,
.gal-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}

.gal-lb-prev:hover,
.gal-lb-next:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%) scale(1.05);
}

.gal-lb-prev {
  left: -56px;
}

.gal-lb-next {
  right: -56px;
}

/* Close button */
.gal-lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.gal-lb-close:hover {
  background: rgba(255, 255, 255, .2);
}

@media (max-width: 700px) {
  .gal-lb-prev {
    left: 0;
    top: auto;
    bottom: -52px;
    transform: none;
  }

  .gal-lb-next {
    right: 0;
    top: auto;
    bottom: -52px;
    transform: none;
  }

  .gal-lb-close {
    top: -44px;
  }
}


Akhir Gallery Foto */

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--blue-pale);
  /* Menggunakan variabel warna yang sudah ada */
  padding: 12px 60px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-soft);
}

.breadcrumb-bar a {
  text-decoration: none;
  color: var(--blue-light);
  font-weight: 600;
  transition: color .2s;
}

.breadcrumb-bar a:hover {
  color: var(--blue-mid);
}


/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--white);
  padding: 12px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-soft);
}

.breadcrumb-bar a {
  color: var(--blue-light);
  transition: color .2s;
}

.breadcrumb-bar a:hover {
  color: var(--blue);
}

.bc-sep {
  opacity: .4;
}

.bc-current {
  color: var(--text-mid);
  font-weight: 500;
}

/* ── LAYOUT ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ── MAIN ARTICLE ── */
.article-main {}

/* Article header */
.article-header {
  margin-bottom: 32px;
}

.article-cats {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.article-cat {
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(200, 146, 42, .25);
}

.article-cat.blue {
  background: var(--blue-pale);
  color: var(--blue-light);
  border-color: rgba(46, 109, 212, .2);
}

.article-title {
  font-family: 'Playfair Display';
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.meta-item:first-child {
  padding-left: 0;
}

.meta-item:last-child {
  border-right: none;
}

.meta-icon {
  font-size: 14px;
}

.meta-val {
  font-weight: 600;
  color: var(--text-mid);
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.share-btn.fb {
  border-color: #1877F2;
  color: #1877F2;
}

.share-btn.fb:hover {
  background: #1877F2;
  color: white;
}

.share-btn.tw {
  border-color: #1DA1F2;
  color: #1DA1F2;
}

.share-btn.tw:hover {
  background: #1DA1F2;
  color: white;
}

.share-btn.wa {
  border-color: #25D366;
  color: #25D366;
}

.share-btn.wa:hover {
  background: #25D366;
  color: white;
}

.share-btn.cp:hover {
  background: var(--blue-pale);
  border-color: var(--blue-light);
  color: var(--blue);
}

/* Hero image */
.article-hero-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero-img .img-placeholder {
  font-size: 64px;
  opacity: .2;
}

.article-hero-caption {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 28px;
  font-style: italic;
}

/* Article body */
.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  font-family: 'Playfair Display';
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 3px solid var(--blue-pale);
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}

/* Blockquote */
.article-body blockquote {
  border-left: 4px solid var(--blue-light);
  background: var(--blue-pale);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--blue);
  position: relative;
}

.article-body blockquote::before {
  content: '"';
  font-family: 'Playfair Display';
  font-size: 56px;
  line-height: 1;
  color: var(--blue-light);
  opacity: .3;
  position: absolute;
  top: 8px;
  left: 16px;
}

.article-body blockquote p {
  margin-bottom: 8px;
  padding-left: 12px;
}

.article-body blockquote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--blue-mid);
  padding-left: 12px;
}

/* Highlight box */
.article-highlight {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 16px;
  padding: 28px 32px;
  margin: 32px 0;
  color: white;
}

.article-highlight h4 {
  font-family: 'Playfair Display';
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.article-highlight ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-highlight ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.55;
}

.article-highlight ul li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 146, 42, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Inline images */
.article-body figure {
  margin: 28px 0;
}

.article-body figure img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.article-body figure figcaption {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Tags footer */
.article-tags {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tags-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
}

.article-tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: all .2s;
}

.article-tag:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: var(--blue-pale);
}

/* Author box */
.author-box {
  margin-top: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info .author-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.author-info .author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.author-info .author-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── PREV/NEXT NAV ── */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.art-nav-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.art-nav-item:hover {
  border-color: rgba(46, 109, 212, .3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.art-nav-item.next {
  text-align: right;
}

.art-nav-dir {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.art-nav-item.next .art-nav-dir {
  justify-content: flex-end;
}

.art-nav-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ── SIDEBAR ── */
.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sidebar-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-soft);
}

/* TOC */
.toc-list {
  padding: 8px 0;
  list-style: none;
}

.toc-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  border-left: 3px solid transparent;
  transition: all .18s;
}

.toc-item a:hover {
  background: var(--blue-pale);
  color: var(--blue);
  border-left-color: var(--blue-light);
  padding-left: 24px;
}

.toc-item a.active {
  background: var(--blue-pale);
  color: var(--blue);
  border-left-color: var(--blue-light);
  font-weight: 700;
}

.toc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-soft);
  width: 18px;
  flex-shrink: 0;
}

/* Berita terkait */
.related-list {
  padding: 8px 0;
}

.related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .18s;
}

.related-item:last-child {
  border-bottom: none;
}

.related-item:hover {
  background: var(--bg);
}

.related-thumb {
  width: 64px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue-light);
  margin-bottom: 3px;
}

.related-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .18s;
}

.related-item:hover .related-title {
  color: var(--blue-light);
}

.related-date {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* Progress bar */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  z-index: 99999;
  width: 0%;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(26, 58, 107, .3);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  z-index: 9998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
}

/* ── RELATED NEWS SECTION ── */
.related-section {
  background: var(--bg);
  padding: 64px 60px;
  border-top: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.rel-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.rel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rel-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: .5;
  position: relative;
}

.rel-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.rel-card-body {
  padding: 18px;
}

.rel-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue-light);
  margin-bottom: 6px;
}

.rel-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 8px;
  transition: color .18s;
}

.rel-card:hover .rel-card-title {
  color: var(--blue-light);
}

.rel-card-date {
  font-size: 12px;
  color: var(--text-soft);
}

/* ── FOOTER MINI ── */
/* footer{
  background:var(--blue);
  padding:32px 60px;
  display:flex;justify-content:space-between;align-items:center;
}
footer p{font-size:12px;color:rgba(255,255,255,.35);}
footer .gold{color:var(--gold-light);} */

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .page-wrap {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .article-sidebar {
    position: static;
  }

  .topbar,
  .navbar,
  .breadcrumb-bar,
  .related-section,
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media(max-width:640px) {
  .topbar {
    display: none;
  }

  .navbar,
  .breadcrumb-bar {
    padding: 0 20px;
  }

  .page-wrap {
    padding: 20px;
  }

  .related-section,
  footer {
    padding: 40px 20px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .meta-item {
    padding: 0 10px;
    font-size: 12px;
  }

  .gal-lb-prev {
    left: 0;
    top: auto;
    bottom: -52px;
  }

  .gal-lb-next {
    right: 0;
    top: auto;
    bottom: -52px;
  }
}


.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all .2s;
}

.nav-back:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: var(--blue-pale);
}




/* Progress bar */
.rek-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  z-index: 99990; width: 0%;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* Breadcrumb */
.rek-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 11px 60px;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-soft);
  flex-wrap: wrap;
}
.rek-breadcrumb a {
  color: var(--blue-light); text-decoration: none;
  font-weight: 600; transition: color .2s;
}
.rek-breadcrumb a:hover { color: var(--blue); }
.rek-bc-sep { opacity: .4; }
.rek-bc-cur { color: var(--text-mid); font-weight: 500; }

/* Hero banner */
.rek-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #2660B8 100%);
  padding: 64px 60px;
  position: relative; overflow: hidden;
}
.rek-hero::before {
  content: '';
  position: absolute; inset: 0; opacity: .05;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 50px 50px;
}
.rek-hero-circle {
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.rek-hero-inner {
  position: relative; z-index: 1;
  max-width: 700px;
}
.rek-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,.2);
  border: 1px solid rgba(200,146,42,.35);
  padding: 5px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
}
.rek-hero-title {
  font-family: 'Playfair Display';
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: white; line-height: 1.15;
}
.rek-hero-title span { color: var(--gold-light); }

/* Layout utama */
.rek-wrap {
  max-width: 1140px; margin: 0 auto;
  padding: 52px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* ── KONTEN KIRI ── */
.rek-main {}

/* Card sambutan */
.rek-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Header card */
.rek-card-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  padding: 32px 36px;
  display: flex; align-items: center; gap: 24px;
}
.rek-foto-wrap {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  overflow: hidden;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.rek-foto-wrap img {
  width: 100%; height: 100%; object-fit: initial; display: block;
}
.rek-identity {}
.rek-identity-label {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold-light);
  font-weight: 700; margin-bottom: 6px;
}
.rek-identity-nama {
  font-family: 'Playfair Display';
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800; color: white; line-height: 1.2;
  margin-bottom: 6px;
}
.rek-identity-jabatan {
  font-size: 13px; color: rgba(255,255,255,.7);
}
.rek-identity-divider {
  display: flex; align-items: center; gap: 8px;
  margin: 10px 0 6px;
}
.rek-identity-divider::before,
.rek-identity-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,.2);
}
.rek-identity-divider span {
  font-size: 10px; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Body card */
.rek-card-body { padding: 36px; }

/* Quote pembuka */
.rek-opening-quote {
  font-family: 'Playfair Display';
  font-size: 52px; line-height: 1;
  color: var(--blue-soft); margin-bottom: -16px;
  margin-left: -4px;
}

/* Isi teks sambutan */
.rek-body-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  text-align: justify;
}
.rek-body-text p { margin-bottom: 18px; }
.rek-body-text p:last-child { margin-bottom: 0; }

/* Tanda tangan */
.rek-signature {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: flex-end; justify-content: flex-end;
  gap: 20px;
}
.rek-sig-text { text-align: right; }
.rek-sig-kota {
  font-size: 13px; color: var(--text-soft); margin-bottom: 40px;
}
.rek-sig-nama {
  font-family: 'Playfair Display';
  font-size: 17px; font-weight: 800; color: var(--text);
  border-top: 2px solid var(--blue-light);
  padding-top: 8px;
}
.rek-sig-jabatan {
  font-size: 12px; color: var(--text-soft); margin-top: 3px;
}

/* Share */
.rek-share {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; flex-wrap: wrap;
}
.rek-share-label { font-size: 12px; font-weight: 600; color: var(--text-soft); }
.rek-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-mid); background: var(--white);
  cursor: pointer; transition: all .2s;
}
.rek-share-btn:hover    { transform: translateY(-1px); box-shadow: var(--shadow); }
.rek-share-btn.wa       { border-color: #25D366; color: #25D366; }
.rek-share-btn.wa:hover { background: #25D366; color: white; }
.rek-share-btn.cp:hover { background: var(--blue-pale); border-color: var(--blue-light); color: var(--blue); }

/* ── SIDEBAR ── */
.rek-sidebar {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 20px;
}

.rek-scard {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.rek-scard-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-soft);
}
.rek-scard-body { padding: 20px; }

/* Profil singkat */
.rek-profile-avatar {
  width: 200px; height: 200px; border-radius: 30%;
  margin: 0 auto 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: table; align-items: center; justify-content: center;
  font-size: 32px;
  border: 3px solid var(--blue-soft);
}
.rek-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rek-profile-nama {
  font-family: 'Playfair Display';
  font-size: 15px; font-weight: 800;
  color: var(--text); text-align: center; margin-bottom: 4px;
}
.rek-profile-jabatan {
  font-size: 12px; color: var(--text-soft);
  text-align: center; line-height: 1.5; margin-bottom: 16px;
}
.rek-profile-divider {
  height: 1px; background: var(--border); margin-bottom: 16px;
}
.rek-profile-row {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px;
}
.rek-profile-row:last-child { margin-bottom: 0; }
.rek-profile-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.rek-profile-info-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-soft); margin-bottom: 2px;
}
.rek-profile-info-val {
  font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4;
}

/* Menu profil sidebar */
.rek-menu-list { padding: 6px 0; }
.rek-menu-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text-mid);
  font-size: 13px; font-weight: 500;
  transition: background .18s, color .18s, padding-left .18s;
}
.rek-menu-item:last-child { border-bottom: none; }
.rek-menu-item:hover { background: var(--blue-pale); color: var(--blue); padding-left: 26px; }
.rek-menu-item.active {
  background: var(--blue-pale); color: var(--blue);
  font-weight: 700; border-left: 3px solid var(--blue-light);
  padding-left: 17px;
}
.rek-menu-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.rek-menu-item.active .rek-menu-icon { background: var(--blue-soft); }

/* CTA PMB */
.rek-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 16px; padding: 22px;
}
.rek-cta-label {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold-light);
  font-weight: 700; margin-bottom: 8px;
}
.rek-cta-title {
  font-family: 'Playfair Display';
  font-size: 16px; font-weight: 800;
  color: white; line-height: 1.3; margin-bottom: 8px;
}
.rek-cta-desc {
  font-size: 12px; color: rgba(255,255,255,.65);
  line-height: 1.6; margin-bottom: 16px;
}
.rek-cta-btn {
  display: block; text-align: center;
  padding: 10px; border-radius: 8px;
  background: var(--gold); color: white;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .18s;
}
.rek-cta-btn:hover { background: #a87420; transform: translateY(-1px); }

/* Back to top */
.rek-back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,58,107,.3);
  opacity: 0; visibility: hidden;
  transition: all .25s; z-index: 9990;
}
.rek-back-top.show { opacity: 1; visibility: visible; }
.rek-back-top:hover { background: var(--blue-mid); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rek-wrap    { grid-template-columns: 1fr; padding: 32px; }
  .rek-sidebar { position: static; }
}
@media (max-width: 640px) {
  .rek-breadcrumb  { padding: 10px 20px; }
  .rek-hero        { padding: 48px 20px; }
  .rek-wrap        { padding: 20px 20px 48px; gap: 24px; }
  .rek-card-header { flex-direction: column; text-align: center; padding: 24px 20px; }
  .rek-card-body   { padding: 24px 20px; }
  .rek-signature   { flex-direction: column; align-items: center; }
  .rek-sig-text    { text-align: center; }
}


.pagination {
  margin-top: 30px;
  display: flex;
  gap: 6px;
}

.pagination a {
  padding: 6px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
}

.pagination a.active {
  background: #185FA5;
  color: #fff;
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.lang-btn:hover {
  color: var(--blue);
  background: var(--blue-pale);
}
.lang-btn.active {
  background: var(--blue);
  color: white;
}
.lang-divider {
  color: var(--border);
  font-size: 12px;
}
.lang-flag { font-size: 13px; }

/* Di topbar (latar gelap) */
.topbar .lang-switcher {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.topbar .lang-btn { color: rgba(255,255,255,.7); }
.topbar .lang-btn:hover { background: rgba(255,255,255,.15); color: white; }
.topbar .lang-btn.active { background: rgba(255,255,255,.2); color: white; }
.topbar .lang-divider { color: rgba(255,255,255,.3); }