/*
Theme Name: Fast Result Update
Theme URI: https://example.com
Author: Fast Result Update
Author URI: https://example.com
Description: A modern, ultra-fast, and high-converting WordPress theme for Sarkari Jobs, Exam Results, Admit Cards & Government Schemes. Fully optimized for Google Discover, Search Indexing, Schema.org & Core Web Vitals.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fast-result-update
*/

/* ==========================================================================
   1. CSS Custom Properties / Design System Tokens
   ========================================================================== */
:root {
  /* Brand Primary & Secondary Colors */
  --navy-primary: #0b192c;
  --navy-dark: #06101e;
  --navy-surface: #1e3e62;
  --navy-light: #2c537d;

  --accent-primary: #ff6500;
  --accent-hover: #e55a00;
  --accent-light: #fff4ec;
  --accent-glow: rgba(255, 101, 0, 0.25);

  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-light: #ecfdf5;

  --royal: #2563eb;
  --royal-dark: #1d4ed8;
  --royal-light: #eff6ff;

  --purple: #7c3aed;
  --purple-light: #f5f3ff;

  --teal: #0d9488;
  --teal-light: #f0fdfa;

  /* Neutral Background & Surface Colors */
  --bg-body: #f4f6f9;
  --card-bg: #ffffff;
  --surface-alt: #f8fafc;

  /* Typography Colors */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Borders & Dividers */
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-focus: #ff6500;

  /* Modern Layered Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(11, 25, 44, 0.04), 0 1px 2px rgba(11, 25, 44, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 25, 44, 0.07), 0 2px 4px rgba(11, 25, 44, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(11, 25, 44, 0.1), 0 4px 6px -2px rgba(11, 25, 44, 0.05);
  --shadow-card-hover: 0 12px 28px rgba(11, 25, 44, 0.12), 0 4px 8px rgba(11, 25, 44, 0.06);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  /* Container Max Width */
  --max-width: 1240px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   2. Reset & Base Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--navy-primary);
  line-height: 1.3;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Accessibility: Skip Link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 20px;
  background: var(--accent-primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  z-index: 99999;
  box-shadow: var(--shadow-lg);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Single Post Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-primary), #ff8a00);
  z-index: 99999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 101, 0, 0.7);
}

/* ==========================================================================
   3. Keyframe Animations
   ========================================================================== */
@keyframes pulseBadge {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes livePulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes tickerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Reusable Pulsing "NEW" Badge */
.badge-new-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
  animation: pulseBadge 1.8s infinite ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
}
.badge-new-pulse.small {
  font-size: 0.58rem;
  padding: 1px 5px;
}

/* ==========================================================================
   4. Header & Top Utility Bar
   ========================================================================== */
