/*
Theme Name: STAINI Tanjungbalai Modern Theme
Theme URI: https://staini.ac.id/theme
Author: Antigravity AI
Author URI: https://deepmind.google/
Description: Tema WordPress Resmi yang Sangat Modern, Profesional, dan Estetik untuk Sekolah Tinggi Agama Islam Nurul Ilmi (STAINI) Tanjungbalai. Mengusung palet warna Hijau Zamrud (Emerald Green) dan Emas (Academic Gold), mendukung kustomisasi penuh via WordPress Customizer, menu dinamis dari dasbor admin, serta filter berita berdasarkan kategori secara interaktif. Fully self-contained stylesheet.
Version: 1.0.1
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: staini-theme
Tags: custom-header, custom-menu, custom-logo, education, university, green, modern, responsive-layout
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Emerald Green Theme Palette */
  --emerald-950: #022c22;
  --emerald-900: #064e3b;
  --emerald-800: #046a38;
  --emerald-700: #059669;
  --emerald-600: #10b981;
  --emerald-500: #34d399;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;

  /* Academic Gold & Amber Accents */
  --gold-600: #d97706;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-100: #fef3c7;

  /* Neutral Slate Palette */
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* Elevations & Effects */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(4, 106, 56, 0.09), 0 4px 6px -4px rgba(4, 106, 56, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(2, 44, 34, 0.14), 0 8px 10px -6px rgba(2, 44, 34, 0.05);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);
  
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container (90% width for premium wide display) */
.container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Top Information Strip */
.topbar {
  background: var(--emerald-950);
  color: var(--emerald-100);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.navbar-logo-img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
}
.brand-logo {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(4, 106, 56, 0.25);
  position: relative;
}
.brand-logo::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  background: var(--gold-500);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--emerald-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--emerald-800);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* WordPress Navigation & Multi-Level Dropdown Menu */
.nav-menu, .nav-menu-wrapper {
  position: relative;
}
.nav-menu li, .menu-item {
  position: relative !important;
  list-style: none;
}
.nav-menu a, .menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

/* Level 1 Submenu (Dropdown Melayang ke Bawah) */
.nav-menu > li > ul.sub-menu,
.nav-menu li > ul.sub-menu,
ul.sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 9999 !important;
  min-width: 250px !important;
  background: var(--white) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16) !important;
  border: 1px solid var(--slate-200) !important;
  padding: 0.5rem 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Level 2+ Submenu (Sub dari Submenu / Nested) - Terbuka ke SAMPING KANAN */
.nav-menu ul.sub-menu ul.sub-menu,
.nav-menu li > ul.sub-menu > li > ul.sub-menu,
ul.sub-menu ul.sub-menu {
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  margin-left: 2px !important;
  transform: translateX(10px);
}

/* Tampilkan Submenu saat Hover */
.nav-menu li:hover > ul.sub-menu,
.menu-item:hover > ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.nav-menu ul.sub-menu li:hover > ul.sub-menu,
.menu-item ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

/* Item dalam Submenu */
.nav-menu ul.sub-menu li,
ul.sub-menu li {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
}
.nav-menu ul.sub-menu li a,
ul.sub-menu li a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: var(--slate-700) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-bottom: 1px solid rgba(0,0,0,0.04) !important;
  white-space: nowrap !important;
}
.nav-menu ul.sub-menu li:last-child a,
ul.sub-menu li:last-child a {
  border-bottom: none !important;
}
.nav-menu ul.sub-menu li a:hover,
ul.sub-menu li a:hover {
  background: var(--emerald-50) !important;
  color: var(--emerald-800) !important;
  padding-left: 1.5rem !important;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-700));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(4, 106, 56, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-800));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 106, 56, 0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--slate-950);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24, var(--gold-600));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--emerald-900);
  border-color: var(--white);
}

