/**
 * Madyapadma Online — Modern Editorial Design System
 * Built from scratch. Zero legacy. 100% self-contained.
 * @version 2.0.0
 */
/* Fonts preconnected and linked in index.html <head> for zero-render-blocking performance */
/* ═══════════════════════════════════════════════════════════════
   1. VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════ */
:root {
  --brand: #c7092e;
  --brand-hover: #a10725;
  --brand-light: #fce8eb;
  --brand-glow: rgba(199, 9, 46, 0.15);

  --midnight: #0a0f1b;
  --black: #111111;
  --white: #ffffff;
  --paper: #f8f9fb;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --f-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 12px 28px -6px rgb(0 0 0 / 0.1), 0 4px 8px -4px rgb(0 0 0 / 0.05);
  --shadow-hover: 0 20px 40px -8px rgb(0 0 0 / 0.12), 0 8px 16px -4px rgb(0 0 0 / 0.06);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

html {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--paper);
  color: var(--gray-800);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; color: var(--gray-900); }
kbd { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-size: 0.8em; border: 1px solid var(--gray-300); }

.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 575px) {
  .container { padding: 0 16px; }
}
.text-muted { color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════════
   2. ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes pulseDot {
  0%, 100% { transform: scale(0.85); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════
   3. READING PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */
#readingProgressBar {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--brand), #ff4d6d);
  z-index: 9999; transition: width 0.08s linear; pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   4. TOP TICKER
   ═══════════════════════════════════════════════════════════════ */
.mp-ticker {
  background: var(--midnight); color: var(--gray-300); font-size: 12px;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mp-ticker-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mp-ticker-left { display: flex; align-items: center; gap: 10px; overflow: hidden; white-space: nowrap; }
.mp-ticker-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.06em;
  flex-shrink: 0;
}
.mp-pulse-dot {
  width: 6px; height: 6px; background: #fff; border-radius: 50%;
  display: inline-block; animation: pulseDot 1.8s infinite;
}
.mp-ticker-text { color: var(--gray-400); font-weight: 500; }
.mp-ticker-date { color: var(--gray-500); font-size: 11px; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 767px) { .mp-ticker { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   5. NAVIGATION BAR (Glassmorphic Sticky)
   ═══════════════════════════════════════════════════════════════ */
.mp-navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s;
}
.mp-navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}

@media (max-width: 575px) {
  .mp-navbar-inner {
    height: 60px;
    gap: 10px;
  }
}

/* Brand: Logo on left, grey divider, 2-line Tagline on right */
.mp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.mp-brand:hover {
  color: inherit;
}
.mp-brand-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 575px) {
  .mp-brand {
    gap: 8px;
  }
  .mp-brand-img {
    height: 32px;
  }
}

.mp-brand-divider {
  width: 1.5px;
  height: 28px;
  background-color: var(--gray-300);
  border-radius: 1px;
}
.mp-brand-tagline-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}
.mp-brand-tagline-l1,
.mp-brand-tagline-l2 {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .mp-brand-divider,
  .mp-brand-tagline-box {
    display: none;
  }
}

/* Desktop Nav */
.mp-nav-desktop { display: flex; align-items: center; gap: 6px; }
.mp-nav-link {
  font-size: 14px; font-weight: 600; color: var(--gray-700); padding: 8px 14px;
  border-radius: var(--r-md); transition: all 0.2s;
}
.mp-nav-link:hover, .mp-nav-link.active { color: var(--brand); background: var(--brand-light); }
.mp-nav-dropdown { position: relative; }
.mp-dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.mp-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); min-width: 220px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
  padding: 8px 0; opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
  z-index: 100;
}
.mp-nav-dropdown.open .mp-dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mp-dropdown-item {
  display: block; padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--gray-700);
  transition: all 0.15s;
}
.mp-dropdown-item:hover { background: var(--gray-50); color: var(--brand); }

/* Nav Actions */
.mp-nav-actions { display: flex; align-items: center; gap: 12px; }