.top-utility-bar {
  background: var(--navy-dark);
  color: #94a3b8;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-utility-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-live-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #cbd5e1;
}
.live-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: livePulseDot 1.5s infinite ease-in-out;
  box-shadow: 0 0 8px #10b981;
}
.top-social-quick {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-social-quick a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}
.top-social-quick a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.top-join-tg:hover { background: #0088cc !important; color: #fff !important; }
.top-join-wa:hover { background: #25d366 !important; color: #fff !important; }

/* Site Header */
.site-header {
  background: var(--navy-primary);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-main-row {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Site Brand Logo */
.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-badge {
  background: linear-gradient(135deg, var(--accent-primary), #ff8a00);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.35);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-title,
h1.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin: 0;
  padding: 0;
}
.brand-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pill-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.pill-jobs { background: rgba(255, 183, 77, 0.18); color: #ffb74d; }
.pill-results { background: rgba(127, 217, 166, 0.18); color: #7fd9a6; }
.pill-admit { background: rgba(143, 198, 255, 0.18); color: #8fc6ff; }
.pill-yojana { background: rgba(216, 180, 254, 0.18); color: #d8b4fe; }
.pill-keys { background: rgba(255, 209, 102, 0.18); color: #ffd166; }

/* Header Actions: Search & Hamburger */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 2px 6px 2px 14px;
  width: 320px;
  transition: all var(--transition-fast);
}
.header-search-bar:focus-within {
  background: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.25);
}
.header-search-bar input {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.88rem;
  width: 100%;
  outline: none;
  padding: 7px 0;
}
.header-search-bar:focus-within input {
  color: var(--text-primary);
}
.header-search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.header-search-bar:focus-within input::placeholder {
  color: var(--text-muted);
}
.header-search-bar button {
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}
.header-search-bar button:hover {
  background: var(--accent-hover);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Primary Navigation Bar */
.main-navigation {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.nav-menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.nav-menu-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-menu-list li a:hover,
.nav-menu-list li.current-menu-item a {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-bottom-color: var(--accent-primary);
}

/* ==========================================================================
   5. Flash News Marquee Ticker
   ========================================================================== */
.marquee-wrapper {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.2);
}
.marquee-label {
  background: #991b1b;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.25);
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  flex-grow: 1;
  padding: 8px 0;
}
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: tickerMarquee 26s linear infinite;
  font-weight: 600;
  font-size: 0.88rem;
}
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* ==========================================================================
   6. Layout Structure: Site Container & Grids
   ========================================================================== */
.site-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.main-content-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
}
.site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 130px;
  min-width: 0;
}

/* Standard Reusable Card */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.card:hover {
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   7. Homepage: Hero Banner & Top Highlights Grid
   ========================================================================== */
.hp-hero-card {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-surface) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hp-hero-badge {
  display: inline-block;
  background: rgba(255, 101, 0, 0.2);
  border: 1px solid rgba(255, 101, 0, 0.4);
  color: #ffaa66;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.hp-hero-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.hp-hero-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 780px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.hp-quick-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.tags-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}
.tag-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}
.tag-chip:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-1px);
}

/* Top 8 Highlights Grid Section */
.hp-highlights-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-subtle);
}
.section-heading {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-update-badge {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border: 1px solid rgba(5, 150, 105, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.highlight-card {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  transition: all var(--transition-normal);
  text-decoration: none;
  min-height: 115px;
}
.highlight-card:hover {
  background: #ffffff;
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.highlight-cat {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-primary);
  letter-spacing: 0.4px;
}
.highlight-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.highlight-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   8. Homepage Category Box Grid (2-Columns)
   ========================================================================== */
.hp-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.category-box {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
}
.category-box .card-header {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
.cat-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.cat-card-title a {
  color: #ffffff;
}
.cat-count-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Category Color Header Themes */
.cat-navy .card-header { background: linear-gradient(135deg, #0b192c, #1e3e62); }
.cat-orange .card-header { background: linear-gradient(135deg, #c2410c, #ea580c); }
.cat-green .card-header { background: linear-gradient(135deg, #065f46, #059669); }
.cat-purple .card-header { background: linear-gradient(135deg, #5b21b6, #7c3aed); }
.cat-blue .card-header { background: linear-gradient(135deg, #1e40af, #2563eb); }
.cat-teal .card-header { background: linear-gradient(135deg, #115e59, #0d9488); }

.category-box .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cat-post-list {
  display: flex;
  flex-direction: column;
}
.cat-post-item {
  border-bottom: 1px dashed var(--border-color);
}
.cat-post-item:last-child {
  border-bottom: none;
}
.cat-post-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 18px;
  font-size: 0.91rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.45;
  transition: all var(--transition-fast);
}
.cat-post-link:hover {
  background: #fff8f3;
  color: var(--accent-primary);
  padding-left: 22px;
}
.post-bullet {
  color: var(--accent-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.post-link-title {
  flex-grow: 1;
}
.post-item-date {
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.cat-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
}
.btn-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface-alt);
  color: var(--navy-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-fast);
}
.btn-view-all:hover {
  background: var(--accent-primary);
  color: #ffffff;
}
.btn-view-all .arrow {
  transition: transform var(--transition-fast);
}
.btn-view-all:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   9. Single Post Article Design (Pro E-E-A-T & Google Discover Ready)
   ========================================================================== */
.sp-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 48px;
}

/* Breadcrumbs */
.sp-breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.sp-wrap .sp-breadcrumb {
  padding: 16px 0 10px;
}
.sp-breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.sp-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  font-weight: 500;
}
.sp-breadcrumb a:hover {
  color: var(--accent-primary);
}
.sp-breadcrumb .sep {
  color: var(--text-light);
}
.sp-breadcrumb .current-crumb {
  color: var(--navy-primary);
  font-weight: 600;
  max-width: 450px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Layout */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
  margin-top: 12px;
}

/* Article Card */
.sp-article-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 36px 48px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.sp-top-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.sp-category-pill {
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.sp-category-pill:hover {
  background: var(--accent-hover);
}
.sp-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border: 1px solid rgba(5, 150, 105, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.sp-post-title {
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}

/* Post Meta (Author, Publish, Modified, Reading Time) */
.sp-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 22px;
}
.sp-author-chip {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-surface));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.sp-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-primary);
}
.sp-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.sp-meta-facts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.meta-label {
  color: var(--text-muted);
}
.meta-val {
  font-weight: 700;
  color: var(--navy-primary);
}
.meta-updated .meta-val {
  color: var(--accent-primary);
}
.reading-time {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* Social Share Bar */
.sp-share-box {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.share-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-primary);
}
.sp-share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.sp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.share-wa { background: #25d366; }
.share-wa:hover { background: #1ebc59; }
.share-tg { background: #0088cc; }
.share-tg:hover { background: #0077b5; }
.share-tw { background: #0f1419; }
.share-tw:hover { background: #272c30; }
.share-fb { background: #1877f2; }
.share-fb:hover { background: #166fe5; }
.sp-copy-link {
  background: var(--card-bg);
  color: var(--navy-primary);
  border: 1px solid var(--border-color);
}
.sp-copy-link:hover, .sp-copy-link.copied {
  background: var(--navy-primary);
  color: #ffffff;
  border-color: var(--navy-primary);
}

/* Featured Hero Image */
.sp-featured-img-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 9;
  background: #eaeef3;
}
.sp-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-img-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 12px;
  background: var(--surface-alt);
  border-top: 1px solid var(--border-color);
}

/* Table of Contents (TOC) Box */
.sp-toc-box {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-md);
  margin: 26px 0 32px;
  overflow: hidden;
}
.sp-toc-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
}
.toc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-primary);
}
.sp-toc-toggle-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}
.sp-toc-box.is-collapsed .sp-toc-toggle-icon {
  transform: rotate(-90deg);
}
.sp-toc-list {
  padding: 0 20px 18px 36px;
  margin: 0;
  max-height: 800px;
  overflow: hidden;
  transition: max-height var(--transition-normal), opacity var(--transition-normal);
  list-style: decimal;
}
.sp-toc-box.is-collapsed .sp-toc-list {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}
.sp-toc-list li {
  padding: 4px 0;
  font-size: 0.92rem;
}
.sp-toc-list a {
  color: var(--royal-dark);
  font-weight: 500;
}
.sp-toc-list a:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

/* ==========================================================================
   10. Article Content Body Typography & Elements
   ========================================================================== */
.sp-content-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #1e293b;
}
.sp-content-body p {
  margin-bottom: 18px;
}
.sp-content-body strong {
  font-weight: 700;
  color: var(--navy-primary);
}
.sp-content-body a {
  color: var(--royal);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.sp-content-body a:hover {
  color: var(--accent-primary);
}

/* Content Headings - Simple Clean News Typography (No colored backgrounds or left stripes) */
.sp-content-body h1,
.sp-content-body h2,
.sp-content-body h3,
.sp-content-body h4,
.sp-content-body h5,
.sp-content-body h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: #0f172a;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1.35;
}

.sp-content-body h2,
.entry-content h2 {
  font-size: 1.42rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 34px;
  margin-bottom: 14px;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.sp-content-body h3,
.entry-content h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 26px;
  margin-bottom: 12px;
}

.sp-content-body h4,
.entry-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #334155;
  margin-top: 22px;
  margin-bottom: 10px;
}

.sp-content-body h5,
.entry-content h5 {
  font-size: 1.0rem;
  font-weight: 600;
  color: #475569;
  margin-top: 18px;
  margin-bottom: 8px;
}

.sp-content-body h6,
.entry-content h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 16px;
  margin-bottom: 6px;
}

/* Lists */
.sp-content-body ul,
.sp-content-body ol {
  margin: 0 0 20px 24px;
}
.sp-content-body ul {
  list-style: disc;
}
.sp-content-body ol {
  list-style: decimal;
}
.sp-content-body li {
  margin-bottom: 8px;
}

/* Responsive Table Container */
.sp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}
.sp-content-body table,
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 500px;
}
.sp-content-body th,
.info-table th {
  background: var(--navy-primary);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}
.sp-content-body td,
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}
.sp-content-body tr:nth-child(even) td,
.info-table tr:nth-child(even) td {
  background: #f8fafc;
}
.sp-content-body tr:hover td,
.info-table tr:hover td {
  background: #fff8f3;
}

/* Sarkari Quick Link / CTA Buttons */
.links-box {
  background: #fffbf7;
  border: 2px dashed var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 28px 0;
}
.links-box h3 {
  color: var(--accent-hover);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 10px;
  font-size: 0.94rem;
  font-weight: 600;
}
.link-row:last-child {
  margin-bottom: 0;
}
.link-row a.btn,
.btn-apply-online {
  background: linear-gradient(135deg, var(--accent-primary), #ff8a00);
  color: #ffffff !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(255, 101, 0, 0.3);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.link-row a.btn:hover,
.btn-apply-online:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 101, 0, 0.4);
}

/* Callout & Alert Boxes */
.sp-alert-box {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 0.94rem;
}
.alert-info {
  background: var(--royal-light);
  border-left: 4px solid var(--royal);
  color: #1e3a8a;
}
.alert-warning {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  color: #92400e;
}
.alert-success {
  background: var(--emerald-light);
  border-left: 4px solid var(--emerald);
  color: #065f46;
}

/* Disclaimer Card */
.sp-disclaimer-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dc2626;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

/* Tags List */
.sp-tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}
.tags-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sp-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sp-tag-pill {
  background: var(--surface-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}
.sp-tag-pill:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
}

/* Author Box (Google E-E-A-T Component) */
.sp-author-box {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.author-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-primary), var(--royal));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.author-verify-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #10b981;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  border: 2px solid #ffffff;
}
.author-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 2px;
}
.author-role-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Comments Section */
.sp-comments-section {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.comments-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 16px;
}
.comment-item {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 14px;
}
.comment-author-name {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--navy-primary);
}
.comment-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}
.comment-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.no-comments-box {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Related Posts Section */
.sp-related-section {
  margin-top: 36px;
}
.related-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}
.sp-related-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-more-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
}
.related-more-link:hover {
  text-decoration: underline;
}
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-related-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}
.sp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}
.sp-related-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #eaeef3;
  overflow: hidden;
}
.sp-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.sp-related-card:hover .sp-related-thumb img {
  transform: scale(1.05);
}
.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-surface));
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
}
.sp-related-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}
.related-cat-pill {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
}
.related-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: auto;
}
.related-meta-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   11. Sidebar Components & High CTR Widgets
   ========================================================================== */