.mobile-toggle,
.mobile-submenu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--slate-800);
  cursor: pointer;
  padding: 0.5rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 15% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
              linear-gradient(145deg, #f8fbf9 0%, #edf7f2 100%);
  padding: 4.5rem 0 7rem;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape-circle-1 {
  position: absolute;
  top: 10%; right: 5%;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
}
.shape-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(4, 106, 56, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(4, 106, 56, 0.08);
  border: 1px solid rgba(4, 106, 56, 0.2);
  border-radius: var(--radius-full);
  color: var(--emerald-800);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-600);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4.25vw, 3.65rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.hero-title-highlight {
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Visual / Cards Stack */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Hero Carousel Slider (Kategori: Slider) */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  background: var(--slate-900);
}
.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  height: 400px;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 44, 34, 0.1) 30%, rgba(2, 44, 34, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  color: var(--white);
}
.hero-slide-cat {
  display: inline-block;
  background: var(--gold-500);
  color: var(--slate-950);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.hero-slide-title:hover {
  color: var(--gold-400);
}
.hero-slider-controls {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}
.hero-slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.hero-slider-btn:hover {
  background: var(--gold-500);
  color: var(--slate-950);
}
.hero-slider-dots {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-slider-dot.active {
  width: 22px;
  border-radius: 9999px;
  background: var(--gold-400);
}

/* Circular Badge Akreditasi Institusi BAIK */
.hero-circular-badge {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.circular-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: circularTextRotate 18s linear infinite;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}
.circular-text {
  font-family: var(--font-heading);
  font-size: 11.2px;
  font-weight: 800;
  letter-spacing: 0.15em;
  fill: var(--emerald-900);
  text-transform: uppercase;
}
@keyframes circularTextRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.circular-badge-center {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 100%);
  border: 3px solid var(--gold-400);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 160, 23, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--white);
  line-height: 1.1;
}
.circular-badge-center .center-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold-400);
  letter-spacing: 0.04em;
}
.circular-badge-center .center-sub {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FLOATING STATS BAR (Sesuai Referensi Gambar) */
.stats-bar-wrapper {
  margin-top: -4.5rem;
  position: relative;
  z-index: 20;
}
.stats-bar {
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  color: var(--white);
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald-100);
}

/* GENERAL SECTION STYLES */
.section {
  padding: 5.5rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  background: var(--emerald-50);
  color: var(--emerald-800);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* SECTION UCAPAN SELAMAT DATANG KETUA STAINI */
.welcome-section {
  background: var(--white);
}
.welcome-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}
.welcome-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.welcome-badge {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(2, 44, 34, 0.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
}
.welcome-badge h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-400);
}
.welcome-badge p {
  font-size: 0.825rem;
  color: var(--emerald-100);
}
.welcome-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: var(--emerald-100);
  color: var(--emerald-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.welcome-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--emerald-600);
  padding-left: 1.25rem;
}
.welcome-text {
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* FILTER TABS (Dipakai untuk Program Studi & Berita) */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.75rem;
}
.filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--slate-600);
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--emerald-600);
  color: var(--emerald-800);
}
.filter-btn.active {
  background: var(--emerald-800);
  color: var(--white);
  border-color: var(--emerald-800);
  box-shadow: 0 4px 12px rgba(4, 106, 56, 0.25);
}

/* SECTION PROGRAM STUDI */
.prodi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.prodi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prodi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-600);
}
.prodi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.prodi-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: var(--emerald-50);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.prodi-degree {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.75rem;
  font-weight: 700;
}
.prodi-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}
.prodi-desc {
  color: var(--slate-600);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.prodi-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--emerald-700);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.prodi-link:hover {
  color: var(--emerald-900);
  gap: 0.65rem;
}

/* SECTION PENGUMUMAN RESMI (Kategori: Pengumuman) */
.announcement-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.announcement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.announcement-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.announcement-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-left-color: var(--emerald-700);
}
.announcement-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}
.announcement-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
}
.announcement-title:hover {
  color: var(--emerald-800);
}
.announcement-excerpt {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* SECTION BERITA & INFORMASI (Sesuai Referensi & Permintaan Filter Kategori) */
.news-section {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--emerald-50) 100%);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-thumb-wrapper {
  position: relative;
  height: 215px;
  overflow: hidden;
}
.news-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-thumb {
  transform: scale(1.06);
}
.news-cat-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--emerald-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.news-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
}
.news-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.news-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.85rem;
  line-height: 1.4;
  text-decoration: none;
}
.news-title:hover {
  color: var(--emerald-700);
}
.news-excerpt {
  color: var(--slate-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.news-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SECTION KERJA SAMA / MITRA STRATEGIS */
.mitra-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.mitra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.mitra-logo-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: var(--transition);
}
.mitra-logo-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-600);
  transform: translateY(-3px);
}
.mitra-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-700);
  text-align: center;
}

/* SECTION EVENT DAN AGENDA AKADEMIK */
.agenda-section {
  background: var(--slate-50);
}
.agenda-container-card {
  background: linear-gradient(135deg, var(--emerald-950) 0%, var(--emerald-900) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.agenda-item {
  display: grid;
  grid-template-columns: 85px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
}
.agenda-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}
.agenda-date-badge {
  background: var(--white);
  color: var(--emerald-900);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.5rem;
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.1;
}
.agenda-date-badge .day {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
}
.agenda-date-badge .month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-700);
}
.agenda-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.agenda-desc {
  font-size: 0.88rem;
  color: var(--emerald-100);
}

