/*
 * JawaPress Comprehensive Stylesheet
 * Handcrafted to replicate JawaPos.com modern UI
 * 100% Self-Contained - Zero External Dependencies Required
 */

/* ==========================================================================
   1. Reset & Global CSS Variables
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #2563eb;
  --color-primary-rgb: 37, 99, 235;
  --color-accent: #e30613;
  --header-max-width: 1100px;
  --main-max-width: 1100px;
  --sidebar-width: 320px;
  --footer-max-width: 1100px;
  --logo-desktop-width: 275px;
  --logo-mobile-width: 210px;
  --header-bg: #ffffff;
  --footer-bg: #ffffff;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html.dark {
  --header-bg: #18181b;
  --footer-bg: #121214;
}

body {
  font-family: var(--font-family);
  background-color: #ffffff;
  color: #18181b;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.dark body {
  background-color: #09090b;
  color: #f4f4f5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

/* ==========================================================================
   2. Layout, Containers & Max-Widths
   ========================================================================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-\[1100px\] {
  max-width: var(--main-max-width, 1100px);
}

.max-w-\[440px\] {
  max-width: 440px;
}

.max-w-md {
  max-width: 28rem;
}

.header-container {
  max-width: var(--header-max-width, 1100px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.main-container {
  max-width: var(--main-max-width, 1100px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-container {
  max-width: var(--footer-max-width, 1100px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.container,
.main-container,
.section-container {
  width: 100%;
  max-width: var(--container-max-width, 1100px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  align-items: start;
}

@media (min-width: 1024px) {
  .layout-with-sidebar {
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width, 320px);
    gap: 2rem;
  }
}

.main-content-col {
  min-width: 0;
  width: 100%;
}

.sidebar-col {
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .sidebar-col {
    position: sticky;
    top: 5.5rem;
  }
}

/* ==========================================================================
   3. Display, Position, Sizing & Grid Utilities
   ========================================================================== */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-2\.5 { top: 0.625rem; }