.sidebar-widget {
  border-radius: var(--radius-md);
}
.sidebar-widget .card-header {
  background: var(--navy-primary);
  padding: 12px 18px;
  border-bottom: 2px solid var(--accent-primary);
}
.widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Search Widget */
.search-widget .card-body {
  padding: 16px 18px;
}
.search-input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}
.search-input-group:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.2);
}
.search-input-group input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
}
.search-input-group button {
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.search-input-group button:hover {
  background: var(--accent-hover);
}

/* High CTR Social Join Community Banner */
.social-join-widget {
  background: linear-gradient(135deg, var(--navy-primary) 0%, #172554 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-join-inner {
  padding: 22px 20px;
  text-align: center;
}
.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}
.social-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.social-sub {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.social-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-join-tg, .btn-join-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.btn-join-tg {
  background: linear-gradient(135deg, #0088cc, #0077b5);
  box-shadow: 0 2px 8px rgba(0, 136, 204, 0.35);
}
.btn-join-tg:hover {
  background: #0077b5;
  transform: translateY(-2px);
}
.btn-join-wa {
  background: linear-gradient(135deg, #25d366, #1ebc59);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.btn-join-wa:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

/* Trending Posts Widget */
.trending-widget .card-body {
  padding: 6px 0;
}
.trending-list {
  display: flex;
  flex-direction: column;
}
.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-fast);
}
.trending-item:last-child {
  border-bottom: none;
}
.trending-item:hover {
  background: #fff8f3;
}
.trending-rank {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--accent-primary);
  min-width: 26px;
  line-height: 1;
  margin-top: 2px;
}
.rank-1 { color: #ef4444; }
.rank-2 { color: #f97316; }
.rank-3 { color: #eab308; }
.trending-info {
  flex-grow: 1;
}
.trending-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 4px;
}
.trending-item:hover .trending-title {
  color: var(--accent-primary);
}
.trending-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trend-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Categories Widget */
.categories-widget .card-body {
  padding: 6px 0;
}
.sidebar-cat-list {
  display: flex;
  flex-direction: column;
}
.sidebar-cat-item {
  border-bottom: 1px solid var(--border-color);
}
.sidebar-cat-item:last-child {
  border-bottom: none;
}
.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}
.sidebar-cat-link:hover {
  background: #fff8f3;
  color: var(--accent-primary);
  padding-left: 22px;
}
.cat-count {
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

/* Notice Widget */
.notice-widget .notice-body {
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  background: #f8fafc;
}

/* ==========================================================================
   12. Static Pages, Archive, Search & 404
   ========================================================================== */
.static-page-card {
  padding: 36px 36px 48px;
  border-radius: var(--radius-lg);
}
.static-page-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}
.static-page-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 8px;
}
.static-page-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.static-page-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}
.static-page-body h2 {
  font-size: 1.28rem;
  color: var(--navy-primary);
  margin: 26px 0 10px;
}
.static-page-body p {
  margin-bottom: 16px;
}

/* Archive & Search Cards */
.archive-header-card {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-surface));
  color: #ffffff;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
}
.archive-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.archive-main-title {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}
.archive-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
}
.search-highlight {
  color: #ffaa66;
}