/* SECTION PERSUASIF PMB (CALL TO ACTION) */
.cta-section {
  padding: 4rem 0 6rem;
}
.cta-box {
  background: radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.25) 0%, transparent 40%),
              linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-950) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-subtitle {
  font-size: 1.08rem;
  color: var(--emerald-100);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.cta-check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--slate-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.cta-action-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

/* SECTION FOOTER EKSKLUSIF */
.footer {
  background: var(--emerald-950);
  color: var(--slate-300);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}
.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.footer-desc {
  font-size: 0.92rem;
  color: var(--emerald-100);
  line-height: 1.7;
  margin: 1.25rem 0 1.75rem;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2.5rem; height: 3px;
  background: var(--gold-500);
  border-radius: 3px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 0.93rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  font-size: 0.92rem;
  color: var(--emerald-100);
}

/* SOCIAL ICONS */
.social-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold-500);
  color: var(--slate-950);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--slate-400);
}

/* RESPONSIVE DESIGN FOR TABLET, IPAD & MOBILE (<= 1024px) */
@media (max-width: 1024px) {
  /* 1. Tampilkan Tombol Hamburger Toggle di Tablet & Mobile */
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-300);
    background: var(--white);
    color: var(--slate-800);
    cursor: pointer;
  }

  /* 2. Menu Utama Mobile & Tablet (Laci Vertikal di bawah Header) */
  .nav-menu {
    position: fixed !important;
    top: 5.25rem !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100vh - 5.25rem) !important;
    overflow-y: auto !important;
    background: var(--white) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 1rem 1.5rem 2.5rem !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22) !important;
    border-bottom: 3px solid var(--emerald-600) !important;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999 !important;
  }
  .nav-menu.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* 3. Item Navigasi Tingkat Atas */
  .nav-menu > li,
  .nav-menu li,
  .menu-item {
    width: 100% !important;
    border-bottom: 1px solid var(--slate-200) !important;
    position: relative !important;
  }
  .nav-menu a,
  .menu-item a {
    padding: 0.95rem 0.5rem !important;
    font-size: 1.02rem !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* 4. Submenu pada Mobile & Tablet: Collapsible Accordion Dropdown (Tertutup Default, Terbuka Saat Diklik) */
  .nav-menu ul.sub-menu,
  .menu-item ul.sub-menu,
  .nav-menu ul.sub-menu ul.sub-menu,
  .menu-item ul.sub-menu ul.sub-menu,
  ul.sub-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--emerald-600) !important;
    border-radius: 0 !important;
    background: var(--slate-50) !important;
    min-width: 100% !important;
    width: 100% !important;
    margin: 0.25rem 0 0.5rem 0.75rem !important;
    padding: 0.25rem 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important; /* Tertutup secara default di mobile/tablet */
  }

  /* Terbuka ketika item parent ditoggle (.open) */
  .nav-menu li.open > ul.sub-menu,
  .menu-item.open > ul.sub-menu,
  li.open > ul.sub-menu {
    display: block !important;
  }

  /* Tombol Panah Toggle Submenu Mobile */
  .mobile-submenu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald-800);
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  li.open > a .mobile-submenu-toggle {
    transform: rotate(180deg);
    background: var(--emerald-600);
    color: #ffffff;
  }

  /* 5. Item dalam Submenu Mobile/Tablet */
  .nav-menu ul.sub-menu li a,
  ul.sub-menu li a {
    padding: 0.75rem 1.1rem !important;
    font-size: 0.92rem !important;
    color: var(--slate-700) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
  }

  .hero-grid,
  .welcome-card,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .agenda-item {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .stat-item::after {
    display: none !important;
  }
  .cta-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* WordPress Core Alignment & WordPress Specific Utility Classes */
.aligncenter {
  display: block;
  margin: 1.5rem auto;
}
.alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1.5rem 0;
}
.alignright {
  float: right;
  margin: 0.5rem 0 1.5rem 1.5rem;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* WordPress Navigation Menu Custom Override & Dropdown Support */
.nav-menu-wrapper ul,
.menu-primary-container ul,
.nav-menu,
.menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu-wrapper ul li,
.menu-primary-container ul li,
.nav-menu li,
.menu li {
  position: relative;
}
.nav-menu-wrapper ul a,
.menu-primary-container ul a,
.nav-menu a,
.menu a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  display: block;
}
.nav-menu-wrapper ul a:hover,
.menu-primary-container ul a:hover,
.nav-menu a:hover,
.menu a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  color: var(--emerald-800);
}

