/* ═══════════════════════════════════════════════════════
   Latest Sarkari Job Alert - lsja26.com
   ═══════════════════════════════════════════════════════ */

:root {
  --saffron:        #E05C0A;
  --saffron-dk:     #B84A07;
  --saffron-bg:     #FEF2EA;
  --saffron-border: #F4C4A0;

  --green:          #1B7A38;
  --green-dk:       #145E2B;
  --green-bg:       #EAF5EE;
  --green-border:   #A8D8B8;

  --navy:           #162366;
  --navy-dk:        #0F1844;
  --navy-md:        #1C2E80;
  --navy-bg:        #EEF1FA;
  --navy-border:    #C3CAE8;

  --red:            #B91C1C;
  --red-bg:         #FEF2F2;
  --red-border:     #FECACA;

  --amber:          #B45309;
  --amber-bg:       #FFFBEB;
  --amber-border:   #FDE68A;

  --text:           #0F172A;
  --text-2:         #374151;
  --text-3:         #6B7280;
  --text-4:         #9CA3AF;

  --line:           #E5E7EB;
  --line-dk:        #D1D5DB;
  --bg:             #F1F3F8;
  --bg-card:        #FAFBFF;
  --white:          #FFFFFF;

  --sh-xs: 0 1px 2px rgba(0,0,0,.05);
  --sh-sm: 0 1px 6px rgba(0,0,0,.07), 0 0 1px rgba(0,0,0,.04);
  --sh-md: 0 4px 16px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.05);

  --r2: 2px; --r4: 4px; --r6: 6px; --r8: 8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Mukta', 'Noto Sans', sans-serif;
  font-size: 16px;          /* ↑ was 15px */
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;         /* ↑ was 1.55 */
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--saffron); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#site-header { background: var(--navy); }

.header-topbar {
  background: rgba(0,0,0,.18);
  padding: 5px 0;
  font-size: 13px;          /* ↑ was 11.5px */
  color: #7A95C5;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
  letter-spacing: .2px;
}
.header-topbar span { margin: 0 8px; }

.header-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 20px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-brand { display: flex; align-items: center; gap: 12px; }

.brand-badge {
  background: var(--saffron);
  color: #fff;
  font-family: 'Mukta', sans-serif;
  font-weight: 800;
  font-size: 17px;          /* ↑ was 16px */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r6);
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(224,92,10,.45);
  flex-shrink: 0;
}

.brand-text-wrap { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Mukta', sans-serif;
  font-size: 21px;          /* ↑ was 20px */
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.brand-name a { color: inherit; }
.brand-sub {
  font-size: 13px;          /* ↑ was 11.5px */
  color: #6A88BC;
  margin-top: 1px;
  font-weight: 400;
}

/* ── NAV ── */
nav.site-nav { background: #2A3FA0; border-top: 1px solid rgba(255,255,255,.12); }
nav.site-nav ul {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
}
nav.site-nav ul li a {
  display: block;
  color: #FFFFFF;
  font-size: 14px;          /* ↑ was 13px */
  font-weight: 700;
  padding: 10px 16px;       /* ↑ taller tap target */
  border-bottom: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
nav.site-nav ul li a:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
nav.site-nav ul li a.active { color: #fff; border-bottom-color: var(--saffron); background: rgba(255,255,255,.07); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--saffron);
  color: #fff;
  font-size: 13px;          /* ↑ was 12px */
  font-weight: 600;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 30px;
}
.ticker-label {
  background: var(--red);
  padding: 0 12px;
  font-size: 11px;          /* ↑ was 10px */
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-track { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 20px;
  animation: ticker 50s linear infinite;
}
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.page-body {
  display: grid;
  grid-template-columns: 1fr 308px;  /* ↑ sidebar wider */
  gap: 22px;
  padding: 18px 20px 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.main-col { min-width: 0; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 20px;
  border: 1px solid var(--line-dk);
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.stat-card {
  background: var(--white);
  padding: 16px 12px;       /* ↑ more breathing room */
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.stat-card:nth-child(1)::before { background: var(--saffron); }
.stat-card:nth-child(2)::before { background: var(--green); }
.stat-card:nth-child(3)::before { background: var(--navy); }
.stat-card:nth-child(4)::before { background: var(--amber); }
.stat-num {
  font-family: 'Mukta', sans-serif;
  font-size: 30px;          /* ↑ was 28px */
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 12px;          /* ↑ was 10.5px */
  color: var(--text-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ══════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════ */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--line);
}
.sec-head-title {
  font-family: 'Mukta', sans-serif;
  font-size: 17px;          /* ↑ was 16px */
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sec-head-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 17px;
  background: var(--saffron);
  border-radius: 2px;
  margin-right: 2px;
}
.sec-head-link {
  font-size: 13px;          /* ↑ was 12px */
  font-weight: 700;
  color: var(--saffron);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--saffron-border);
  background: var(--saffron-bg);
  transition: all .15s;
  white-space: nowrap;
}
.sec-head-link:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); text-decoration: none; }

/* ══════════════════════════════════════
   JOB CARDS
══════════════════════════════════════ */
.job-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }

.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r6);
  padding: 14px 16px 12px 18px;  /* ↑ more padding */
  position: relative;
  box-shadow: var(--sh-xs);
  transition: box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;               /* ↑ was 3px */
  background: var(--saffron);
  transition: background .2s;
}
.job-card:hover { box-shadow: var(--sh-md); border-color: var(--line-dk); }
.job-card:hover::before { background: var(--green); }

.job-card-title {
  font-family: 'Mukta', sans-serif;
  font-size: 15.5px;        /* ↑ was 14.5px */
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
  line-height: 1.35;
}
.job-card-title:hover { color: var(--saffron); text-decoration: none; }

.job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 7px;
  font-size: 13px;          /* ↑ was 12px */
  color: var(--text-3);
}
.job-qual {
  font-size: 13px;          /* ↑ was 12px */
  color: var(--text-3);
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.45;
}