/* Inline Navbar Search Input */
.mp-nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 7px 14px;
  transition: all 0.25s var(--ease);
  width: 220px;
}
.mp-nav-search:focus-within {
  background: var(--white);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  width: 280px;
}
.mp-nav-search-icon {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
  cursor: pointer;
}
.mp-nav-search:focus-within .mp-nav-search-icon {
  color: var(--brand);
}
.mp-nav-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  font-family: var(--f-sans);
  color: var(--gray-800);
  width: 100%;
}
.mp-nav-search input::placeholder {
  color: var(--gray-400);
}
.mp-nav-search-kbd {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 1px 6px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.mp-nav-search:focus-within .mp-nav-search-kbd {
  opacity: 0;
  display: none;
}

.mp-hamburger {
  width: 40px; height: 40px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 50%;
}
.mp-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--gray-700); border-radius: 2px;
  transition: all 0.3s;
}
.mp-hamburger:hover span { background: var(--brand); }

@media (max-width: 991px) {
  .mp-nav-desktop { display: none; }
  .mp-hamburger { display: flex; }
  .mp-nav-search { width: 160px; padding: 5px 10px; }
  .mp-nav-search:focus-within { width: 200px; }
  .mp-nav-search-kbd { display: none; }
}

@media (max-width: 520px) {
  .mp-nav-search { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   6. CATEGORY PILLS BAR
   ═══════════════════════════════════════════════════════════════ */
.mp-cat-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
.mp-cat-scroll {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none; padding-bottom: 2px;
}
.mp-cat-scroll::-webkit-scrollbar { display: none; }
.mp-cat-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  border-radius: var(--r-full); font-size: 13px; font-weight: 600; color: var(--gray-600);
  background: var(--gray-100); white-space: nowrap; transition: all 0.2s; border: 1px solid transparent;
  flex-shrink: 0;
}
.mp-cat-pill:hover { color: var(--brand); background: var(--brand-light); border-color: var(--brand-light); }
.mp-cat-pill.active { color: #fff; background: var(--brand); border-color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════
   7. SEARCH MODAL
   ═══════════════════════════════════════════════════════════════ */
.mp-search-modal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: center; padding-top: 18vh;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mp-search-modal.open { opacity: 1; visibility: visible; }
.mp-search-modal-inner {
  width: 100%; max-width: 640px; padding: 0 24px;
  transform: translateY(-20px); transition: transform 0.35s var(--ease);
}
.mp-search-modal.open .mp-search-modal-inner { transform: translateY(0); }
.mp-search-close {
  position: absolute; top: 24px; right: 28px; font-size: 32px; color: var(--gray-400);
  transition: color 0.2s; background: none; border: none;
}
.mp-search-close:hover { color: var(--brand); }
.mp-search-label { font-family: var(--f-serif); font-size: 16px; color: var(--gray-500); margin-bottom: 12px; font-weight: 500; }
.mp-search-input-wrap {
  display: flex; align-items: center; gap: 14px;
  border-bottom: 3px solid var(--gray-300); padding-bottom: 10px; transition: border-color 0.2s;
}
.mp-search-input-wrap:focus-within { border-color: var(--brand); }
.mp-search-input-wrap i { font-size: 22px; color: var(--gray-400); }
.mp-search-input-wrap input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 28px; font-weight: 700; color: var(--gray-900); font-family: var(--f-sans);
}
.mp-search-input-wrap input::placeholder { color: var(--gray-300); }
.mp-search-hint { margin-top: 14px; font-size: 13px; color: var(--gray-400); }

/* ═══════════════════════════════════════════════════════════════
   8. MOBILE DRAWER
   ═══════════════════════════════════════════════════════════════ */
.mp-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  z-index: 1100; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mp-drawer-overlay.open { opacity: 1; visibility: visible; }
.mp-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 85vw;
  background: var(--midnight); color: #fff; z-index: 1150;
  transform: translateX(-100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto; padding: 24px;
}
.mp-drawer.open { transform: translateX(0); }
.mp-drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mp-drawer-close { color: var(--gray-400); font-size: 28px; }
.mp-drawer-close:hover { color: #fff; }
.mp-drawer-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mp-drawer-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  font-size: 15px; font-weight: 600; color: var(--gray-300); border-radius: var(--r-md);
  transition: all 0.2s;
}
.mp-drawer-link:hover, .mp-drawer-link.active { color: #fff; background: rgba(255,255,255,0.08); }
.mp-drawer-link i { width: 18px; text-align: center; font-size: 14px; }
.mp-drawer-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: var(--gray-500); }
.mp-drawer-social { display: flex; gap: 16px; margin-top: 10px; }
.mp-drawer-social a { color: var(--gray-400); font-size: 18px; transition: color 0.2s; }
.mp-drawer-social a:hover { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════
   9. MAIN LAYOUT (Content + Sidebar)
   ═══════════════════════════════════════════════════════════════ */
.mp-main { padding: 32px 0 0 0; min-height: 60vh; }
.mp-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; }
.mp-layout-single { grid-template-columns: 1fr; }
.mp-layout-single .mp-sidebar { display: none; }

@media (max-width: 991px) {
  .mp-layout { grid-template-columns: 1fr; }
  .mp-sidebar { order: 2; }
}

/* ═══════════════════════════════════════════════════════════════
   10. BENTO HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   10. HERO LEAD BANNER (Full-Width Cinematic Showcase)
   ═══════════════════════════════════════════════════════════════ */
.mp-hero {
  display: block;
  width: 100%;
  margin-bottom: 36px;
  animation: fadeIn 0.6s ease;
}

/* Lead Card */
.mp-hero-lead {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 440px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--midnight);
  width: 100%;
}
.mp-hero-lead-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mp-hero-lead:hover .mp-hero-lead-img {
  transform: scale(1.03);
}
.mp-hero-lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10,15,27,0.55) 50%, rgba(10,15,27,0.95) 100%);
}
.mp-hero-lead-content {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  color: #fff;
  max-width: 900px;
}
.mp-hero-lead-title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 12px;
}
.mp-hero-lead-title a { color: #fff; }
.mp-hero-lead-title a:hover { color: #ffb3c0; }
.mp-hero-lead-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-300);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mp-hero-lead-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.mp-hero-lead-meta i { margin-right: 4px; }

@media (min-width: 1200px) {
  .mp-hero-lead {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .mp-hero-lead {
    min-height: 360px;
  }
  .mp-hero-lead-content {
    padding: 24px 20px;
  }
  .mp-hero-lead-title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .mp-hero-lead {
    min-height: 300px;
    border-radius: var(--r-lg);
  }
  .mp-hero-lead-content {
    padding: 18px 16px;
  }
  .mp-hero-lead-title {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .mp-hero-lead-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   11. SECTION HEADER
   ═══════════════════════════════════════════════════════════════ */
.mp-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-900); position: relative;
}
.mp-section-header::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px;
  background: var(--brand);
}
.mp-section-header h2 {
  font-family: var(--f-sans); font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-900);
  display: flex; align-items: center; gap: 8px;
}
.mp-section-header h2 i { color: var(--brand); }
.mp-section-count { font-size: 12px; color: var(--gray-500); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   12. ARTICLE CARD GRID (Fluid & Responsive Grid)
   ═══════════════════════════════════════════════════════════════ */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
  animation: fadeIn 0.5s ease;
}

