/* Inner pages — Pronangkis, CSR, SDGs, Publikasi */
.page-hero {
  position: relative;
  padding: 56px 0 48px;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.page-hero--pronangkis {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #b91c1c 100%);
}

.page-hero--csr {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
}

.page-hero--sdgs {
  background: linear-gradient(135deg, #92400e 0%, #d97706 50%, #b45309 100%);
}

.page-hero--publikasi {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero h1 i {
  margin-right: 10px;
  opacity: 0.95;
}

.page-hero-lead {
  font-size: 1rem;
  max-width: 640px;
  opacity: 0.92;
  line-height: 1.6;
  margin-bottom: 24px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-page-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-page-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-page-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  transition: background 0.2s;
}

.btn-page-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.page-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.page-stat-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.page-stat-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-stat-card i {
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: block;
}

.page-stat-card--red i { color: #dc2626; }
.page-stat-card--blue i { color: #2563eb; }
.page-stat-card--gold i { color: #d97706; }
.page-stat-card--green i { color: #2e7d32; }

.page-section {
  padding: 48px 0;
}

.page-section--alt {
  background: var(--bg-light);
}

.page-section-header {
  margin-bottom: 28px;
}

.page-section-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.page-section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-section-header--toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-chart-filters {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.page-chart-filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-chart-filter select {
  min-width: 110px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
}

#pronangkisFilterWilayah {
  min-width: 220px;
  max-width: min(280px, 70vw);
}

.page-charts-loading,
.page-charts-error {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-charts-loading i {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: #2563eb;
}

.page-charts-error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  font-weight: 600;
}

.page-charts--csr {
  --rekap-accent: #2563eb;
  --rekap-accent-border: #bfdbfe;
}

.page-charts--pronangkis {
  --rekap-accent: #dc2626;
  --rekap-accent-border: #fecaca;
}

.page-charts--pronangkis .chart-panel-icon {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.page-charts--pronangkis .page-charts-loading i {
  color: #dc2626;
}

.page-charts--sdgs {
  --rekap-accent: #d97706;
  --rekap-accent-border: #fde68a;
}

.page-charts--sdgs .chart-panel-icon {
  background: linear-gradient(135deg, #d97706, #b45309);
}

.page-charts--sdgs .page-charts-loading i {
  color: #d97706;
}

.page-charts .rekap-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.page-charts .dash-stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  padding: 16px 14px;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.page-charts .dash-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--dash-accent, #dc2626);
}

.page-charts .dash-stat-card--navy { --dash-accent: #1e3a5c; }
.page-charts .dash-stat-card--red { --dash-accent: #dc2626; }
.page-charts .dash-stat-card--coral { --dash-accent: #ea580c; }
.page-charts .dash-stat-card--wine { --dash-accent: #b91c1c; }

.page-charts .dash-stat-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffebee;
}

.page-charts .dash-stat-card--navy .dash-stat-icon { background: #e8eef5; }
.page-charts .dash-stat-card--coral .dash-stat-icon { background: #fff7ed; }
.page-charts .dash-stat-card--wine .dash-stat-icon { background: #fef2f2; }

.page-charts .dash-stat-body { flex: 1; min-width: 0; }

.page-charts .dash-stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 4px;
}

.page-charts .dash-stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.page-charts .dash-stat-value--sm {
  font-size: 0.95rem;
}

.page-charts .rekap-charts-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.page-charts .chart-panel {
  background: #fff;
  border: 1px solid var(--rekap-accent-border, #e8edf2);
  border-radius: 14px;
  padding: 16px 16px 10px;
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.page-charts .chart-panel-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.page-charts .chart-panel-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.page-charts .chart-span-12 { grid-column: span 12; }
.page-charts .chart-span-8 { grid-column: span 8; }
.page-charts .chart-span-6 { grid-column: span 6; }
.page-charts .chart-span-4 { grid-column: span 4; }

.page-charts .chart-container {
  min-height: 280px;
  overflow: visible;
}

.page-charts .chart-container--tall {
  min-height: 340px;
}

@media (max-width: 900px) {
  .page-charts .rekap-charts-grid {
    grid-template-columns: 1fr;
  }

  .page-charts .chart-span-12,
  .page-charts .chart-span-8,
  .page-charts .chart-span-6,
  .page-charts .chart-span-4 {
    grid-column: span 1;
  }

  .page-charts .rekap-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.page-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.page-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #fff;
}

.page-card--red .page-card-icon { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.page-card--blue .page-card-icon { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.page-card--gold .page-card-icon { background: linear-gradient(135deg, #d97706, #b45309); }
.page-card--green .page-card-icon { background: linear-gradient(135deg, #2e7d32, #1b5e20); }

.page-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.page-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.page-card-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-card-meta i {
  margin-right: 4px;
}

.page-card--link {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  max-width: 720px;
  margin: 0 auto;
}

.page-card--link .page-card-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.page-card--link .page-card-link-body {
  flex: 1;
  min-width: 0;
}

.page-card--link h3 {
  font-size: 1.15rem;
}

.page-card--link:hover h3 {
  color: #b45309;
}

.page-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.page-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.page-table th,
.page-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.page-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-table tr:last-child td {
  border-bottom: none;
}

.page-table tbody tr:hover {
  background: #fafbfc;
}

.page-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}

.page-badge--red { background: #fef2f2; color: #dc2626; }
.page-badge--blue { background: #eff6ff; color: #2563eb; }
.page-badge--gold { background: #fffbeb; color: #b45309; }
.page-badge--green { background: #f0fdf4; color: #15803d; }

.sdgs-goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.sdgs-goal-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sdgs-goal-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.sdgs-goal-item small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.sdgs-goal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 8px;
}

.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.news-featured-main {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b5e20, #43a047);
  color: #fff;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-featured-main--cover {
  padding: 0;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  justify-content: flex-end;
}

.news-featured-main--cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 18, 0.96) 0%, rgba(27, 94, 32, 0.55) 45%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.news-featured-main-overlay {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
}

.news-featured-excerpt {
  opacity: 0.92;
  font-size: 0.9rem;
  margin-top: 8px;
  line-height: 1.55;
}

.news-featured-btn {
  margin-top: 14px;
  display: inline-flex;
}

.news-featured-main-overlay h3 a {
  color: #fff;
}

.news-featured-main-overlay h3 a:hover {
  color: #bbf7d0;
}

.news-featured-main .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.news-featured-main h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-list-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-list-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: stretch;
  transition: box-shadow 0.2s;
}

.news-list-item:hover {
  box-shadow: var(--shadow-sm);
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.news-page-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-page-card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf2;
}

.news-page-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-page-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.news-page-card-date i {
  margin-right: 4px;
}

.news-page-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}

.news-page-card-body h3 a {
  color: var(--navy);
}

.news-page-card-body h3 a:hover {
  color: #2e7d32;
}

.news-page-card-body > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

.page-pagination {
  margin-top: 28px;
}

.page-pagination-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-pagination-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.page-pagination-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-pagination-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.page-pagination-btn,
.page-pagination-num {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.page-pagination-num {
  min-width: 38px;
  padding: 8px 10px;
  text-align: center;
}

.page-pagination-btn:hover:not(:disabled),
.page-pagination-num:hover:not(.is-active) {
  border-color: #2e7d32;
  color: #2e7d32;
}

.page-pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-pagination-num.is-active {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

.page-pagination-ellipsis {
  padding: 0 4px;
  color: var(--text-muted);
  font-weight: 700;
}

@media (max-width: 992px) {
  .news-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-page-grid {
    grid-template-columns: 1fr;
  }

  .page-pagination-controls {
    width: 100%;
  }

  .page-pagination-pages {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}

.news-list-thumb {
  flex-shrink: 0;
  width: 88px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.news-list-thumb img {
  width: 88px;
  height: 72px;
  object-fit: cover;
  display: block;
}

.news-list-content {
  flex: 1;
  min-width: 0;
}

.news-list-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.news-list-item .date {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 8px 4px;
}

.news-list-item .date strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
}

.news-list-item .date span {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.news-list-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}

.news-list-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.page-dummy-note {
  text-align: center;
  padding: 16px;
  background: #fffbeb;
  border: 1px dashed #fcd34d;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #92400e;
  margin-bottom: 32px;
}

.page-dummy-note i {
  margin-right: 6px;
}

@media (max-width: 900px) {
  .page-stats { grid-template-columns: repeat(2, 1fr); }
  .page-grid-2,
  .page-grid-3,
  .news-featured { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .page-stats { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0 36px; }
}

/* Article detail */
.article-hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 55%, #1b5e20 100%);
  color: #fff;
  padding: 40px 0 48px;
}

.article-hero .page-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.article-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.88rem;
  opacity: 0.92;
}

.article-meta i {
  margin-right: 6px;
  opacity: 0.85;
}

.article-main {
  padding: 48px 0 64px;
  background: var(--bg-light, #f8fafc);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.article-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.article-cover {
  margin: 0 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-cover img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-cover figcaption {
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #fafbfc;
  border-top: 1px solid var(--border);
}

.article-lead {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--navy, #0f172a);
  margin-bottom: 24px;
}

.article-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 18px;
}

.article-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy, #0f172a);
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}

.article-quote {
  margin: 28px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-left: 4px solid #16a34a;
  border-radius: 0 12px 12px 0;
}

.article-quote p {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: #14532d;
  margin-bottom: 10px;
}

.article-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: #166534;
}

.article-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.article-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #334155;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.article-highlights i {
  color: #16a34a;
  margin-top: 2px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-tags-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 4px;
}

.article-tags a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 999px;
  transition: background 0.2s;
}

.article-tags a:hover {
  background: #dcfce7;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--navy, #0f172a);
  transition: background 0.2s, color 0.2s;
}

.article-share a:hover {
  background: #16a34a;
  color: #fff;
}

.article-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #15803d;
}

.article-nav-back:hover {
  text-decoration: underline;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.article-sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.article-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy, #0f172a);
  margin-bottom: 16px;
}

.article-sidebar-card h3 i {
  color: #16a34a;
  margin-right: 8px;
}

.article-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.article-related-list a {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.article-related-list li:last-child a {
  padding-bottom: 0;
  border-bottom: none;
}

.related-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.article-related-list strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy, #0f172a);
  line-height: 1.45;
}

.article-related-list a:hover strong {
  color: #15803d;
}

.article-sidebar-card--cta {
  text-align: center;
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 100%);
  border-color: #bbf7d0;
}

.article-sidebar-card--cta > i {
  font-size: 2rem;
  color: #16a34a;
  margin-bottom: 12px;
}

.article-sidebar-card--cta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.btn-page-primary--sm {
  display: inline-flex;
  padding: 10px 18px;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .article-content {
    padding: 20px;
  }

  .article-main {
    padding: 32px 0 48px;
  }
}

/* Peta Pronangkis (gaya BanPeta) */
.pronangkis-peta-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #1a1a1a;
  min-height: 520px;
}

.pronangkis-peta-map {
  width: 100%;
  height: 520px;
  z-index: 1;
}

.pronangkis-peta-toolbar {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
  max-width: calc(100% - 24px);
}

.pronangkis-peta-filter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.pronangkis-peta-filter select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 140px;
}

.pronangkis-peta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: #b45309;
  box-shadow: var(--shadow-sm);
}

.pronangkis-peta-btn--primary {
  background: #f59e0b;
  color: #fff;
}

.pronangkis-peta-btn:hover {
  filter: brightness(0.96);
}

.pronangkis-peta-title {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  text-align: right;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.pronangkis-peta-title strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pronangkis-peta-title span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.pronangkis-peta-legend {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 500;
  background: rgba(0, 0, 0, 0.42);
  border-radius: 20px;
  padding: 12px 14px;
  max-height: 244px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
  margin-bottom: 10px;
}

.pronangkis-peta-legend table {
  border-collapse: collapse;
}

.pronangkis-peta-legend td {
  padding: 4px 6px;
  vertical-align: top;
}

.pronangkis-peta-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.pronangkis-peta-legend-level {
  font-size: 0.72rem;
  font-weight: 800;
}

.pronangkis-peta-legend-range {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
}

.pronangkis-peta-loading,
.pronangkis-peta-error {
  position: absolute;
  inset: 0;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.pronangkis-peta-loading[hidden],
.pronangkis-peta-error[hidden] {
  display: none !important;
}

.pronangkis-peta-loading i {
  font-size: 1.75rem;
  color: #f59e0b;
}

.pronangkis-peta-error i {
  color: #fbbf24;
  margin-right: 6px;
}

.pronangkis-peta-popup-title {
  font-weight: 800;
  color: #1d4ed8;
  margin-bottom: 8px;
}

.pronangkis-peta-popup-block {
  margin-top: 8px;
  font-size: 0.85rem;
}

.pronangkis-peta-popup-block strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.pronangkis-peta-popup-muted {
  font-size: 0.82rem;
  color: #64748b;
}

.pronangkis-peta-tip-line {
  font-size: 0.72rem;
}

@media (max-width: 720px) {
  .pronangkis-peta-map,
  .pronangkis-peta-wrap {
    min-height: 400px;
    height: 400px;
  }

  .pronangkis-peta-title {
    display: none;
  }

  .pronangkis-peta-legend {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

.page-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-card h3 a:hover {
  color: #15803d;
}

.news-featured-main h3 a,
.news-list-item h4 a {
  color: inherit;
  text-decoration: none;
}

.news-featured-main h3 a:hover,
.news-list-item h4 a:hover {
  color: #0f172a;
}

.article-files-wrap h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.article-files {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-files li {
  margin-bottom: 8px;
}

.article-files a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #15803d;
  font-weight: 600;
  font-size: 0.9rem;
}

.pub-panel .btn-dl {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