/* ══════════════════════════════════════
   BADGES
══════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;          /* ↑ was 11px */
  font-weight: 700;
  padding: 3px 9px;         /* ↑ larger tap area */
  border-radius: var(--r4);
  white-space: nowrap;
  line-height: 1.5;
}
.badge-vacancy  { background: var(--green-bg);  color: var(--green);   border: 1px solid var(--green-border); }
.badge-type     { background: var(--navy-bg);   color: var(--navy-md); border: 1px solid var(--navy-border); }
.badge-last     { background: var(--red-bg);    color: var(--red);     border: 1px solid var(--red-border); }
.badge-new      { background: var(--red); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: var(--r2); animation: blink 1.4s step-end infinite; }
@keyframes blink { 50% { opacity: .15; } }

/* ══════════════════════════════════════
   JOB DETAIL PAGE
══════════════════════════════════════ */
.job-detail-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-bottom: 22px;
}

.job-detail-head {
  background: linear-gradient(160deg, var(--navy-dk) 0%, #1C3A8A 100%);
  color: #fff;
  padding: 22px 24px 20px;
  border-bottom: 3px solid var(--saffron);
}
.job-detail-title {
  font-family: 'Mukta', sans-serif;
  font-size: 21px;          /* ↑ was 19px */
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.job-detail-head .badges { display: flex; flex-wrap: wrap; gap: 7px; }

.job-detail-body { padding: 20px 24px 24px; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }  /* ↑ was 13.5px */
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table tr:last-child { border-bottom: none; }
.info-table tr:nth-child(odd) td:first-child { background: #FAFBFF; }
.info-table td { padding: 11px 13px; vertical-align: top; line-height: 1.5; }
.info-table td:first-child {
  font-size: 12.5px;        /* ↑ was 11.5px */
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .4px;
  width: 30%;
  white-space: nowrap;
}

/* Apply box */
.apply-box {
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1px solid var(--green-border);
  border-radius: var(--r8);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}
.apply-box p { font-size: 13px; color: var(--text-3); margin-top: 9px; line-height: 1.55; }  /* ↑ was 12px */
.btn-apply {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'Mukta', sans-serif;
  font-weight: 800;
  font-size: 16px;          /* ↑ was 15px */
  padding: 13px 36px;       /* ↑ bigger button */
  border-radius: var(--r6);
  box-shadow: 0 3px 10px rgba(27,122,56,.3);
  transition: all .15s;
}
.btn-apply:hover {
  background: var(--green-dk);
  box-shadow: 0 5px 16px rgba(27,122,56,.4);
  transform: translateY(-1px);
  color: #fff; text-decoration: none;
}

/* Notice boxes */
.notice-box {
  border-radius: 0 var(--r6) var(--r6) 0;
  padding: 11px 15px;       /* ↑ was 9px 14px */
  font-size: 13.5px;        /* ↑ was 12.5px */
  line-height: 1.6;
  border-left: 3px solid;
  margin-bottom: 16px;
}
.notice-amber { background: var(--amber-bg); border-color: var(--amber); color: #78350F; }
.notice-blue  { background: #EFF6FF; border-color: #2563EB; color: #1E3A5F; }

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.breadcrumb {
  font-size: 13px;          /* ↑ was 12px */
  color: var(--text-3);
  padding: 4px 0 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 6px;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb-sep { color: var(--line-dk); }

/* ══════════════════════════════════════
   STATS & WELCOME
══════════════════════════════════════ */
.alert-welcome {
  background: var(--navy-bg);
  border: 1px solid var(--navy-border);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--r6) var(--r6) 0;
  padding: 12px 16px;       /* ↑ was 10px 14px */
  font-size: 14px;          /* ↑ was 13px */
  color: var(--text-2);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r8);
  margin-bottom: 16px;
  box-shadow: var(--sh-xs);
  overflow: hidden;
}
.widget-head {
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;        /* ↑ was 11px */
  font-weight: 800;
  padding: 9px 13px;        /* ↑ was 7px 12px */
  text-transform: uppercase;
  letter-spacing: .7px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--saffron);
}
.widget-list { list-style: none; }
.widget-list li { border-bottom: 1px solid var(--line); transition: background .1s; }
.widget-list li:last-child { border-bottom: none; }
.widget-list li a {
  display: block;
  padding: 9px 13px;        /* ↑ was 8px 12px */
  color: var(--text-2);
  font-weight: 600;
  font-size: 13.5px;        /* ↑ was 12.5px */
  line-height: 1.4;
}
.widget-list li a:hover { color: var(--saffron); background: var(--bg); text-decoration: none; }
.widget-list li .w-date {
  display: block;
  font-size: 12px;          /* ↑ was 11px */
  color: var(--text-4);
  font-weight: 400;
  margin-top: 3px;
}
.widget-list li .w-vac {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 12.5px;        /* ↑ was 11.5px */
  margin-top: 2px;
}

/* ══════════════════════════════════════
   CHANNEL WIDGETS
══════════════════════════════════════ */
.channel-bar {
  background: linear-gradient(135deg, #0A1628 0%, #0D2137 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 7px 0;
}
.channel-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.channel-bar-label { font-size: 13px; font-weight: 700; color: #7A95C0; letter-spacing: .3px; white-space: nowrap; }

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;          /* ↑ was 12px */
  font-weight: 800;
  padding: 5px 14px;        /* ↑ bigger */
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity .15s, transform .1s;
  text-decoration: none !important;
  line-height: 1.4;
}
.channel-btn:hover { opacity: .88; transform: translateY(-1px); }
.channel-btn-tg  { background: #229ED9; color: #fff; }
.channel-btn-wa  { background: #25D366; color: #fff; }
.channel-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Join banner */
.join-banner {
  background: linear-gradient(135deg, #0F1F3D 0%, #0A2744 55%, #0D2137 100%);
  border: 1px solid #1E3A5F;
  border-radius: var(--r8);
  padding: 16px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.join-banner-text { flex: 1; min-width: 180px; }
.join-banner-text strong {
  display: block;
  font-size: 15px;          /* ↑ was 14px */
  font-weight: 800;
  color: #E8F0FF;
  margin-bottom: 3px;
}
.join-banner-text span { font-size: 13px; color: #6A90C0; }
.join-banner-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* Sidebar channel widget */
.widget-channel-list { list-style: none; }
.widget-channel-list li { border-bottom: 1px solid var(--line); }
.widget-channel-list li:last-child { border-bottom: none; }
.widget-channel-list li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;       /* ↑ was 10px 12px */
  font-weight: 700;
  font-size: 14px;          /* ↑ was 13px */
  transition: background .15s;
}
.widget-channel-list li a:hover { text-decoration: none; }
.widget-channel-list li.tg a { color: #0A85C1; }
.widget-channel-list li.tg a:hover { background: #EBF6FD; }
.widget-channel-list li.wa a { color: #128C47; }
.widget-channel-list li.wa a:hover { background: #EDFBF2; }
.widget-channel-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.widget-channel-icon.tg { background: #E3F4FC; }
.widget-channel-icon.wa { background: #E3F9EE; }
.widget-channel-meta { display: flex; flex-direction: column; }
.widget-channel-meta span {
  font-size: 12px;          /* ↑ was 11px */
  color: var(--text-4);
  font-weight: 400;
  margin-top: 1px;
}

/* ══════════════════════════════════════
   PAGINATION
══════════════════════════════════════ */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  padding: 18px 0 8px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;          /* ↑ was 34px */
  height: 38px;             /* ↑ was 34px */
  padding: 0 12px;
  font-size: 14px;          /* ↑ was 13px */
  font-weight: 700;
  border: 1.5px solid var(--line-dk);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--r4);
  transition: all .15s;
}
.pagination a:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); text-decoration: none; }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: 'Mukta', sans-serif;
  font-weight: 700;
  font-size: 15px;          /* ↑ was 14px */
  padding: 11px 30px;       /* ↑ was 10px 28px */
  border-radius: var(--r6);
  box-shadow: 0 2px 8px rgba(22,35,102,.2);
  transition: all .15s;
}
.btn-primary:hover {
  background: var(--navy-md);
  box-shadow: 0 4px 14px rgba(22,35,102,.3);
  transform: translateY(-1px);
  color: #fff; text-decoration: none;
}

/* ══════════════════════════════════════
   ARTICLE CARDS
══════════════════════════════════════ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r6);
  padding: 15px 17px;       /* ↑ was 14px 16px */
  box-shadow: var(--sh-xs);
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transition: background .2s;
}
.article-card:hover { box-shadow: var(--sh-md); border-color: var(--line-dk); }
.article-card:hover::before { background: var(--saffron); }
.article-card-title {
  font-family: 'Mukta', sans-serif;
  font-size: 14.5px;        /* ↑ was 13.5px */
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  display: block;
}
.article-card-title:hover { color: var(--saffron); text-decoration: none; }
.article-card-desc {
  font-size: 13px;          /* ↑ was 12px */
  color: var(--text-3);
  line-height: 1.5;
  flex: 1;
}
.article-card-meta {
  font-size: 12px;          /* ↑ was 11px */
  color: var(--text-4);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   ARTICLE SINGLE PAGE
══════════════════════════════════════ */
.article-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.article-head {
  background: linear-gradient(160deg, var(--navy-dk) 0%, #1C3A8A 100%);
  padding: 24px 26px 22px;  /* ↑ was 22px 24px 20px */
  border-bottom: 3px solid var(--saffron);
}
.article-head h1 {
  font-family: 'Mukta', sans-serif;
  font-size: 24px;          /* ↑ was 22px */
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.article-head-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;        /* ↑ was 12px */
  color: #7A9AC5;
  flex-wrap: wrap;
}
.article-body {
  padding: 26px 30px;       /* ↑ was 24px 28px */
}
.article-toc {
  background: var(--bg);
  border: 1px solid var(--line-dk);
  border-left: 3px solid var(--saffron);
  border-radius: 0 var(--r6) var(--r6) 0;
  padding: 15px 20px;
  margin-bottom: 26px;
  font-size: 14px;          /* ↑ was 13px */
}
.article-toc-title {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-toc ol { padding-left: 18px; margin: 0; color: var(--text-2); line-height: 2; }
.article-toc ol li a { color: var(--navy); font-weight: 500; }
.article-toc ol li a:hover { color: var(--saffron); }

/* Cluster nav */
.cluster-box {
  background: var(--navy-bg);
  border: 1px solid var(--navy-border);
  border-radius: var(--r6);
  padding: 15px 17px;
  margin: 20px 0;
  font-size: 14px;
}
.cluster-box-title {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 11px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cluster-links { display: flex; flex-wrap: wrap; gap: 7px; }
.cluster-link {
  display: inline-block;
  font-size: 13px;          /* ↑ was 12px */
  font-weight: 600;
  padding: 5px 12px;        /* ↑ was 4px 10px */
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--navy-border);
  color: var(--navy);
  transition: all .15s;
}
.cluster-link:hover { background: var(--navy); color: #fff; text-decoration: none; }

/* Related articles sidebar widget */
.widget-article-list { list-style: none; }
.widget-article-list li { border-bottom: 1px solid var(--line); }
.widget-article-list li:last-child { border-bottom: none; }
.widget-article-list li a {
  display: block;
  padding: 9px 13px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 13.5px;        /* ↑ was 12.5px */
  line-height: 1.4;
  transition: background .1s;
}
.widget-article-list li a:hover { color: var(--saffron); background: var(--bg); text-decoration: none; }

/* ══════════════════════════════════════
   PROSE (article body)
══════════════════════════════════════ */
.prose { font-size: 15.5px; line-height: 1.8; color: var(--text-2); }  /* ↑ was 14.5px / 1.75 */
.prose h2 {
  font-family: 'Mukta', sans-serif;
  font-size: 19px;          /* ↑ was 17px */
  font-weight: 800;
  color: var(--navy);
  margin: 24px 0 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
}
.prose h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--saffron);
  border-radius: 2px;
  flex-shrink: 0;
}
.prose h3 {
  font-size: 16.5px;        /* ↑ was 15px */
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 7px;
}
.prose p { margin-bottom: 14px; }
.prose ul { margin: 10px 0 16px 0; padding-left: 0; list-style: none; }
.prose ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 15px;          /* ↑ was 14px */
  border-bottom: 1px dashed var(--line);
}
.prose ul li:last-child { border-bottom: none; }
.prose ul li::before {
  content: '›';
  position: absolute;
  left: 5px;
  color: var(--saffron);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
}
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 14px 0; }
.prose table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 10px 13px;
  text-align: left;
  font-size: 13px;
}
.prose table td { padding: 9px 13px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose table tr:nth-child(even) td { background: var(--bg); }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--navy); text-decoration: underline; }
.prose a:hover { color: var(--saffron); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy-dk);
  color: #7A95C0;
  font-size: 14px;          /* ↑ was 13px */
  margin-top: 28px;
  border-top: 3px solid var(--saffron);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 20px 22px;
}
.footer-main h4 {
  font-family: 'Mukta', sans-serif;
  color: #C8D6EE;
  font-size: 14px;          /* ↑ was 13px */
  font-weight: 800;
  margin-bottom: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-main p { font-size: 13.5px; line-height: 1.75; }  /* ↑ was 12.5px */
.footer-main ul { list-style: none; }
.footer-main ul li { padding: 4px 0; }
.footer-main ul li a {
  color: #6080A8;
  font-size: 13.5px;        /* ↑ was 12.5px */
  transition: color .15s;
}
.footer-main ul li a:hover { color: var(--saffron); text-decoration: none; }
.footer-main ul li a::before { content: '›  '; color: #344D6C; }
.footer-disclaimer {
  background: rgba(0,0,0,.2);
  border-radius: var(--r4);
  padding: 8px 11px;
  margin-top: 11px;
  font-size: 12.5px;        /* ↑ was 11.5px */
  color: #3D5470;
  line-height: 1.6;
}
.footer-disclaimer strong { color: #EAB44A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;          /* ↑ was 11.5px */
  color: #384E68;
}
.footer-bottom strong { color: #7A9ABF; }
.tricolor { display: inline-flex; align-items: center; gap: 2px; margin-left: 4px; vertical-align: middle; }
.tricolor span { display: inline-block; width: 12px; height: 4px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .page-body { grid-template-columns: 1fr; }
  .side-col { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .info-table td:first-child { width: auto; white-space: normal; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }          /* slightly reduce on small screens */
  .header-main { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-main { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; border-radius: var(--r6); }
  .page-body { padding: 14px 14px 24px; }
  .article-grid { grid-template-columns: 1fr; }
  .job-detail-head { padding: 16px 16px 14px; }
  .job-detail-title { font-size: 18px; }
  .job-detail-body { padding: 16px; }
  .article-head { padding: 18px 16px; }
  .article-head h1 { font-size: 20px; }
  .article-body { padding: 18px 16px; }
  .brand-name { font-size: 19px; }
  .channel-btn { font-size: 12.5px; padding: 5px 11px; }
}
@media (max-width: 400px) {
  body { font-size: 14.5px; }
  .stat-num { font-size: 26px; }
  .job-card { padding: 12px 14px 10px 16px; }
}