/*
Theme Name: Majhi Naukri
Theme URI:  https://majhinaukri.com
Author:     Sky
Description: Maharashtra #1 Marathi Government Jobs Portal
Version:    2.0
Text Domain: majhinaukri
*/
/* ═══════════════════════════════════════════════
   MAJHI NAUKRI — Article Content Styles
   Paste this at the END of your style.css
═══════════════════════════════════════════════ */

/* ── Article Page Layout ── */
.article-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

/* ── Breadcrumb ── */
.breadcrumb {
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 24px 0;
    font-size: 12.5px;
    color: var(--text-muted, #8a99ad);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue, #1a56a0); text-decoration: none; }

/* ── Article Hero ── */
.article-hero {
    background: linear-gradient(135deg, #0d2d5e 0%, #1a3d7c 55%, #1e5bb5 100%);
    padding: 36px 24px 0;
    position: relative;
    overflow: hidden;
}
.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 36px;
    background: var(--surface, #f4f7fc);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.article-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 44px;
}
.article-hero h1 {
    font-family: 'Tiro Devanagari Marathi', serif;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}
.post-cats { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.post-cat {
    background: rgba(245,166,35,.2);
    color: #f5a623;
    border: 1px solid rgba(245,166,35,.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
}
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.meta-item { font-size: 12.5px; color: #a8c4e8; }
.meta-item strong { color: #fff; }

/* ── Share Buttons ── */
.share-row { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.share-btn {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.share-wp  { background: #25d366; color: #fff; }
.share-fb  { background: #1877f2; color: #fff; }
.share-tg  { background: #0088cc; color: #fff; }
.share-copy { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3) !important; }

/* ── Article Content Card ── */
.article-content {
    background: #fff;
    border: 1.5px solid #dce6f5;
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ── Article Typography ── */
.article-content h2 {
    font-family: 'Tiro Devanagari Marathi', serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d2d5e;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e6f1fb;
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0d1f38;
    margin: 22px 0 10px;
    padding-left: 12px;
    border-left: 3px solid #f5a623;
}
.article-content p {
    font-size: 15.5px;
    color: #4a5a72;
    margin-bottom: 16px;
    line-height: 1.85;
}
.article-content strong { color: #0d1f38; font-weight: 600; }
.article-content a { color: #1a56a0; }
.article-content ul,
.article-content ol {
    margin: 12px 0 18px 22px;
}
.article-content li {
    font-size: 15px;
    color: #4a5a72;
    margin-bottom: 7px;
    line-height: 1.7;
}

/* ── Info Table ── */
.article-content table,
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}
.article-content table th,
.info-table th {
    background: #0d2d5e;
    color: #fff;
    padding: 11px 16px;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
}
.article-content table td,
.info-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #dce6f5;
    color: #4a5a72;
}
.article-content table tr:nth-child(even) td,
.info-table tr:nth-child(even) td { background: #f8fafd; }
.article-content table tr:hover td,
.info-table tr:hover td { background: #e6f1fb; }
.article-content table td:first-child,
.info-table td:first-child { font-weight: 500; color: #0d1f38; }

/* ── Key Info Box ── */
.key-info-box {
    background: linear-gradient(135deg, #e8f4ff, #f0f8ff);
    border: 2px solid #1a56a0;
    border-radius: 14px;
    padding: 22px 24px;
    margin: 28px 0;
}
.key-info-box h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0d2d5e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.info-cell {
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #c8dff5;
}
.ic-label {
    font-size: 11px;
    color: #8a99ad;
    margin-bottom: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.ic-value { font-size: 14px; font-weight: 600; color: #0d1f38; }
.ic-value.green { color: #1b7a4b; }
.ic-value.red   { color: #c0392b; }
.ic-value.gold  { color: #e67e22; }

/* ── Notice Boxes ── */
.notice-box {
    border-radius: 10px;
    padding: 14px 18px;
    margin: 18px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.notice-box.important { background: #fdecea; border-left: 4px solid #c0392b; }
.notice-box.tip       { background: #e8f5ee; border-left: 4px solid #1b7a4b; }
.notice-box.info      { background: #e6f1fb; border-left: 4px solid #1a56a0; }
.notice-box.warn      { background: #fff4e0; border-left: 4px solid #f5a623; }
.notice-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.notice-text { font-size: 14px; color: #4a5a72; line-height: 1.6; }
.notice-text strong { color: #0d1f38; }

/* ── Steps ── */
.steps { margin: 18px 0; }
.step { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.step-num {
    width: 32px;
    height: 32px;
    background: #1a56a0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.step-body h4 { font-size: 15px; font-weight: 600; color: #0d1f38; margin-bottom: 3px; }
.step-body p  { font-size: 14px; color: #4a5a72; line-height: 1.6; margin: 0; }

/* ── Apply CTA ── */
.apply-cta {
    background: linear-gradient(135deg, #0d2d5e, #1a56a0);
    border-radius: 14px;
    padding: 24px 28px;
    text-align: center;
    margin: 24px 0;
}
.apply-cta h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.apply-cta p  { color: #a8c4e8; font-size: 13px; margin-bottom: 16px; }
.btn-apply-big {
    background: #f5a623;
    color: #0d2d5e;
    padding: 13px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
.deadline-warn {
    background: rgba(255,255,255,.1);
    color: #ffd27a;
    font-size: 12.5px;
    padding: 7px 16px;
    border-radius: 7px;
    display: inline-block;
    margin-top: 10px;
}

/* ── Download Table ── */
.majhi-downloads-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}
.majhi-downloads-table th { background: #0d2d5e; color: #fff; padding: 10px 16px; text-align: left; font-size: 13px; }
.majhi-downloads-table td { padding: 10px 16px; border-bottom: 1px solid #dce6f5; }

/* ── Article Tags ── */
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.a-tag {
    background: #f4f7fc;
    border: 1.5px solid #dce6f5;
    color: #4a5a72;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
}
.a-tag:hover { background: #e6f1fb; color: #1a56a0; border-color: #1a56a0; }

/* ── Related Posts ── */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.related-card {
    background: #fff;
    border: 1.5px solid #dce6f5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all .2s;
}
.related-card:hover { border-color: #1a56a0; box-shadow: 0 4px 16px rgba(13,45,94,.1); }
.related-img { height: 90px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-info { padding: 12px 14px; }
.related-info h4 { font-size: 13px; font-weight: 600; color: #0d1f38; margin-bottom: 4px; line-height: 1.4; }
.related-info span { font-size: 11.5px; color: #8a99ad; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 18px; }
.s-card { background: #fff; border: 1.5px solid #dce6f5; border-radius: 14px; padding: 18px; margin-bottom: 0; }
.s-card h3 { font-size: 14px; font-weight: 600; color: #0d1f38; margin-bottom: 14px; }

/* Quick Links */
.quick-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #dce6f5; text-decoration: none; }
.quick-link:last-child { border-bottom: none; }
.ql-icon { width: 34px; height: 34px; border-radius: 8px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ql-text { font-size: 13px; font-weight: 500; color: #0d1f38; }
.ql-sub  { font-size: 11px; color: #8a99ad; }
.quick-link:hover .ql-text { color: #1a56a0; }

/* Sidebar Posts */
.sidebar-post { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid #dce6f5; text-decoration: none; }
.sidebar-post:last-child { border-bottom: none; }
.sp-thumb { width: 56px; height: 46px; border-radius: 8px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; overflow: hidden; }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-title { font-size: 12.5px; font-weight: 500; color: #0d1f38; line-height: 1.4; margin-bottom: 3px; }
.sp-date  { font-size: 11px; color: #8a99ad; }
.sidebar-post:hover .sp-title { color: #1a56a0; }

/* Alert Box (sidebar) */
.alert-box { background: linear-gradient(135deg, #0d2d5e, #1a56a0); border-radius: 14px; padding: 18px; text-align: center; }
.alert-box h3 { color: #fff; font-size: 14px; margin-bottom: 5px; }
.alert-box p  { color: #a8c4e8; font-size: 12px; margin-bottom: 12px; }
.alert-input  { width: 100%; padding: 9px 12px; border: none; border-radius: 8px; font-size: 13px; margin-bottom: 8px; outline: none; font-family: inherit; }
.btn-alert    { width: 100%; background: #f5a623; color: #0d2d5e; border: none; padding: 9px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* Countdown Box */
.countdown-box { background: linear-gradient(135deg, #fdecea, #fff0f0); border: 2px solid #c0392b; border-radius: 12px; padding: 16px; text-align: center; }
.countdown-box h4 { font-size: 13px; color: #c0392b; font-weight: 600; margin-bottom: 8px; }
.countdown-nums { display: flex; justify-content: center; gap: 10px; }
.cd-unit { background: #fff; border: 1px solid #f5c0b8; border-radius: 8px; padding: 8px 12px; }
.cd-num  { font-size: 22px; font-weight: 700; color: #c0392b; line-height: 1; }
.cd-label{ font-size: 10px; color: #8a99ad; margin-top: 2px; }

/* Read Progress Bar */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #f5a623, #1a56a0); z-index: 999; transition: width .1s linear; width: 0; }

/* Tags (badge style) */
.tag { font-size: 11px; padding: 3px 9px; border-radius: 5px; font-weight: 500; display: inline-block; }
.tag-blue  { background: #e6f1fb; color: #1a56a0; }
.tag-green { background: #e8f5ee; color: #1b7a4b; }
.tag-gold  { background: #fff4e0; color: #a06b00; }
.tag-red   { background: #fdecea; color: #c0392b; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .article-wrap  { grid-template-columns: 1fr; }
    .info-grid     { grid-template-columns: 1fr 1fr; }
    .related-grid  { grid-template-columns: 1fr; }
    .sidebar       { position: static; }
    .article-content { padding: 20px 18px; }
}
@media (max-width: 600px) {
    .article-hero h1 { font-size: 22px; }
    .info-grid       { grid-template-columns: 1fr; }
    .article-wrap    { padding: 20px 14px; }
}
/*
Theme Name: Majhi Naukri
Theme URI: https://majhinaukri.com
Author: Sky
Description: Maharashtra Government Jobs Portal - Custom WordPress Theme
Version: 1.0
Text Domain: majhinaukri
*/

/* ── PASTE THE FULL CSS FROM majhinaukri_redesign.html HERE ── */
/* (All styles from :root { ... } down to @media queries)       */

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

:root {
  --navy: #0d2d5e;
  --blue: #1a56a0;
  --blue-mid: #2271cc;
  --blue-light: #e6f1fb;
  --gold: #f5a623;
  --gold-light: #fff4e0;
  --green: #1b7a4b;
  --green-light: #e6f5ee;
  --red: #c0392b;
  --red-light: #fdecea;
  --text: #0d1f38;
  --text-sec: #4a5a72;
  --text-muted: #8a99ad;
  --surface: #f4f7fc;
  --card: #ffffff;
  --border: #dce6f5;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(13,45,94,0.08);
  --shadow-lg: 0 8px 32px rgba(13,45,94,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--surface); color: var(--text); }

/* ── Topbar ── */
.topbar { background: var(--navy); padding: 6px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: #a3bcd8; }
.topbar a { color: #a3bcd8; text-decoration: none; margin-left: 18px; }
.topbar a:hover { color: #fff; }
.topbar-marquee { flex: 1; overflow: hidden; margin: 0 24px; }
.marquee-inner { display: inline-block; white-space: nowrap; animation: marquee 28s linear infinite; }
@keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* ── Navbar ── */
.main-nav { background: var(--card); border-bottom: 1px solid var(--border); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--blue), var(--navy)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.logo-text strong { display: block; font-size: 18px; color: var(--navy); font-weight: 700; line-height: 1.1; }
.logo-text span { font-size: 10px; color: var(--text-sec); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 13px; color: var(--text-sec); text-decoration: none; padding: 6px 13px; border-radius: 7px; transition: all 0.18s; }
.nav-links a:hover, .nav-links a.active { background: var(--blue-light); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-notify { background: var(--gold-light); color: var(--gold); border: 1.5px solid var(--gold); padding: 7px 16px; border-radius: 8px; font-size: 12.5px; font-weight: 600; cursor: pointer; }
.btn-login { background: var(--blue); color: #fff; padding: 7px 18px; border-radius: 8px; font-size: 12.5px; font-weight: 500; cursor: pointer; border: none; text-decoration: none; display: inline-block; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3d7c 60%, #1e5bb5 100%); padding: 56px 40px 40px; text-align: center; position: relative; overflow: hidden; }
.hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(245,166,35,0.2); color: var(--gold); border: 1px solid rgba(245,166,35,0.4); padding: 5px 14px; border-radius: 20px; font-size: 11.5px; font-weight: 600; margin-bottom: 18px; }
.hero h1 { font-family: 'Tiro Devanagari Marathi', serif; color: #fff; font-size: 36px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: #a8c4e8; font-size: 15px; margin-bottom: 28px; }
.search-wrap { background: #fff; border-radius: 13px; display: flex; align-items: center; padding: 6px 6px 6px 16px; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); margin-bottom: 32px; }
.search-wrap input { flex: 1; border: none; outline: none; font-size: 14px; color: var(--text); font-family: 'DM Sans', sans-serif; background: transparent; }
.search-wrap input::placeholder { color: var(--text-muted); }
.btn-search { background: var(--gold); color: var(--navy); border: none; padding: 10px 22px; border-radius: 9px; font-size: 14px; font-weight: 700; cursor: pointer; }
.hero-stats { display: flex; justify-content: center; gap: 40px; }
.hstat-num { font-size: 26px; font-weight: 700; color: #fff; }
.hstat-num span { color: var(--gold); }
.hstat-label { font-size: 11px; color: #7ba5d4; margin-top: 2px; }

/* ── Ticker ── */
.ticker { background: var(--blue-light); border-top: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); padding: 10px 40px; display: flex; align-items: center; gap: 14px; }
.ticker-label { background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 5px; white-space: nowrap; }
.ticker-text { font-size: 13px; color: var(--blue); overflow: hidden; flex: 1; }
.ticker-scroll { display: inline-block; white-space: nowrap; animation: marquee 30s linear infinite; }
.ticker-scroll a { color: var(--blue); }

/* ── Main Layout ── */
.main { max-width: 1180px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 28px; }

/* ── Section Headers ── */
.section-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-hd h2 { font-size: 17px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.section-hd h2::before { content: ''; display: block; width: 4px; height: 20px; background: var(--blue); border-radius: 3px; }
.section-hd a { font-size: 12.5px; color: var(--blue); text-decoration: none; font-weight: 500; }

/* ── Category Chips ── */
.cat-strip { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 28px; }
.chip { background: var(--card); border: 1.5px solid var(--border); border-radius: 30px; padding: 7px 16px; font-size: 12.5px; color: var(--text-sec); cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.18s; text-decoration: none; }
.chip:hover, .chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── Job Cards ── */
.job-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.2s; position: relative; overflow: hidden; }
.job-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.job-logo { width: 48px; height: 48px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; overflow: hidden; }
.job-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-body { flex: 1; }
.job-body h3 { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.job-body h3 a { color: inherit; text-decoration: none; }
.job-body h3 a:hover { color: var(--blue); }
.dept { font-size: 12.5px; color: var(--text-sec); margin-bottom: 9px; }
.job-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag { font-size: 11px; padding: 3px 9px; border-radius: 5px; font-weight: 500; }
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-gold { background: var(--gold-light); color: #a06b00; }
.tag-red { background: var(--red-light); color: var(--red); }
.job-actions { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; min-width: 96px; }
.btn-apply { background: var(--blue); color: #fff; border: none; padding: 8px 18px; border-radius: 8px; font-size: 12.5px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; white-space: nowrap; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 0; }
.s-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 18px; }
.s-card h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.tool-btn { background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 10px; text-align: center; cursor: pointer; transition: all 0.18s; text-decoration: none; display: block; }
.tool-btn:hover { background: var(--blue-light); border-color: var(--blue); }
.t-icon { font-size: 22px; margin-bottom: 5px; }
.t-name { font-size: 11.5px; color: var(--text-sec); font-weight: 500; }

/* ── Alert Box ── */
.alert-box { background: linear-gradient(135deg, var(--navy), #1a56a0); border-radius: var(--radius); padding: 20px; text-align: center; margin-bottom: 18px; }
.alert-box h3 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.alert-box p { color: #a8c4e8; font-size: 12px; margin-bottom: 14px; }
.alert-input { width: 100%; padding: 9px 12px; border: none; border-radius: 8px; font-size: 13px; margin-bottom: 9px; font-family: 'DM Sans', sans-serif; outline: none; }
.btn-alert { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* ── Pagination ── */
.page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--text-sec); text-decoration: none; margin: 0 3px; }
.page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-numbers:hover { border-color: var(--blue); color: var(--blue); }

/* ── Footer ── */
footer { background: var(--navy); padding: 40px 40px 20px; color: #7a9fd4; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand strong { color: #fff; font-size: 18px; font-family: 'Tiro Devanagari Marathi', serif; }
.footer-brand p { font-size: 12.5px; line-height: 1.7; margin-top: 8px; color: #7a9fd4; }
.footer-col h4 { color: #c0d4f0; font-size: 13px; margin-bottom: 12px; font-weight: 600; }
.footer-col a { display: block; font-size: 12.5px; color: #7a9fd4; text-decoration: none; margin-bottom: 7px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .main { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .main-nav { padding: 0 16px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 32px 16px 28px; }
  .hero h1 { font-size: 24px; }
  .hero-stats { gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar { padding: 6px 14px; }
}
/* ═══════════════════════════════════════════════
   MAJHI NAUKRI — Article Content Styles
   Paste this at the END of your style.css
═══════════════════════════════════════════════ */

/* ── Article Page Layout ── */
.article-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

/* ── Breadcrumb ── */
.breadcrumb {
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 24px 0;
    font-size: 12.5px;
    color: var(--text-muted, #8a99ad);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue, #1a56a0); text-decoration: none; }

/* ── Article Hero ── */
.article-hero {
    background: linear-gradient(135deg, #0d2d5e 0%, #1a3d7c 55%, #1e5bb5 100%);
    padding: 36px 24px 0;
    position: relative;
    overflow: hidden;
}
.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 36px;
    background: var(--surface, #f4f7fc);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.article-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 44px;
}
.article-hero h1 {
    font-family: 'Tiro Devanagari Marathi', serif;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}
.post-cats { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.post-cat {
    background: rgba(245,166,35,.2);
    color: #f5a623;
    border: 1px solid rgba(245,166,35,.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
}
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.meta-item { font-size: 12.5px; color: #a8c4e8; }
.meta-item strong { color: #fff; }

/* ── Share Buttons ── */
.share-row { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.share-btn {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.share-wp  { background: #25d366; color: #fff; }
.share-fb  { background: #1877f2; color: #fff; }
.share-tg  { background: #0088cc; color: #fff; }
.share-copy { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3) !important; }

/* ── Article Content Card ── */
.article-content {
    background: #fff;
    border: 1.5px solid #dce6f5;
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ── Article Typography ── */
.article-content h2 {
    font-family: 'Tiro Devanagari Marathi', serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d2d5e;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e6f1fb;
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0d1f38;
    margin: 22px 0 10px;
    padding-left: 12px;
    border-left: 3px solid #f5a623;
}
.article-content p {
    font-size: 15.5px;
    color: #4a5a72;
    margin-bottom: 16px;
    line-height: 1.85;
}
.article-content strong { color: #0d1f38; font-weight: 600; }
.article-content a { color: #1a56a0; }
.article-content ul,
.article-content ol {
    margin: 12px 0 18px 22px;
}
.article-content li {
    font-size: 15px;
    color: #4a5a72;
    margin-bottom: 7px;
    line-height: 1.7;
}

/* ── Info Table ── */
.article-content table,
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}
.article-content table th,
.info-table th {
    background: #0d2d5e;
    color: #fff;
    padding: 11px 16px;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
}
.article-content table td,
.info-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #dce6f5;
    color: #4a5a72;
}
.article-content table tr:nth-child(even) td,
.info-table tr:nth-child(even) td { background: #f8fafd; }
.article-content table tr:hover td,
.info-table tr:hover td { background: #e6f1fb; }
.article-content table td:first-child,
.info-table td:first-child { font-weight: 500; color: #0d1f38; }

/* ── Key Info Box ── */
.key-info-box {
    background: linear-gradient(135deg, #e8f4ff, #f0f8ff);
    border: 2px solid #1a56a0;
    border-radius: 14px;
    padding: 22px 24px;
    margin: 28px 0;
}
.key-info-box h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0d2d5e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.info-cell {
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #c8dff5;
}
.ic-label {
    font-size: 11px;
    color: #8a99ad;
    margin-bottom: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.ic-value { font-size: 14px; font-weight: 600; color: #0d1f38; }
.ic-value.green { color: #1b7a4b; }
.ic-value.red   { color: #c0392b; }
.ic-value.gold  { color: #e67e22; }

/* ── Notice Boxes ── */
.notice-box {
    border-radius: 10px;
    padding: 14px 18px;
    margin: 18px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.notice-box.important { background: #fdecea; border-left: 4px solid #c0392b; }
.notice-box.tip       { background: #e8f5ee; border-left: 4px solid #1b7a4b; }
.notice-box.info      { background: #e6f1fb; border-left: 4px solid #1a56a0; }
.notice-box.warn      { background: #fff4e0; border-left: 4px solid #f5a623; }
.notice-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.notice-text { font-size: 14px; color: #4a5a72; line-height: 1.6; }
.notice-text strong { color: #0d1f38; }

/* ── Steps ── */
.steps { margin: 18px 0; }
.step { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.step-num {
    width: 32px;
    height: 32px;
    background: #1a56a0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.step-body h4 { font-size: 15px; font-weight: 600; color: #0d1f38; margin-bottom: 3px; }
.step-body p  { font-size: 14px; color: #4a5a72; line-height: 1.6; margin: 0; }

/* ── Apply CTA ── */
.apply-cta {
    background: linear-gradient(135deg, #0d2d5e, #1a56a0);
    border-radius: 14px;
    padding: 24px 28px;
    text-align: center;
    margin: 24px 0;
}
.apply-cta h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.apply-cta p  { color: #a8c4e8; font-size: 13px; margin-bottom: 16px; }
.btn-apply-big {
    background: #f5a623;
    color: #0d2d5e;
    padding: 13px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
.deadline-warn {
    background: rgba(255,255,255,.1);
    color: #ffd27a;
    font-size: 12.5px;
    padding: 7px 16px;
    border-radius: 7px;
    display: inline-block;
    margin-top: 10px;
}

/* ── Download Table ── */
.majhi-downloads-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}
.majhi-downloads-table th { background: #0d2d5e; color: #fff; padding: 10px 16px; text-align: left; font-size: 13px; }
.majhi-downloads-table td { padding: 10px 16px; border-bottom: 1px solid #dce6f5; }

/* ── Article Tags ── */
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.a-tag {
    background: #f4f7fc;
    border: 1.5px solid #dce6f5;
    color: #4a5a72;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
}
.a-tag:hover { background: #e6f1fb; color: #1a56a0; border-color: #1a56a0; }

/* ── Related Posts ── */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.related-card {
    background: #fff;
    border: 1.5px solid #dce6f5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all .2s;
}
.related-card:hover { border-color: #1a56a0; box-shadow: 0 4px 16px rgba(13,45,94,.1); }
.related-img { height: 90px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-info { padding: 12px 14px; }
.related-info h4 { font-size: 13px; font-weight: 600; color: #0d1f38; margin-bottom: 4px; line-height: 1.4; }
.related-info span { font-size: 11.5px; color: #8a99ad; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 18px; }
.s-card { background: #fff; border: 1.5px solid #dce6f5; border-radius: 14px; padding: 18px; margin-bottom: 0; }
.s-card h3 { font-size: 14px; font-weight: 600; color: #0d1f38; margin-bottom: 14px; }

/* Quick Links */
.quick-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #dce6f5; text-decoration: none; }
.quick-link:last-child { border-bottom: none; }
.ql-icon { width: 34px; height: 34px; border-radius: 8px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ql-text { font-size: 13px; font-weight: 500; color: #0d1f38; }
.ql-sub  { font-size: 11px; color: #8a99ad; }
.quick-link:hover .ql-text { color: #1a56a0; }

/* Sidebar Posts */
.sidebar-post { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid #dce6f5; text-decoration: none; }
.sidebar-post:last-child { border-bottom: none; }
.sp-thumb { width: 56px; height: 46px; border-radius: 8px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; overflow: hidden; }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-title { font-size: 12.5px; font-weight: 500; color: #0d1f38; line-height: 1.4; margin-bottom: 3px; }
.sp-date  { font-size: 11px; color: #8a99ad; }
.sidebar-post:hover .sp-title { color: #1a56a0; }

/* Alert Box (sidebar) */
.alert-box { background: linear-gradient(135deg, #0d2d5e, #1a56a0); border-radius: 14px; padding: 18px; text-align: center; }
.alert-box h3 { color: #fff; font-size: 14px; margin-bottom: 5px; }
.alert-box p  { color: #a8c4e8; font-size: 12px; margin-bottom: 12px; }
.alert-input  { width: 100%; padding: 9px 12px; border: none; border-radius: 8px; font-size: 13px; margin-bottom: 8px; outline: none; font-family: inherit; }
.btn-alert    { width: 100%; background: #f5a623; color: #0d2d5e; border: none; padding: 9px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* Countdown Box */
.countdown-box { background: linear-gradient(135deg, #fdecea, #fff0f0); border: 2px solid #c0392b; border-radius: 12px; padding: 16px; text-align: center; }
.countdown-box h4 { font-size: 13px; color: #c0392b; font-weight: 600; margin-bottom: 8px; }
.countdown-nums { display: flex; justify-content: center; gap: 10px; }
.cd-unit { background: #fff; border: 1px solid #f5c0b8; border-radius: 8px; padding: 8px 12px; }
.cd-num  { font-size: 22px; font-weight: 700; color: #c0392b; line-height: 1; }
.cd-label{ font-size: 10px; color: #8a99ad; margin-top: 2px; }

/* Read Progress Bar */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #f5a623, #1a56a0); z-index: 999; transition: width .1s linear; width: 0; }

/* Tags (badge style) */
.tag { font-size: 11px; padding: 3px 9px; border-radius: 5px; font-weight: 500; display: inline-block; }
.tag-blue  { background: #e6f1fb; color: #1a56a0; }
.tag-green { background: #e8f5ee; color: #1b7a4b; }
.tag-gold  { background: #fff4e0; color: #a06b00; }
.tag-red   { background: #fdecea; color: #c0392b; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .article-wrap  { grid-template-columns: 1fr; }
    .info-grid     { grid-template-columns: 1fr 1fr; }
    .related-grid  { grid-template-columns: 1fr; }
    .sidebar       { position: static; }
    .article-content { padding: 20px 18px; }
}
@media (max-width: 600px) {
    .article-hero h1 { font-size: 22px; }
    .info-grid       { grid-template-columns: 1fr; }
    .article-wrap    { padding: 20px 14px; }
}

/* ═══════════════════════════════════════════
   JOB INFO TABLE (auto-posted articles)
═══════════════════════════════════════════ */
.job-info-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; font-size: 14px; box-shadow: 0 2px 16px rgba(13,45,94,.10); margin-bottom: 24px; }
.job-info-table thead tr    { background: #0d2d5e; }
.job-info-table thead th    { color: #fff; padding: 13px 18px; text-align: left; font-size: 15px; font-weight: 600; }
.job-info-table tbody tr    { border-bottom: 1px solid #e6f1fb; transition: background .15s; }
.job-info-table tbody tr:last-child { border-bottom: none; }
.job-info-table tbody tr:nth-child(even) { background: #f4f8ff; }
.job-info-table tbody tr:hover { background: #e6f1fb; }
.job-info-table tbody td    { padding: 12px 18px; color: #4a5a72; }
.job-info-table tbody td:first-child { font-weight: 600; color: #0d2d5e; width: 38%; }
.job-info-table a { color: #1a56a0; font-weight: 600; text-decoration: none; }
.job-info-table a:hover { text-decoration: underline; }
