/*
Theme Name: STIKes Hutama Abdi Husada
Theme URI: https://stikestulungagung.ac.id
Author: STIKes Hutama Abdi Husada IT
Description: Custom theme for STIKes Hutama Abdi Husada Tulungagung
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.9
Requires PHP: 7.4
License: Private
Text Domain: stikes-hah
*/

/* ── CSS VARIABLES ── */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1a2d5a;
  --navy-light: #243a73;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #fdf6e3;
  --white: #ffffff;
  --gray-light: #f4f5f7;
  --gray-mid: #e2e4e9;
  --gray-text: #6b7280;
  --text-dark: #1a1a2e;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(13,27,62,0.08);
  --transition: 0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: 18px; }
p { font-size: 15px; line-height: 1.75; color: var(--gray-text); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--gray-light); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 48px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.section-title { color: var(--navy); margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--gray-text); max-width: 560px; line-height: 1.7; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--navy); }
.btn-outline:hover { background: var(--gold); }
.btn-white { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-white:hover { background: rgba(255,255,255,0.2); }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 8px; }
.topbar-social {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition);
}
.topbar-social:hover { background: var(--gold); color: var(--navy); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text-wrap strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.logo-text-wrap span { font-size: 11px; color: var(--gray-text); }

/* ── NAV MENU ── */
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { background: var(--gray-light); color: var(--navy); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(13,27,62,0.12);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
  padding: 6px;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-dark);
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-menu .sub-menu li a:hover { background: var(--gray-light); color: var(--navy); }

/* Sub-sub menu */
.nav-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 6px;
}

.nav-pmb {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 6px;
  margin-left: 6px;
}
.nav-pmb:hover { background: var(--gold-light) !important; }