.left-2\.5 { left: 0.625rem; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-\[120px\] { width: 120px; }
.min-w-0 { min-width: 0; }
.min-w-\[140px\] { min-width: 140px; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-\[2px\] { height: 2px; }
.h-\[3px\] { height: 3px; }
.h-\[120px\] { height: 120px; }
.h-\[300px\] { height: 300px; }

.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[1\/1\] { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.flex-shrink-0 { flex-shrink: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

/* ==========================================================================
   4. Spacing (Padding & Margins)
   ========================================================================== */
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }

.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-9 { padding-left: 2.25rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-4 { padding-right: 1rem; }

.m-0 { margin: 0; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.-mt-2 { margin-top: -0.5rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-auto { margin-left: auto; }

/* ==========================================================================
   5. Typography, Borders & Effects
   ========================================================================== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.45\] { line-height: 1.45; }
.whitespace-nowrap { white-space: nowrap; }

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; border-color: #e4e4e7; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-color: #e4e4e7; }
.border-t { border-top-width: 1px; border-top-style: solid; border-color: #e4e4e7; }
.border-l { border-left-width: 1px; border-left-style: solid; border-color: #e4e4e7; }
.border-r { border-right-width: 1px; border-right-style: solid; border-color: #e4e4e7; }
.last\:border-b-0:last-child { border-bottom-width: 0; }

.border-gray-50 { border-color: #f9fafb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-500 { border-color: #22c55e; }
.border-primary { border-color: var(--color-primary, #2563eb); }
.border-zinc-700 { border-color: #3f3f46; }

.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.scrollbar-none { scrollbar-width: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }

/* ==========================================================================
   6. Colors & Gradients
   ========================================================================== */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-green-600 { color: #16a34a; }
.text-yellow-400 { color: #facc15; }
.text-primary { color: var(--color-primary, #2563eb); }
.text-accent { color: var(--color-accent, #e30613); }

.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-500 { background-color: #22c55e; }
.bg-zinc-800 { background-color: #27272a; }
.bg-zinc-900 { background-color: #18181b; }
.bg-primary { background-color: var(--color-primary, #2563eb); }
.bg-accent { background-color: var(--color-accent, #e30613); }

.bg-primary\/5 { background-color: rgba(37, 99, 235, 0.05); }
.bg-primary\/10 { background-color: rgba(37, 99, 235, 0.1); }
.bg-primary\/20 { background-color: rgba(37, 99, 235, 0.2); }
.bg-primary\/80 { background-color: rgba(37, 99, 235, 0.8); }
.bg-primary\/85 { background-color: rgba(37, 99, 235, 0.85); }
.bg-primary\/90 { background-color: rgba(37, 99, 235, 0.9); }

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops, rgba(0,0,0,0.8), transparent));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops, var(--color-primary, #2563eb), transparent));
}

.from-black\/90 {
  --tw-gradient-from: rgba(0, 0, 0, 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}
.from-black\/80 {
  --tw-gradient-from: rgba(0, 0, 0, 0.8);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}
.via-black\/40 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.4), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}
.via-black\/30 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.3), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}
.to-transparent {
  --tw-gradient-to: transparent;
}
.from-primary {
  --tw-gradient-from: var(--color-primary, #2563eb);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}
.via-primary\/40 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(37, 99, 235, 0.4), var(--tw-gradient-to, transparent);
}

/* ==========================================================================
   7. Transitions, Transforms & Hover States
   ========================================================================== */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-duration: 200ms; }
.transition-opacity { transition-property: opacity; transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover-zoom {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .hover-zoom,
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:text-blue-200 { color: #bfdbfe; }
.group:hover .group-hover\:text-primary { color: var(--color-primary, #2563eb); }
.group:hover .group-hover\:bg-primary\/5 { background-color: rgba(37, 99, 235, 0.05); }

.hover\:bg-primary:hover { background-color: var(--color-primary, #2563eb); }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-green-500:hover { background-color: #22c55e; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:text-primary:hover { color: var(--color-primary, #2563eb); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:border-primary:hover { border-color: var(--color-primary, #2563eb); }
.hover\:border-primary\/50:hover { border-color: rgba(37, 99, 235, 0.5); }
.hover\:opacity-90:hover { opacity: 0.9; }
.focus\:border-primary:focus { border-color: var(--color-primary, #2563eb); }

/* ==========================================================================
   8. Responsive Breakpoints (sm, md, lg)
   ========================================================================== */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:inline { display: inline; }
  .sm\:hidden { display: none; }
  .sm\:h-\[360px\] { height: 360px; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:flex-col { flex-direction: column; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:h-\[340px\] { height: 340px; }
  .md\:w-10 { width: 2.5rem; }
  .md\:w-\[150px\] { width: 150px; }
  .md\:w-\[160px\] { width: 160px; }
  .md\:mb-0 { margin-bottom: 0px; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:p-4 { padding: 1rem; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-\[15px\] { font-size: 15px; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-9xl { font-size: 8rem; line-height: 1; }
  .md\:gap-5 { gap: 1.25rem; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:h-\[140px\] { height: 140px; }
  .lg\:h-\[420px\] { height: 420px; }
  .lg\:w-\[200px\] { width: 200px; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/* ==========================================================================
   9. Dark Mode (html.dark)
   ========================================================================== */
html.dark .dark\:bg-zinc-900 { background-color: #18181b; }
html.dark .dark\:bg-zinc-800 { background-color: #27272a; }
html.dark .dark\:bg-zinc-800\/60 { background-color: rgba(39, 39, 42, 0.6); }
html.dark .dark\:bg-primary\/20 { background-color: rgba(37, 99, 235, 0.2); }
html.dark .dark\:border-zinc-800 { border-color: #27272a; }
html.dark .dark\:border-zinc-800\/50 { border-color: rgba(39, 39, 42, 0.5); }
html.dark .dark\:border-zinc-700 { border-color: #3f3f46; }
html.dark .dark\:border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
html.dark .dark\:border-green-900\/40 { border-color: rgba(20, 83, 45, 0.4); }

html.dark .dark\:text-white { color: #ffffff; }
html.dark .dark\:text-white\/90 { color: rgba(255, 255, 255, 0.9); }
html.dark .dark\:text-gray-200 { color: #e5e7eb; }
html.dark .dark\:text-gray-300 { color: #d1d5db; }
html.dark .dark\:text-gray-400 { color: #9ca3af; }
html.dark .dark\:text-green-400 { color: #4ade80; }
html.dark .dark\:text-zinc-700 { color: #3f3f46; }

html.dark .dark\:hover\:bg-zinc-800:hover { background-color: #27272a; }
html.dark .dark\:group-hover\:bg-primary\/10 { background-color: rgba(37, 99, 235, 0.1); }
html.dark .dark\:group-hover\:text-primary { color: var(--color-primary, #2563eb); }

/* ==========================================================================
   10. JawaPos Custom Components
   ========================================================================== */

/* Logo width controls */
.site-logo-img {
  width: var(--logo-mobile-width, 210px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .site-logo-img {
    width: var(--logo-desktop-width, 275px);
  }
}

/* Category Navbar (Baris 3) */
.category-navbar {
  background-color: var(--header-bg, #ffffff);
}
.category-nav-scroll {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0.25rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}
.category-nav-scroll::-webkit-scrollbar {
  display: none !important;
}
.category-nav-scroll li {
  list-style: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
.category-nav-scroll li a,
.category-nav-scroll > a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.35rem 0.65rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  border-radius: 0.375rem !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color var(--transition-fast), background-color var(--transition-fast) !important;
}
html.dark .category-nav-scroll li a,
html.dark .category-nav-scroll > a {
  color: #e4e4e7 !important;
}
.category-nav-scroll li a:hover,
.category-nav-scroll > a:hover {
  color: var(--color-primary, #2563eb) !important;
}
.category-nav-scroll li.current-menu-item > a,
.category-nav-scroll li.current-category-ancestor > a {
  color: var(--color-primary, #2563eb) !important;
  font-weight: 700 !important;
}

/* JawaPos Slant Ribbon SVG Section Title */
.section-title-three {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1.5rem;
  color: #ffffff !important;
  font-weight: 700;
  white-space: nowrap;
  z-index: 1;
  text-transform: capitalize;
  font-size: 1rem;
}
.section-title a {
  color: #ffffff !important;
}
.section-title-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--color-primary, #2563eb);
}
.section-title-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.section-title-line-three {
  flex-grow: 1;
  height: 2px;
  background-color: #e4e4e7;
  margin-left: -14px;
}
html.dark .section-title-line-three {
  background-color: #27272a;
}

/* Category Badge (Red Pill) */
.badge-cat {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.25rem;
  background-color: var(--color-accent, #e30613);
  color: #ffffff;
}

/* Terpopuler Block */
.popular-stroke-rank {
  color: transparent !important;
  -webkit-text-stroke: 2px var(--color-primary, #2563eb);
  text-stroke: 2px var(--color-primary, #2563eb);
  font-weight: 900;
  line-height: 1;
}
.popular-feed-scroll {
  display: flex;
  flex-direction: column;
}

/* Tag Pills */
.post-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e4e4e7;
  color: #374151;
  background-color: #ffffff;
  transition: all var(--transition-fast);
}
html.dark .post-tag-pill {
  background-color: #18181b;
  border-color: #27272a;
  color: #d1d5db;
}
.post-tag-pill:hover,
.post-tag-pill.active {
  background-color: var(--color-primary, #2563eb);
  border-color: var(--color-primary, #2563eb);
  color: #ffffff;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background-color: #ffffff;
  z-index: 101;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
html.dark .mobile-drawer {
  background-color: #18181b;
}
.mobile-drawer-overlay.is-active .mobile-drawer {
  transform: translateX(0);
}

/* Dark Mode Icon Toggle */
.theme-toggle-btn .sun-icon { display: none; }
.theme-toggle-btn .moon-icon { display: block; }
html.dark .theme-toggle-btn .sun-icon { display: block; }
html.dark .theme-toggle-btn .moon-icon { display: none; }

/* Mobile Search Collapse */
.mobile-search-collapse { display: none; }
.mobile-search-collapse.is-open { display: block; }

/* Social Share Buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  color: #ffffff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #ffffff;
}
.share-btn-wa { background-color: #25d366; }
.share-btn-fb { background-color: #1877f2; }
.share-btn-x  { background-color: #000000; }
.share-btn-tg { background-color: #229ed9; }
.share-btn-copy { background-color: #64748b; }

/* Store Badges */
.footer-store-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.store-badge-img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
}

/* Footer Grid */
.site-footer {
  background-color: var(--footer-bg, #ffffff);
  border-top: 1px solid #e4e4e7;
  padding-top: 3rem;
  padding-bottom: 2rem;
  color: #374151;
}
html.dark .site-footer {
  border-top-color: #27272a;
  color: #9ca3af;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
html.dark .footer-col-title {
  color: #ffffff;
}
.footer-links-list li {
  margin-bottom: 0.5rem;
}
.footer-links-list a {
  font-size: 0.875rem;
  color: #4b5563;
  transition: color var(--transition-fast);
}
html.dark .footer-links-list a {
  color: #9ca3af;
}
.footer-links-list a:hover {
  color: var(--color-primary, #2563eb);
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-bottom-row {
    flex-direction: row;
  }
}
html.dark .footer-bottom-row {
  border-top-color: #27272a;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: #f3f4f6;
  color: #4b5563;
  transition: all var(--transition-fast);
}
html.dark .social-icon-btn {
  background-color: #27272a;
  color: #e4e4e7;
}
.social-icon-btn:hover {
  background-color: var(--color-primary, #2563eb);
  color: #ffffff;
}

/* Toast */
.jawapress-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #10b981;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.jawapress-toast.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Content Single typography */
.article-body-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.article-body-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.article-body-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.article-body-content img {
  border-radius: 0.75rem;
  margin: 1.5rem auto;
}
.article-body-content blockquote {
  border-left: 4px solid var(--color-primary, #2563eb);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #6b7280;
}
html.dark .article-body-content blockquote {
  color: #9ca3af;
}

/* Breadcrumbs */
.jawapress-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
html.dark .jawapress-breadcrumbs {
  color: #9ca3af;
}
.breadcrumb-separator {
  color: #d1d5db;
}
html.dark .breadcrumb-separator {
  color: #4b5563;
}

/* Widgets */
.widget {
  margin-bottom: 2rem;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 1.25rem;
}
html.dark .widget {
  background-color: #18181b;
  border-color: rgba(255, 255, 255, 0.05);
}
/* Additional Utility Classes */
.-ml-4 { margin-left: -1rem; }
.-z-10 { z-index: -10; }
.bg-gray-200 { background-color: #e5e7eb; }
.font-extrabold { font-weight: 800; }
.h-16 { height: 4rem; }
.h-px { height: 1px; }
.w-16 { width: 4rem; }
.me-2 { margin-inline-end: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.select-none { user-select: none; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* Structural JawaPos Block Classes */
.hero { width: 100%; height: 100%; }
.top-hero-section { margin-bottom: 2rem; }
.editor-choice-section { margin-bottom: 2.5rem; }
.editor-card { display: flex; flex-direction: column; justify-content: space-between; }
.feed-list { display: flex; flex-direction: column; }
.feed-item {
  display: flex !important;
  gap: 1rem !important;
  align-items: stretch !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid #f3f4f6 !important;
}
html.dark .feed-item {
  border-bottom-color: #27272a !important;
}
.feed-category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--color-primary); }
.feed-title { font-weight: 700; font-size: 1rem; line-height: 1.35; color: #111827; }
html.dark .feed-title { color: #f4f4f5; }
.feed-meta { font-size: 0.75rem; color: #9ca3af; }
.feed-thumb-link {
  display: block !important;
  width: 120px !important;
  height: 80px !important;
  flex-shrink: 0 !important;
  border-radius: 0.5rem !important;
  overflow: hidden !important;
}
@media (min-width: 768px) {
  .feed-thumb-link {
    width: 160px !important;
    height: 90px !important;
  }
}
@media (min-width: 1024px) {
  .feed-thumb-link {
    width: 200px !important;
    height: 112px !important;
  }
}
.feed-content { flex: 1 1 0%; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.max-h-\[420px\] { max-height: 420px; }
.post-featured-wrapper .aspect-video { max-height: 420px; }
.article-inline-figure { margin: 1.5rem 0; text-align: center; }
.article-inline-img { max-width: 100% !important; height: auto !important; border-radius: 0.75rem; margin: 1.5rem auto; display: block; }

.category-header-wrap { margin-bottom: 1rem; }
.category-desc { font-size: 0.875rem; color: #6b7280; margin-bottom: 1rem; }
html.dark .category-desc { color: #9ca3af; }
.category-featured-card { margin-bottom: 1.5rem; }
.subcat-pills-wrap { display: flex; align-items: center; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem; margin-bottom: 1.5rem; }

.tag-header-box { margin-bottom: 1.5rem; }
.tag-desc { font-size: 0.875rem; color: #6b7280; }

.search-header-box { margin-bottom: 1.5rem; }
.search-form { width: 100%; }
.search-field { width: 100%; height: 2.25rem; border-radius: 9999px; border: 1px solid #e4e4e7; padding-left: 2.5rem; padding-right: 1rem; font-size: 0.875rem; outline: none; }
.search-input-wrapper { position: relative; width: 100%; }
.search-input-icon { position: absolute; top: 50%; transform: translateY(-50%); left: 0.75rem; color: #9ca3af; pointer-events-none; }

.site-header { width: 100%; }
.site-branding { display: flex; align-items: center; }
.site-logo-link { display: inline-flex; align-items: center; }
.site-logo-text { font-size: 1.5rem; font-weight: 700; color: var(--color-primary); }
.site-main { padding-top: 1.5rem; padding-bottom: 2rem; }

.single-post-title { font-size: 1.5rem; font-weight: 700; line-height: 1.35; margin-bottom: 1rem; }
@media (min-width: 768px) { .single-post-title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .single-post-title { font-size: 2.25rem; } }
.post-featured-wrapper { margin-bottom: 1.5rem; }
.share-buttons-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #f3f4f6; }
html.dark .share-buttons-bar { border-bottom-color: #27272a; }
.related-news-section { margin-top: 2rem; margin-bottom: 2rem; }

.mobile-menu-toggle-btn { padding: 0.375rem; cursor: pointer; color: inherit; }
.mobile-search-toggle-btn { padding: 0.5rem; cursor: pointer; color: inherit; }
.mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #f3f4f6; }
html.dark .mobile-drawer-header { border-bottom-color: #27272a; }
.mobile-drawer-logo { display: flex; align-items: center; }
.mobile-drawer-close-btn { padding: 0.5rem; cursor: pointer; color: inherit; }
.mobile-drawer-body { padding: 1rem; flex: 1 1 0%; overflow-y: auto; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-drawer-footer { padding: 1rem; border-top: 1px solid #f3f4f6; }
html.dark .mobile-drawer-footer { border-top-color: #27272a; }

.footer-about-col { display: flex; flex-direction: column; }
.footer-about-text { font-size: 0.875rem; line-height: 1.625; margin-bottom: 1rem; color: #4b5563; }
html.dark .footer-about-text { color: #9ca3af; }
.footer-logo { margin-bottom: 0.75rem; }
.footer-links-col { display: flex; flex-direction: column; }
.footer-copyright { font-size: 0.875rem; color: #6b7280; }
html.dark .footer-copyright { color: #9ca3af; }
.footer-credits { font-size: 0.75rem; color: #9ca3af; }
.footer-widget { margin-bottom: 1.5rem; }

/* Archive Top Popular Hero Card (Exact JawaPos 5-column split) */
.archive-popular-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

html.dark .archive-popular-hero {
  background-color: #18181b;
  border-color: #27272a;
}

@media (min-width: 768px) {
  .archive-popular-hero {
    grid-template-columns: 3fr 2fr;
    gap: 0.75rem;
  }
}

.archive-popular-hero-img-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: #27272a;
}

@media (min-width: 768px) {
  .archive-popular-hero-img-wrap {
    height: 300px;
  }
}

.archive-popular-hero-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, #ffffff, rgba(0, 86, 179, 0.08));
}

html.dark .archive-popular-hero-content {
  background: linear-gradient(to top, #18181b, rgba(0, 86, 179, 0.12));
}

.archive-popular-hero-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--primary, #0056b3);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.archive-popular-hero-title:hover {
  opacity: 0.85;
}

html.dark .archive-popular-hero-title {
  color: #ffffff;
}
html.dark .archive-popular-hero-title:hover {
  color: var(--primary, #0056b3);
}

.archive-popular-hero-divider {
  height: 3px;
  border-top: 2px dashed rgba(0, 86, 179, 0.2);
  margin: 0.75rem 0;
}

.archive-popular-hero-excerpt {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .archive-popular-hero-excerpt {
    -webkit-line-clamp: 6;
  }
}

html.dark .archive-popular-hero-excerpt {
  color: #d1d5db;
}

.archive-popular-hero-date {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Feed List & Article Rows */
.feed-list {
  display: flex;
  flex-direction: column;
}

.feed-list article,
.main-content-col article.group {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 1rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .feed-list article,
  .main-content-col article.group {
    gap: 1.25rem;
  }
}

html.dark .feed-list article,
html.dark .main-content-col article.group {
  border-bottom-color: #27272a;
}

.feed-list article:last-child,
.main-content-col article.group:last-child {
  border-bottom: none;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.pagination-wrapper .pagination,
.pagination-wrapper .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  background-color: var(--primary, #0056b3);
  border-color: var(--primary, #0056b3);
  color: #ffffff;
}

html.dark .pagination-wrapper .page-numbers {
  background-color: #18181b;
  border-color: #27272a;
  color: #d1d5db;
}

html.dark .pagination-wrapper .page-numbers:hover,
html.dark .pagination-wrapper .page-numbers.current {
  background-color: var(--primary, #0056b3);
  border-color: var(--primary, #0056b3);
  color: #ffffff;
}

.page-links {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Share Buttons Bar */
.share-buttons-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

html.dark .share-buttons-bar {
  border-bottom-color: #27272a;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.share-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.share-btn-wa { background-color: #25d366; }
.share-btn-fb { background-color: #1877f2; }
.share-btn-x { background-color: #0f1419; }
.share-btn-tg { background-color: #229ed9; }
.share-btn-copy { background-color: #6b7280; color: #ffffff; }

/* Post Tag Pills & Subcategory Pills */
.post-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.post-tag-pill:hover,
.post-tag-pill.active {
  background-color: var(--primary, #0056b3);
  border-color: var(--primary, #0056b3);
  color: #ffffff;
}

html.dark .post-tag-pill {
  background-color: #18181b;
  border-color: #27272a;
  color: #d1d5db;
}

html.dark .post-tag-pill:hover,
html.dark .post-tag-pill.active {
  background-color: var(--primary, #0056b3);
  border-color: var(--primary, #0056b3);
  color: #ffffff;
}

/* Search Page Form & Field */
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input-icon {
  position: absolute;
  left: 0.875rem;
  display: flex;
  align-items: center;
  color: #9ca3af;
  pointer-events: none;
}

.search-field {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  font-size: 0.875rem;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.search-field:focus {
  border-color: var(--primary, #0056b3);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
  background-color: #ffffff;
}

html.dark .search-field {
  background-color: #18181b;
  border-color: #27272a;
  color: #f3f4f6;
}

html.dark .search-field:focus {
  background-color: #27272a;
  border-color: var(--primary, #0056b3);
}

/* Article Body & Prose Typography */
.article-body-content,
.prose,
.content-news {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1f2937;
  word-break: break-word;
}

html.dark .article-body-content,
html.dark .prose,
html.dark .content-news {
  color: #e5e7eb;
}

.article-body-content p,
.prose p {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.article-body-content h1,
.article-body-content h2,
.article-body-content h3,
.article-body-content h4,
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  font-weight: 700;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

html.dark .article-body-content h1,
html.dark .article-body-content h2,
html.dark .article-body-content h3,
html.dark .article-body-content h4,
html.dark .prose h1,
html.dark .prose h2,
html.dark .prose h3,
html.dark .prose h4 {
  color: #f9fafb;
}

.article-body-content h2,
.prose h2 { font-size: 1.5rem; }
.article-body-content h3,
.prose h3 { font-size: 1.25rem; }

.article-body-content img,
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem auto;
  display: block;
}

.article-body-content blockquote,
.prose blockquote {
  border-left: 4px solid var(--primary, #0056b3);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #4b5563;
}

html.dark .article-body-content blockquote,
html.dark .prose blockquote {
  color: #9ca3af;
}

.article-body-content ul,
.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.article-body-content ol,
.prose ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.article-body-content li,
.prose li {
  margin-bottom: 0.5rem;
}

.article-body-content a,
.prose a {
  color: var(--primary, #0056b3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Comments Area */
.comments-area { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e4e4e7; }
html.dark .comments-area { border-top-color: #27272a; }
.comments-title, .comment-reply-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.comment-list { list-style: none; margin-bottom: 1.5rem; }
.no-comments { color: #9ca3af; font-size: 0.875rem; font-style: italic; }

/* Widgets */
.widget-area {
  min-width: 0;
  width: 100%;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary, #2563eb);
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: #9ca3af;
}