/* WordPress Sub-Menu (Dropdown dari Dasbor Admin WP) */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  border: 1px solid var(--slate-200);
}
.nav-menu li:hover > .sub-menu {
  display: flex;
}
.nav-menu .sub-menu li {
  width: 100%;
}
.nav-menu .sub-menu li a {
  padding: 0.6rem 1.25rem;
  font-size: 0.885rem;
  color: var(--slate-700);
}
.nav-menu .sub-menu li a:hover {
  background: var(--emerald-50);
  color: var(--emerald-900);
}

/* SINGLE POST PAGE STYLES */
.single-header-card {
  background: radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.22) 0%, transparent 45%),
              linear-gradient(135deg, var(--emerald-950) 0%, var(--emerald-900) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.single-breadcrumb {
  font-size: 0.85rem;
  color: var(--emerald-100);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.single-breadcrumb a {
  color: var(--emerald-100);
  text-decoration: none;
  transition: var(--transition);
}
.single-breadcrumb a:hover {
  color: var(--gold-400);
}
.single-cat-badge {
  display: inline-block;
  background: var(--gold-500);
  color: var(--slate-950);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.single-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.single-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--emerald-100);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}
.single-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.single-thumb-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
  border: 4px solid var(--white);
}
.single-thumb-box img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.single-article-content {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--slate-800);
}
.single-article-content p {
  margin-bottom: 1.5rem;
}
.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--slate-900);
  margin: 2.25rem 0 1rem;
  line-height: 1.35;
}
.single-article-content blockquote {
  background: var(--emerald-50);
  border-left: 4px solid var(--emerald-700);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--emerald-950);
  margin: 2rem 0;
}
.single-article-content ul,
.single-article-content ol {
  margin: 1rem 0 1.5rem 2rem;
}
.single-article-content li {
  margin-bottom: 0.5rem;
}

/* SHARE BOX */
.single-share-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3.5rem 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.share-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-share-fb {
  background: #1877f2;
  color: var(--white);
}
.btn-share-fb:hover {
  background: #0d65d9;
  transform: translateY(-2px);
}
.btn-share-wa {
  background: #25d366;
  color: var(--white);
}
.btn-share-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-share-tw {
  background: #14171a;
  color: var(--white);
}
.btn-share-tw:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn-share-copy {
  background: var(--slate-100);
  color: var(--slate-800);
  border: 1px solid var(--slate-300);
}
.btn-share-copy:hover {
  background: var(--emerald-800);
  color: var(--white);
  border-color: var(--emerald-800);
}

/* RELATED POSTS SECTION */
.single-related-section {
  padding-top: 3.5rem;
  border-top: 1px solid var(--slate-200);
}
/* MITRA LOGO CARD & CAROUSEL STYLES */
.mitra-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 1.25rem;
}
.mitra-logo-card img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.mitra-logo-card:hover img {
  transform: scale(1.08);
}
.mitra-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}
.mitra-carousel-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: scrollMitra 32s linear infinite;
  width: max-content;
}
.mitra-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scrollMitra {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .single-header-card {
    padding: 2rem 1.5rem;
  }
  .single-share-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   MODERN DATA TABLE & TABLE STYLING (STAINI TANJUNGBALAI)
   ========================================================================== */
.staini-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 2.25rem 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
table, .single-post-content table, .page-content table, .wp-block-table table, .staini-table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 1.5rem 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  font-family: inherit;
}
table thead tr {
  background: linear-gradient(135deg, #046a38 0%, #0a8a4b 100%) !important;
  color: #ffffff !important;
}
table thead th {
  padding: 1.15rem 1.35rem !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: left;
  color: #ffffff !important;
  border-bottom: 2px solid #03522b !important;
}
table tbody tr {
  border-bottom: 1px solid #f1f5f9 !important;
  transition: all 0.2s ease !important;
}
table tbody tr:nth-child(even) {
  background-color: #f8fafc !important;
}
table tbody tr:hover {
  background-color: #edf7f2 !important;
}
table tbody td, table tbody th {
  padding: 1rem 1.35rem !important;
  font-size: 0.95rem !important;
  color: #334155 !important;
  line-height: 1.6 !important;
}