/* Mobile Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #2a3f7a 100%);
  color: var(--white);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; }
.hero h1 { font-size: clamp(36px, 5vw, 48px); color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 460px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(4px);
}
.hero-card-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; fill: var(--gold-light); }
.hero-card strong { display: block; font-size: 15px; font-weight: 600; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-card span { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 28px 0; border-top: 1px solid rgba(201,168,76,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }

/* ── PRODI GRID ── */
.prodi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prodi-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.prodi-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.prodi-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.prodi-thumb svg { width: 48px; height: 48px; fill: rgba(201,168,76,0.3); }
.prodi-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.05em;
}
.prodi-body { padding: 22px; }
.prodi-body h3 { font-size: 16px; margin-bottom: 8px; }
.prodi-body p { font-size: 13px; line-height: 1.6; }
.prodi-akred {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; background: #eaf5ee; color: #1a6b3a;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}
.prodi-akred::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #1a6b3a; }

/* ── PMB BANNER ── */
.pmb-banner { background: linear-gradient(135deg, var(--gold) 0%, #e8c97a 100%); padding: 56px 0; }
.pmb-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.pmb-text h2 { color: var(--navy); margin-bottom: 10px; }
.pmb-text p { color: rgba(13,27,62,0.7); max-width: 500px; }

/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-thumb {
  height: 180px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-body { padding: 20px; }
.news-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.news-body h3 { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.5; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.news-body p { font-size: 13px; line-height: 1.6; }
.news-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--gray-text); }

/* ── INTERNAL LINKS ── */
.links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.link-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.link-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.link-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.link-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.link-card h4 { font-size: 13px; font-weight: 600; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.link-card p { font-size: 11px; color: var(--gray-text); margin-top: 4px; }

/* ── SINGLE POST ── */
.post-header { background: var(--navy); padding: 56px 0; color: var(--white); }
.post-header .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.post-header .breadcrumb a { color: var(--gold-light); }
.post-header h1 { color: var(--white); font-size: clamp(24px, 4vw, 36px); max-width: 800px; }
.post-header .post-meta { display: flex; gap: 16px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.post-content { max-width: 800px; }
.post-content p { margin-bottom: 20px; font-size: 15px; line-height: 1.8; color: var(--text-dark); }
.post-content h2, .post-content h3 { margin: 32px 0 16px; color: var(--navy); }
.post-content img { border-radius: 8px; margin: 24px 0; }
.post-content ul, .post-content ol { margin: 16px 0 20px 24px; }
.post-content li { margin-bottom: 8px; font-size: 15px; color: var(--text-dark); }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--gold-pale);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 56px 0; }

/* ── SIDEBAR ── */
.sidebar-widget { margin-bottom: 32px; }
.widget-title { font-size: 15px; font-weight: 700; color: var(--navy); padding-bottom: 12px; border-bottom: 2px solid var(--gold); margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.recent-posts-widget li { padding: 10px 0; border-bottom: 1px solid var(--gray-mid); }
.recent-posts-widget li a { font-size: 13px; color: var(--text-dark); line-height: 1.5; }
.recent-posts-widget li a:hover { color: var(--navy); }
.recent-posts-widget .post-date { font-size: 11px; color: var(--gray-text); margin-top: 3px; display: block; }

/* ── PAGE HEADER ── */
.page-header { background: var(--navy); padding: 56px 0; }
.page-header h1 { color: var(--white); }
.page-header .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 10px; }
.page-header .breadcrumb a { color: var(--gold-light); }
.page-content { padding: 56px 0; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-logo strong { font-size: 14px; font-weight: 600; color: var(--white); display: block; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 7px; font-size: 13px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--gold-light); margin-bottom: 16px; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--gray-mid);
  color: var(--text-dark);
  transition: all var(--transition);
}
.pagination a:hover, .pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── ALERTS ── */
.alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.alert-info { background: #e8f4fd; color: #1a6b9a; border-left: 4px solid #3b9ede; }
.alert-success { background: #eaf5ee; color: #1a6b3a; border-left: 4px solid #2ecc71; }
.alert-warning { background: #fef9e7; color: #8b6914; border-left: 4px solid var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prodi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
}

@media (max-width: 768px) {
  .topbar-left span:not(:first-child) { display: none; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-mid); padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { padding: 12px 16px; border-radius: 8px; }
  .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; margin-top: 4px; }
  .nav-toggle { display: block; }
  .navbar .container { position: relative; }
  .news-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pmb-inner { flex-direction: column; text-align: center; }
  .post-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .prodi-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero { padding: 56px 0; }
  .section { padding: 48px 0; }
}

/* ── WORDPRESS CORE ── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray-text); text-align: center; margin-top: 8px; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 20px auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; width: 100%; overflow: hidden; height: 580px; }
.slider-track { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.slide-bg { width: 100%; height: 100%; position: relative; display: flex; align-items: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.4) 60%, transparent 100%); }
.slide-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.slide-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.slide-content h2 { font-size: clamp(28px, 5vw, 48px); color: var(--white); margin-bottom: 14px; max-width: 600px; }
.slide-content p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 500px; margin-bottom: 28px; line-height: 1.7; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10; backdrop-filter: blur(4px); }
.slider-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── AKREDITASI BAR ── */
.akred-bar { background: var(--gold-pale); border-bottom: 1px solid rgba(201,168,76,0.3); padding: 14px 0; }
.akred-bar-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.akred-label { font-size: 12px; font-weight: 700; color: var(--navy); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em; }
.akred-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.akred-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dark); }
.akred-badge { background: var(--navy); color: var(--gold-light); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.05em; white-space: nowrap; }
.akred-divider { color: var(--gray-mid); font-size: 16px; }

/* ── STATS BAR (5 cols) ── */
.stats-grid { grid-template-columns: repeat(5, 1fr); }

/* ── KEUNGGULAN ── */
.keunggulan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.keunggulan-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 28px 22px; transition: transform var(--transition), box-shadow var(--transition); }
.keunggulan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.keunggulan-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.keunggulan-icon svg { width: 26px; height: 26px; fill: white; }
.keunggulan-body h3 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.keunggulan-body p { font-size: 13px; line-height: 1.65; color: var(--gray-text); }

/* ── PENGUMUMAN ── */
.pengumuman-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pengumuman-card { display: flex; align-items: center; gap: 20px; background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 20px 22px; text-decoration: none; color: inherit; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); cursor: pointer; pointer-events: auto; }
.pengumuman-card:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow); }
.pengumuman-date { text-align: center; flex-shrink: 0; background: var(--navy); color: var(--white); border-radius: 10px; padding: 12px 16px; min-width: 60px; }
.peng-day { display: block; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; line-height: 1; color: var(--gold-light); }
.peng-month { display: block; font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.pengumuman-body { flex: 1; min-width: 0; }
.pengumuman-body h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 5px; line-height: 1.45; font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pengumuman-body p { font-size: 12px; color: var(--gray-text); line-height: 1.5; }
.pengumuman-arrow { color: var(--gold); font-size: 18px; flex-shrink: 0; transition: transform var(--transition); }
.pengumuman-card:hover .pengumuman-arrow { transform: translateX(4px); }

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 1024px) {
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-slider { height: 480px; }
}
@media (max-width: 768px) {
  .hero-slider { height: 420px; }
  .slide-content h2 { font-size: 28px; }
  .pengumuman-grid { grid-template-columns: 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .akred-items { gap: 8px; }
  .slider-btn { width: 36px; height: 36px; font-size: 16px; }
}
@media (max-width: 480px) {
  .hero-slider { height: 360px; }
  .keunggulan-grid { grid-template-columns: 1fr; }
}