@media (min-width: 1200px) {
  .mp-grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 26px;
  }
}

@media (max-width: 575px) {
  .mp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.mp-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s var(--ease);
}
.mp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-300);
}

.mp-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--gray-100);
  display: block;
}
.mp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mp-card:hover .mp-card-media img {
  transform: scale(1.06);
}
.mp-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-300);
  font-size: 36px;
}

.mp-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mp-card-rubric {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: inline-block;
}
.mp-card-rubric:hover {
  color: var(--brand-hover);
}
.mp-card-title {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.mp-card-title a {
  color: inherit;
}
.mp-card-title a:hover {
  color: var(--brand);
}
.mp-card-excerpt {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mp-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-500);
}
.mp-card-footer i {
  margin-right: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   13. PAGE HEADER (Category / Search)
   ═══════════════════════════════════════════════════════════════ */
.mp-page-header {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px; background: var(--white); border: 1px solid var(--gray-200);
  border-left: 4px solid var(--brand); border-radius: var(--r-lg);
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.mp-page-header-search { border-left-color: #2563eb; }
.mp-page-header-icon { font-size: 28px; color: var(--brand); flex-shrink: 0; }
.mp-page-header-search .mp-page-header-icon { color: #2563eb; }
.mp-page-title { font-family: var(--f-sans); font-size: 20px; font-weight: 800; color: var(--gray-900); text-transform: uppercase; }
.mp-page-subtitle { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   14. BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.mp-breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 13px;
  color: var(--gray-500); margin-bottom: 20px; flex-wrap: wrap;
}
.mp-breadcrumb a { color: var(--gray-600); }
.mp-breadcrumb a:hover { color: var(--brand); }
.mp-breadcrumb-sep { color: var(--gray-400); }
.mp-breadcrumb-current { color: var(--gray-400); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 260px; }

/* ═══════════════════════════════════════════════════════════════
   15. BADGE
   ═══════════════════════════════════════════════════════════════ */
.mp-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--brand); color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-sm); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mp-badge-lg {
  font-size: 12px; padding: 5px 14px; border-radius: var(--r-full);
  background: var(--brand-light); color: var(--brand); margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   16. PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.mp-pagination {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 36px; padding: 18px 24px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.mp-page-info { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.mp-page-buttons { display: flex; gap: 6px; }
.mp-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; color: var(--gray-600); background: var(--gray-50);
  border: 1px solid var(--gray-200); transition: all 0.2s;
}
.mp-page-btn:hover { border-color: var(--brand); color: var(--brand); }
.mp-page-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════
   17. SIDEBAR WIDGETS
   ═══════════════════════════════════════════════════════════════ */
.mp-widget {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.mp-widget-header {
  padding: 16px 20px; font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--gray-900); border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.mp-widget-body { padding: 18px 20px; }

/* Ranking Items */
.mp-rank-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s; color: inherit;
}
.mp-rank-item:last-child { border-bottom: none; }
.mp-rank-item:hover { background: var(--gray-50); color: inherit; }
.mp-rank-num {
  font-family: var(--f-serif); font-size: 24px; font-weight: 700;
  color: var(--gray-300); line-height: 1; width: 30px; flex-shrink: 0;
  transition: color 0.2s;
}
.mp-rank-item:hover .mp-rank-num { color: var(--brand); }
.mp-rank-item:nth-child(1) .mp-rank-num { color: var(--brand); }
.mp-rank-item:nth-child(2) .mp-rank-num { color: var(--gray-800); }
.mp-rank-info { flex: 1; min-width: 0; }
.mp-rank-title {
  font-family: var(--f-serif); font-size: 14px; font-weight: 600; line-height: 1.4;
  color: var(--gray-900); margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mp-rank-item:hover .mp-rank-title { color: var(--brand); }
.mp-rank-meta { font-size: 11px; color: var(--gray-500); }

/* Social Links */
.mp-social-links { display: flex; flex-direction: column; gap: 8px; }
.mp-social-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--r-md); font-size: 13px; font-weight: 600;
  color: #fff; transition: opacity 0.2s;
}
.mp-social-link:hover { opacity: 0.85; color: #fff; }
.mp-social-fb { background: #1877F2; }
.mp-social-tw { background: #0f1419; }
.mp-social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ═══════════════════════════════════════════════════════════════
   18. GOLDEN READING MODE (Single Article)
   ═══════════════════════════════════════════════════════════════ */
.mp-reader { max-width: 760px; margin: 0 auto; animation: fadeIn 0.5s ease; }
.mp-reader-headline {
  font-family: var(--f-serif); font-size: clamp(26px, 4.5vw, 42px); font-weight: 700;
  line-height: 1.18; color: var(--midnight); margin-bottom: 20px; letter-spacing: -0.015em;
}
.mp-reader-lead {
  font-family: var(--f-serif); font-size: 17px; font-style: italic; line-height: 1.7;
  color: var(--gray-600); padding: 16px 20px; background: var(--gray-50);
  border-left: 4px solid var(--brand); border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 24px; quotes: none;
}
.mp-reader-byline {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
}
.mp-reader-author { display: flex; align-items: center; gap: 12px; }
.mp-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.mp-reader-author strong { font-size: 14px; color: var(--gray-900); }
.mp-reader-date { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* Share Buttons */
.mp-share-btns { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mp-share-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 15px; transition: all 0.2s; color: var(--gray-600); background: var(--gray-100);
}
.mp-share-btn:hover { transform: scale(1.1); }
.mp-share-wa:hover { background: #25D366; color: #fff; }
.mp-share-fb:hover { background: #1877F2; color: #fff; }
.mp-share-tw:hover { background: #0f1419; color: #fff; }
.mp-share-copy:hover { background: var(--brand); color: #fff; }

/* Reader Media (Single Article Header Image) */
.mp-reader-media {
  margin-bottom: 32px;
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 100%;
  background: transparent;
  display: block;
}
.mp-reader-media > img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: var(--r-xl);
  background: transparent;
}

/* Article Body Typography */
.mp-reader-body {
  font-size: 18px;
  line-height: 1.85;
  color: #24292f;
  word-break: break-word;
  overflow-wrap: break-word;
}
.mp-reader-body p {
  margin-bottom: 1.5em;
  text-align: justify;
  text-indent: 2.2em; /* Otomatis menjorok ke dalam */
}
.mp-reader-body p span:not(.mp-dropcap) {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Grand Editorial First Letter / Drop Cap */
.mp-dropcap {
  float: left;
  font-family: var(--f-serif) !important;
  font-size: 3.3em !important;
  line-height: 0.82 !important;
  font-weight: 700 !important;
  color: var(--brand) !important;
  padding: 4px 10px 0 0 !important;
  margin: 0 !important;
  text-transform: uppercase;
  display: block;
}

/* Kecualikan paragraf yang berisi dropcap, gambar, iframe, atau teks rata tengah */
.mp-reader-body p.has-dropcap,
.mp-reader-body p:has(.mp-dropcap),
.mp-reader-body p:has(img),
.mp-reader-body p:has(iframe),
.mp-reader-body p.no-indent,
.mp-reader-body p.text-center,
.mp-reader-body p[style*="text-align: center"],
.mp-reader-body p[style*="text-align:center"] {
  text-indent: 0 !important;
}

/* Headings, blockquotes, lists, tables tidak menjorok */
.mp-reader-body h1,
.mp-reader-body h2,
.mp-reader-body h3,
.mp-reader-body h4,
.mp-reader-body h5,
.mp-reader-body h6,
.mp-reader-body blockquote,
.mp-reader-body pre,
.mp-reader-body ul,
.mp-reader-body ol,
.mp-reader-body table,
.mp-reader-body .ql-syntax {
  text-indent: 0 !important;
}

/* Strict Mobile Containment for Editorial Content */
.mp-reader-body img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--r-lg);
  margin: 20px auto;
  box-shadow: var(--shadow-md);
  display: block;
}
.mp-reader-body table {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 20px 0;
}
.mp-reader-body iframe,
.mp-reader-body video,
.mp-reader-body embed,
.mp-reader-body object {
  max-width: 100% !important;
  width: 100% !important;
  border-radius: var(--r-md);
}
.mp-reader-body p,
.mp-reader-body div,
.mp-reader-body span {
  max-width: 100%;
}
.mp-reader-body blockquote {
  font-family: var(--f-serif); font-size: 19px; font-style: italic; line-height: 1.55;
  color: var(--gray-700); border-left: 3px solid var(--brand);
  padding: 14px 22px; margin: 24px 0; background: #fdfbf7; border-radius: 0 var(--r-md) var(--r-md) 0;
}
.mp-reader-body h2, .mp-reader-body h3, .mp-reader-body h4 { font-family: var(--f-sans); margin: 1.8em 0 0.5em 0; }
.mp-reader-body h2 { font-size: 24px; }
.mp-reader-body h3 { font-size: 20px; }

@media (max-width: 575px) {
  .mp-reader-headline {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .mp-reader-lead {
    font-size: 14.5px;
    padding: 12px 14px;
    margin-bottom: 18px;
  }
  .mp-reader-byline {
    padding: 12px 0;
    gap: 10px;
    margin-bottom: 18px;
  }
  .mp-reader-body {
    font-size: 16px;
    line-height: 1.8;
  }
  .mp-dropcap {
    font-size: 3.2em !important;
    line-height: 0.8 !important;
    margin-top: 2px !important;
    margin-right: 8px !important;
  }
  .mp-reader-body blockquote {
    font-size: 15.5px;
    padding: 10px 14px;
  }
  .mp-page-header {
    padding: 14px 16px;
    gap: 12px;
  }
  .mp-page-title {
    font-size: 16px;
  }
  .mp-pagination {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px;
    text-align: center;
  }
  .mp-page-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mp-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }
}

/* Bottom Share */
.mp-reader-bottom-share {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 36px; padding: 20px 0; border-top: 1px solid var(--gray-200);
}
.mp-reader-bottom-share p { font-size: 14px; font-weight: 700; color: var(--gray-900); margin: 0; }
.mp-reader-bottom-share .mp-share-btn { width: auto; padding: 8px 16px; border-radius: var(--r-md); font-size: 13px; font-weight: 600; }

/* Related Articles */
.mp-related { margin-top: 40px; padding-top: 28px; border-top: 2px solid var(--gray-200); }
.mp-related-title {
  font-family: var(--f-serif); font-size: 20px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.mp-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.mp-related-card {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-md);
  overflow: hidden; transition: all 0.25s; color: inherit;
}
.mp-related-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; }
.mp-related-card-img { aspect-ratio: 16/10; overflow: hidden; }
.mp-related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.mp-related-card:hover .mp-related-card-img img { transform: scale(1.05); }
.mp-related-card-info { padding: 14px; }
.mp-related-card-info h4 {
  font-family: var(--f-serif); font-size: 14px; font-weight: 600; line-height: 1.4;
  color: var(--gray-900); margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mp-related-card:hover .mp-related-card-info h4 { color: var(--brand); }
.mp-related-card-info span { font-size: 11px; color: var(--gray-500); }

/* Reader Back Button */
.mp-reader-back { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-100); }

/* ═══════════════════════════════════════════════════════════════
   19. BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.mp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; font-size: 14px; font-weight: 600; border-radius: var(--r-md);
  transition: all 0.2s; cursor: pointer;
}
.mp-btn-primary { background: var(--brand); color: #fff; border: 1px solid var(--brand); }
.mp-btn-primary:hover { background: var(--brand-hover); color: #fff; }
.mp-btn-outline { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-300); }
.mp-btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════
   20. IMAGE SLIDER / CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.mp-slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 100%;
  background: transparent;
}
.mp-slider-single {
  width: 100%;
  border-radius: var(--r-xl);
  background: transparent;
}
.mp-slider-single .mp-slider-viewport {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 520px;
  border-radius: var(--r-xl);
  background: transparent;
}
.mp-slider-thumb {
  height: 100%;
  aspect-ratio: 16 / 10;
}
.mp-slider-viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--r-xl);
}
.mp-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.mp-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.mp-slider-single .mp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
  background: transparent;
}
.mp-slider-thumb .mp-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.mp-slider-arrow {
  position: absolute;
  top: 50%;
  font-size: 24px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin-top: -18px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  cursor: pointer;
  padding: 0;
}
.mp-slider-arrow i {
  font-size: 24px;
  line-height: 1;
}
.mp-slider-arrow:hover,
.mp-slider-arrow:focus {
  background: var(--brand); /* #c7092e */
  color: #fff;
}
.mp-slider-prev { left: 10px; }
.mp-slider-next { right: 10px; }

.mp-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}
.mp-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.mp-slider-dot.active {
  background: var(--brand); /* #c7092e */
  transform: none;
  box-shadow: none;
}

.mp-slider-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 10;
  font-weight: 600;
  pointer-events: none;
}

/* Zoomable image cursor */
.mp-zoomable {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.mp-zoomable:hover {
  opacity: 0.95;
}

/* ═══════════════════════════════════════════════════════════════
   24. FULLSCREEN IMAGE LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════════════ */
.mp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mp-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.mp-lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 90vh;
  user-select: none;
}
.mp-lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.mp-lightbox-caption {
  color: #f8fafc;
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
  max-width: 800px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.mp-lightbox-counter {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.mp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px; /* Curved, not full circle */
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  backdrop-filter: blur(8px);
}
.mp-lightbox-close:hover {
  background: #c7092e;
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}
.mp-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  border-radius: 10px; /* Curved, not full circle */
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 32px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.mp-lightbox-arrow:hover {
  background: #c7092e;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}
.mp-lightbox-prev { left: 24px; }
.mp-lightbox-next { right: 24px; }

@media (max-width: 767px) {
  .mp-reader-media {
    min-height: 200px;
    max-height: 380px;
  }
  .mp-reader-media > img {
    max-height: 380px;
    height: auto;
    object-fit: contain;
  }
  .mp-slider-single .mp-slider-viewport {
    max-height: 380px;
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }
  .mp-slider-single .mp-slide img {
    max-height: 380px;
    height: 100%;
    object-fit: contain;
  }
  .mp-slider-arrow {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    margin-top: -16px;
    border-radius: 4px;
  }
  .mp-slider-prev { left: 6px; }
  .mp-slider-next { right: 6px; }

  .mp-lightbox-arrow {
    width: 38px;
    height: 52px;
    font-size: 24px;
    border-radius: 8px;
  }
  .mp-lightbox-prev { left: 10px; }
  .mp-lightbox-next { right: 10px; }
  .mp-lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
    border-radius: 6px;
  }
  .mp-lightbox-caption {
    font-size: 13px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .mp-reader-media {
    min-height: 180px;
    max-height: 320px;
  }
  .mp-reader-media > img {
    max-height: 320px;
    height: auto;
    object-fit: contain;
  }
  .mp-slider-single .mp-slider-viewport {
    max-height: 320px;
    min-height: 180px;
    aspect-ratio: 16 / 10;
  }
  .mp-slider-single .mp-slide img {
    max-height: 320px;
    height: 100%;
    object-fit: contain;
  }
}

/* ═══════════════════════════════════════════════════════════════
   21. LOADING & SKELETON STATES
   ═══════════════════════════════════════════════════════════════ */
.mp-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px; color: var(--gray-500);
}
.mp-loading p { margin-top: 14px; font-size: 14px; font-weight: 500; }
.mp-loading-sm { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
.mp-spinner {
  width: 32px; height: 32px; border: 3px solid var(--gray-200);
  border-top-color: var(--brand); border-radius: 50%; animation: spin 0.8s linear infinite;
}
.mp-spinner-sm {
  width: 16px; height: 16px; border: 2px solid var(--gray-200);
  border-top-color: var(--brand); border-radius: 50%; animation: spin 0.8s linear infinite;
}
.mp-skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 1000px 100%; animation: shimmer 2s infinite linear; border-radius: var(--r-md);
}
.mp-skeleton-hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; margin-bottom: 40px; }
.mp-skeleton-lg { height: 460px; border-radius: var(--r-xl); }
.mp-skeleton-side-stack { display: flex; flex-direction: column; gap: 14px; }
.mp-skeleton-sm { height: 106px; border-radius: var(--r-lg); }
.mp-skeleton-text { height: 16px; margin-bottom: 10px; border-radius: 4px; }
@media (max-width: 991px) { .mp-skeleton-hero { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   22. EMPTY / ERROR STATES
   ═══════════════════════════════════════════════════════════════ */
.mp-empty-state {
  text-align: center; padding: 60px 20px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--r-xl);
}
.mp-empty-state i { font-size: 48px; color: var(--gray-300); margin-bottom: 16px; display: block; }
.mp-empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.mp-empty-state p { color: var(--gray-500); margin-bottom: 20px; }
.mp-error-state { border-color: #fecdd3; }
.mp-error-state i { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════
   23. FOOTER
   ═══════════════════════════════════════════════════════════════ */
.mp-footer {
  background: var(--midnight); color: var(--gray-400); padding: 56px 0 24px 0;
  margin-top: 60px;
}
.mp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 991px) { .mp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .mp-footer-grid { grid-template-columns: 1fr; } }
.mp-footer-col {}
.mp-footer-about { font-size: 13px; line-height: 1.7; max-width: 360px; }
.mp-footer-heading {
  font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 16px;
}
.mp-footer-links { display: flex; flex-direction: column; gap: 10px; }
.mp-footer-links a { font-size: 13px; color: var(--gray-400); transition: color 0.2s; }
.mp-footer-links a:hover { color: #fff; }
.mp-footer-social { display: flex; gap: 12px; }
.mp-footer-social a {
  font-size: 20px; color: var(--gray-500); transition: color 0.2s;
}
.mp-footer-social a:hover { color: var(--brand); }
.mp-footer-bottom {
  padding-top: 24px; text-align: center; font-size: 12px; color: var(--gray-500);
}
.mp-footer-credit { margin-top: 6px; font-size: 11px; }

/* ═══════════════════════════════════════════════════════════════
   24. ARTICLE TAGS & TOPICS LIST (RECTANGULAR / KOTAK)
   ═══════════════════════════════════════════════════════════════ */
.mp-reader-tags {
  margin: 32px 0 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.mp-reader-tags .list-inline,
.list-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mp-reader-tags .list-inline-item,
.list-inline-item {
  display: inline-flex;
  align-items: center;
}
.mp-reader-tags .list-inline-item i.fa-tags {
  color: var(--brand);
  font-size: 14px;
  margin-right: 4px;
}
.mp-reader-tags .list-inline-item a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 0 !important; /* Kotak / Persegi */
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--gray-200);
}
.mp-reader-tags .list-inline-item a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 2px 4px rgba(199, 9, 46, 0.2);
  transform: translateY(-1px);
}