.archive-list-card .card-header {
  background: var(--navy-primary);
  color: #ffffff;
  padding: 12px 18px;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 24px;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-primary);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}
.nav-links .page-numbers:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
}
.nav-links .page-numbers.current {
  background: var(--navy-primary);
  color: #ffffff;
  border-color: var(--navy-primary);
}

/* 404 Error Page */
.page-404-container {
  grid-template-columns: 1fr;
}
.single-center-col {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.error-404-card {
  padding: 50px 30px;
  text-align: center;
  border-radius: var(--radius-lg);
}
.error-404-code {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 12px rgba(255, 101, 0, 0.2);
}
.error-404-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 10px;
}
.error-404-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}
.error-search-box {
  max-width: 440px;
  margin: 0 auto 26px;
}
.error-quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-primary-glow {
  background: linear-gradient(135deg, var(--accent-primary), #ff8a00);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.35);
  transition: all var(--transition-fast);
}
.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 101, 0, 0.45);
}
.btn-secondary-link {
  background: var(--surface-alt);
  color: var(--navy-primary);
  border: 1px solid var(--border-color);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.btn-secondary-link:hover {
  background: var(--navy-primary);
  color: #ffffff;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  margin-top: 40px;
  border-top: 3px solid var(--accent-primary);
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  padding: 48px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-badge {
  background: linear-gradient(135deg, var(--accent-primary), #ff8a00);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}
.footer-brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 18px;
}
.footer-social-links {
  display: flex;
  gap: 10px;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform var(--transition-fast);
}
.social-icon-btn.tg { background: #0088cc; }
.social-icon-btn.wa { background: #25d366; }
.social-icon-btn.rss { background: #f97316; }
.social-icon-btn:hover { transform: translateY(-3px); }

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--accent-primary);
  display: inline-block;
  padding-bottom: 4px;
}
.footer-links-list li {
  margin-bottom: 9px;
  font-size: 0.88rem;
}
.footer-links-list a {
  color: #94a3b8;
}
.footer-links-list a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}
.footer-disclaimer-text {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: var(--radius-sm);
}

/* Footer Bottom */
.footer-bottom {
  background: #030811;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.85rem;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.footer-legal-nav a {
  color: #cbd5e1;
  font-weight: 500;
}
.footer-legal-nav a:hover {
  color: var(--accent-primary);
}
.footer-legal-nav .sep {
  color: #475569;
}
.copyright-text p {
  color: #64748b;
  font-size: 0.82rem;
}
.copyright-text strong {
  color: #94a3b8;
}
.powered-by {
  font-size: 0.75rem;
  margin-top: 2px;
  color: #475569;
}

/* Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 999;
}
.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* Floating Toast Notification */
.fru-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--navy-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 99999;
  border: 1px solid var(--accent-primary);
}
.fru-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   14. Mobile Drawer Navigation & Responsive Breakpoints
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 25, 44, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 9998;
}
.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-container,
  .sp-layout {
    grid-template-columns: 1fr;
  }
  .site-sidebar {
    position: static;
  }
  .hp-category-grid {
    grid-template-columns: 1fr;
  }
  .hamburger-btn {
    display: flex;
  }
  .header-search-bar {
    display: none;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 9999;
    padding: 60px 0 20px;
    overflow-y: auto;
    transition: transform var(--transition-normal);
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.3);
  }
  .main-navigation.is-open {
    transform: translateX(300px);
  }
  .nav-menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-menu-list li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 20px;
  }
}

@media (max-width: 680px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .sp-related-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sp-article-card,
  .static-page-card {
    padding: 22px 18px 30px;
  }
  .sp-share-box {
    flex-direction: column;
    align-items: stretch;
  }
  .sp-share-row {
    justify-content: stretch;
  }
  .sp-share-btn {
    flex: 1;
    justify-content: center;
  }
  .top-utility-bar {
    display: none;
  }
  .brand-tagline {
    display: none;
  }
  .link-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .link-row a.btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   15. Google AdSense Compliant Ad Slots
   ========================================================================== */
.ad-slot-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 24px auto;
  max-width: 100%;
  overflow: hidden;
  clear: both;
}
.ad-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ad-slot-container.ad-top {
  margin: 18px 0 26px;
}
.ad-slot-container.ad-bottom {
  margin: 30px 0 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}
.ad-slot-container.ad-header {
  max-width: var(--max-width);
  margin: 12px auto;
  padding: 0 20px;
}

