/* ================================================================
   MIMU'S JOBS — Main Stylesheet v1.0.0
   International Career Platform | Blue/Navy/White palette
   Google AdSense friendly — IAB ad containers built in
   ================================================================ */

/* --- RESET & CUSTOM PROPERTIES -------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #185FA5;
  --blue-mid:     #2E7DD1;
  --blue-light:   #85B7EB;
  --blue-pale:    #E6F1FB;
  --blue-dark:    #0C447C;
  --navy:         #0C1B33;
  --navy-deep:    #060E1A;
  --white:        #ffffff;
  --grey-50:      #F9FAFB;
  --grey-100:     #F5F6F8;
  --grey-200:     #EAECEF;
  --grey-300:     #D0D5DD;
  --grey-400:     #98A2B3;
  --grey-500:     #7F8C9A;
  --grey-600:     #667085;
  --grey-700:     #475467;
  --grey-800:     #344054;
  --grey-900:     #1D2939;
  --text-main:    #1D2939;
  --text-muted:   #667085;
  --text-light:   #98A2B3;
  --border:       #E4E7EC;
  --border-dark:  #D0D5DD;
  --green:        #12B76A;
  --green-pale:   #D1FAE5;
  --green-dark:   #065F46;
  --amber:        #F79009;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-full: 999px;
  --sh-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --sh-md:  0 4px 16px rgba(0,0,0,.10);
  --sh-lg:  0 10px 40px rgba(0,0,0,.13);
  --sh-xl:  0 24px 60px rgba(0,0,0,.16);
  --font:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w:  1160px;
  --content-w: 780px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.5rem; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: var(--r-sm); }

/* --- TYPOGRAPHY -------------------------------------------- */
h1 { font-size: clamp(2rem, 4.5vw, 2.85rem); font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: var(--navy); letter-spacing: -.015em; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--navy); }
h4 { font-size: 1rem; font-weight: 600; color: var(--grey-800); }
h5 { font-size: .875rem; font-weight: 600; color: var(--grey-700); }
p  { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.78; }
p:last-child { margin-bottom: 0; }

/* --- LAYOUT ------------------------------------------------ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: var(--content-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.section-sm { padding: 44px 0; }

.section-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem;
}
.section-kicker::before { content: ''; width: 18px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title { margin-bottom: .5rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 560px; line-height: 1.7; }
.section-sub.centered { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.grey-bg { background: var(--grey-50); }
.navy-bg { background: var(--navy); }
.text-center { text-align: center; }

/* Utility spacing */
.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-10{margin-top:2.5rem}
.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: .9rem; font-weight: 700; letter-spacing: .01em;
  padding: .72rem 1.5rem;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap; line-height: 1.1;
  text-decoration: none;
  -webkit-user-select: none; user-select: none;
}
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(24,95,165,.35); }

.btn-primary   { background: var(--blue);  color: #fff;          border-color: var(--blue);  }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }

.btn-navy      { background: var(--navy);  color: #fff;          border-color: var(--navy);  }
.btn-navy:hover { background: #162c52; border-color: #162c52; color: #fff; }

.btn-outline   { background: transparent; color: var(--blue);    border-color: var(--blue);  }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn-ghost     { background: rgba(255,255,255,.07); color: var(--blue-light); border-color: rgba(133,183,235,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }

.btn-white     { background: #fff; color: var(--navy); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--blue-pale); color: var(--blue-dark); }

.btn-sm  { font-size: .8rem; padding: .52rem 1.1rem; border-radius: var(--r-sm); }
.btn-lg  { font-size: 1rem;  padding: .9rem 1.85rem; }
.btn-xl  { font-size: 1.05rem; padding: 1rem 2.25rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--r-md); }

/* --- ANNOUNCEMENT BAR ------------------------------------- */
.announce-bar {
  background: var(--blue-pale);
  border-bottom: 1px solid rgba(24,95,165,.2);
  padding: 10px 0;
}
.announce-bar .inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; position: relative;
}
.announce-badge {
  background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-full);
}
.announce-text { font-size: .83rem; color: var(--navy); font-weight: 500; }
.announce-link { font-size: .83rem; color: var(--blue); font-weight: 700; }
.announce-link:hover { text-decoration: underline; }
.announce-close {
  background: none; border: none; color: var(--blue); cursor: pointer;
  font-size: 1.1rem; line-height: 1; padding: 0 4px;
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
}

/* --- SITE HEADER ------------------------------------------ */
#site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 24px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; background: var(--blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(24,95,165,.4);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.logo-name span { color: var(--blue-light); }
.logo-tagline { font-size: .6rem; color: rgba(133,183,235,.7); letter-spacing: .08em; text-transform: uppercase; margin-top: 1px; }

/* Nav */
#site-navigation { flex: 1; display: flex; justify-content: center; }
#primary-menu { display: flex; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; }
#primary-menu > li > a {
  display: block; color: rgba(133,183,235,.85); font-size: .84rem; font-weight: 600;
  padding: .5rem .85rem; border-radius: var(--r-md);
  transition: all var(--transition); text-decoration: none;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a { color: #fff; background: rgba(255,255,255,.09); }

/* Dropdown */
#primary-menu > li { position: relative; }
#primary-menu > li > ul {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); min-width: 210px; padding: 8px; list-style: none; z-index: 200;
}
#primary-menu > li > ul::before {
  content: ''; position: absolute; top: -6px; left: 20px;
  width: 10px; height: 10px; background: #fff;
  transform: rotate(45deg); border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
#primary-menu > li:hover > ul { display: block; }
#primary-menu > li > ul > li > a {
  display: block; font-size: .83rem; color: var(--text-main); font-weight: 500;
  padding: .55rem 1rem; border-radius: var(--r-sm); transition: all var(--transition);
}
#primary-menu > li > ul > li > a:hover { background: var(--blue-pale); color: var(--blue); }

/* Header right */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-search-btn { background: none; border: none; color: var(--blue-light); cursor: pointer; padding: 8px; border-radius: var(--r-md); transition: all var(--transition); }
.header-search-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
.header-search-btn svg { width: 18px; height: 18px; display: block; }

/* Mobile toggle */
.menu-toggle {
  display: none; background: transparent;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md);
  color: #fff; padding: 8px 12px; cursor: pointer; font-size: .8rem;
  align-items: center; gap: 6px;
}
.menu-toggle svg { width: 16px; height: 16px; }

/* Mobile drawer */
@media (max-width: 860px) {
  #site-navigation {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
    background: var(--navy); flex-direction: column; justify-content: flex-start;
    padding: 80px 28px 40px; overflow-y: auto;
  }
  #site-navigation.open { display: flex; }
  #primary-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 4px; }
  #primary-menu > li { width: 100%; }
  #primary-menu > li > a { font-size: 1rem; padding: .75rem 1rem; }
  #primary-menu > li > ul { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.04); padding: 4px 0 4px 12px; margin-top: 4px; }
  #primary-menu > li > ul > li > a { color: var(--blue-light); }
  .menu-toggle { display: flex; }
  .header-cta .btn-ghost { display: none; }
}

/* --- HERO -------------------------------------------------- */
.hero {
  background: var(--navy);
  padding: 80px 0 90px;
  position: relative; overflow: hidden;
}
.hero-bg-circles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-circles span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(46,125,209,.15);
}
.hero-bg-circles span:nth-child(1) { width: 600px; height: 600px; right: -150px; top: -150px; }
.hero-bg-circles span:nth-child(2) { width: 360px; height: 360px; right: 80px; top: 40px; border-color: rgba(46,125,209,.09); }
.hero-bg-circles span:nth-child(3) { width: 200px; height: 200px; left: 60px; bottom: -60px; border-color: rgba(46,125,209,.07); }

.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,125,209,.18); border: 1px solid rgba(46,125,209,.35);
  color: var(--blue-light); font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 1.4rem;
}
.hero-eyebrow .pulse {
  width: 7px; height: 7px; background: var(--blue-mid); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }

.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--blue-mid); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(133,183,235,.9); margin-bottom: 2.2rem; max-width: 540px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
}
.hero-stat { padding-right: 32px; margin-right: 32px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat .num { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; display: block; }
.hero-stat .lbl { font-size: .74rem; color: var(--blue-light); margin-top: 3px; display: block; font-weight: 500; }

/* Trust badges */
.trust-strip {
  background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.trust-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-label { font-size: .72rem; font-weight: 600; color: rgba(133,183,235,.6); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.trust-items { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(133,183,235,.7); white-space: nowrap; }
.trust-item svg { width: 14px; height: 14px; fill: var(--blue-mid); }

/* --- AD CONTAINERS ---------------------------------------- */
.ad-slot {
  display: flex; align-items: center; justify-content: center;
  background: var(--grey-100); border: 1px dashed var(--grey-300);
  border-radius: var(--r-md); position: relative; overflow: hidden;
}
.ad-slot::before {
  content: 'ADVERTISEMENT';
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  font-size: .58rem; color: var(--grey-400); letter-spacing: .1em; font-weight: 600;
  pointer-events: none; white-space: nowrap;
}
.ad-leaderboard  { width: 100%; height: 90px; }   /* 728x90 */
.ad-banner       { width: 100%; height: 60px; }   /* 320x50 mobile */
.ad-rectangle    { width: 300px; height: 250px; } /* 300x250 */
.ad-large-rect   { width: 336px; height: 280px; } /* 336x280 */
.ad-skyscraper   { width: 160px; height: 600px; } /* 160x600 */
.ad-in-article   { width: 100%; max-width: 336px; height: 280px; margin: 0 auto; }

.ad-strip {
  background: var(--grey-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.ad-strip .inner { display: flex; justify-content: center; align-items: center; }

/* --- REGIONS SECTION -------------------------------------- */
.regions-section { padding: 72px 0; background: var(--grey-50); }

.regions-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.region-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 18px;
  background: #fff; position: relative; transition: all var(--transition);
  overflow: hidden;
}
.region-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue); transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.region-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); transform: translateY(-3px); color: inherit; }
.region-card:hover::after { transform: scaleX(1); }
.region-card.featured { border-color: var(--blue); background: var(--blue-pale); }
.region-card.featured::after { transform: scaleX(1); }
.region-card.coming { opacity: .55; pointer-events: none; cursor: default; }

.region-flag { font-size: 2.2rem; margin-bottom: 12px; display: block; line-height: 1; }
.region-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.region-count { font-size: .78rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.region-domain { font-size: .75rem; color: var(--blue); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.region-domain svg { width: 11px; height: 11px; flex-shrink: 0; }

.region-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: .63rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--r-full);
}
.badge-active  { background: var(--blue-pale); color: var(--blue-dark); }
.badge-coming  { background: var(--grey-200);  color: var(--grey-600); }
.badge-new     { background: #D1FAE5; color: var(--green-dark); }

/* --- PILLARS ---------------------------------------------- */
.pillars-section { padding: 72px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pillar-card {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px;
  background: #fff; transition: all var(--transition); position: relative;
}
.pillar-card:hover { box-shadow: var(--sh-md); border-color: var(--blue-pale); }
.pillar-card.premium-feat { border-color: var(--blue); }
.pillar-card.premium-feat .pillar-icon-wrap { background: var(--blue-pale); }

.pillar-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pillar-icon-wrap svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.pillar-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pillar-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

.tier-chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full);
}
.chip-free    { background: var(--green-pale); color: var(--green-dark); }
.chip-premium { background: var(--blue-pale);  color: var(--blue-dark); }

/* --- RESOURCE / BLOG CARDS -------------------------------- */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.resource-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff;
  overflow: hidden; transition: all var(--transition);
}
.resource-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.resource-card.featured-post { border-color: var(--blue); }

.rc-thumb { position: relative; }
.rc-thumb img { width: 100%; height: 185px; object-fit: cover; display: block; }
.rc-thumb .thumb-placeholder {
  width: 100%; height: 185px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #c4d9f7 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.rc-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: .67rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); background: #fff; padding: 3px 10px; border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
}
.rc-premium-ribbon {
  position: absolute; top: 0; right: 0;
  background: var(--navy); color: var(--blue-light);
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 var(--r-lg) 0 var(--r-md);
}

.rc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.rc-title { font-size: .97rem; font-weight: 700; color: var(--navy); line-height: 1.42; margin-bottom: 10px; }
.rc-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: auto; }
.rc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.rc-meta { display: flex; align-items: center; gap: 8px; font-size: .73rem; color: var(--text-light); }
.rc-meta img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.rc-read-time { font-size: .73rem; color: var(--blue); font-weight: 600; }

/* Hero resource card (featured / wide) */
.resource-card-hero { flex-direction: row; }
.resource-card-hero .rc-thumb img { width: 340px; height: 100%; min-height: 220px; }
.resource-card-hero .rc-thumb .thumb-placeholder { width: 340px; height: 100%; min-height: 220px; }
.resource-card-hero .rc-title { font-size: 1.15rem; }

/* --- CONTENT + SIDEBAR ------------------------------------ */
.site-main { padding: 52px 0; }
.content-sidebar { display: grid; grid-template-columns: 1fr 310px; gap: 48px; align-items: start; }

/* Single Article */
.entry-header { margin-bottom: 2.25rem; }
.entry-kicker { margin-bottom: .6rem; }
.entry-cat-link {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-full);
}
.entry-title { margin-bottom: .75rem; font-size: clamp(1.6rem,3vw,2.25rem); }
.entry-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: .78rem; color: var(--text-light); margin-bottom: 1.5rem;
}
.entry-meta a { color: var(--text-light); font-weight: 600; }
.entry-meta a:hover { color: var(--blue); }
.entry-meta .sep { color: var(--border); }
.entry-meta .reading-time { color: var(--blue); font-weight: 600; }

.entry-featured-image { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2.5rem; }
.entry-featured-image img { width: 100%; max-height: 440px; object-fit: cover; display: block; }

.entry-content { font-size: 1.01rem; color: var(--grey-800); line-height: 1.82; }
.entry-content h2 { font-size: 1.55rem; margin: 2.5rem 0 .75rem; }
.entry-content h3 { font-size: 1.25rem; margin: 2rem 0 .5rem; }
.entry-content h4 { font-size: 1.05rem; margin: 1.75rem 0 .4rem; }
.entry-content p { margin-bottom: 1.35rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1.35rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content strong { color: var(--navy); }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--blue-dark); }

.entry-content blockquote {
  border-left: 4px solid var(--blue); margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--blue-pale); border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-size: 1.05rem; font-style: italic; color: var(--navy);
}
.entry-content blockquote p { color: var(--navy); margin: 0; }

.entry-content code {
  background: var(--grey-100); color: var(--grey-900);
  padding: 2px 7px; border-radius: 4px; font-size: .88em; font-family: 'Courier New', monospace;
}
.entry-content pre {
  background: var(--grey-900); color: #e2e8f0; padding: 1.5rem;
  border-radius: var(--r-lg); overflow-x: auto; margin-bottom: 1.5rem;
}
.entry-content pre code { background: none; color: inherit; padding: 0; }

.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9rem; }
.entry-content th { background: var(--navy); color: #fff; padding: .7rem 1.1rem; text-align: left; font-size: .82rem; font-weight: 600; letter-spacing: .03em; }
.entry-content td { padding: .65rem 1.1rem; border-bottom: 1px solid var(--border); }
.entry-content tr:last-child td { border-bottom: none; }
.entry-content tr:hover td { background: var(--grey-50); }

.entry-content img { border-radius: var(--r-lg); margin: 1.25rem 0; }

/* In-content ad break */
.ad-break { margin: 2.5rem 0; }

.entry-footer {
  margin-top: 2.5rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill {
  background: var(--grey-100); color: var(--grey-700); font-size: .74rem; font-weight: 600;
  padding: 4px 13px; border-radius: var(--r-full); text-decoration: none; transition: all var(--transition);
}
.tag-pill:hover { background: var(--blue-pale); color: var(--blue); }

.share-row { display: flex; gap: 8px; align-items: center; }
.share-label { font-size: .75rem; color: var(--text-light); font-weight: 600; }
.share-btn {
  display: flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-md); border: 1px solid var(--border);
  background: #fff; color: var(--text-main); cursor: pointer; text-decoration: none; transition: all var(--transition);
}
.share-btn:hover { border-color: var(--blue); color: var(--blue); }

/* Author box */
.author-box {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; margin: 2.5rem 0;
  align-items: start; background: var(--grey-50);
}
.author-avatar { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); }
.author-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.author-role { font-size: .75rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.author-bio { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Related */
.related-section { margin-top: 3.5rem; }
.related-section h3 { margin-bottom: 1.5rem; }

/* Comments */
.comments-section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }

/* --- SIDEBAR ---------------------------------------------- */
.sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 84px; }

.widget {
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 22px;
  background: #fff; overflow: hidden;
}
.widget-title {
  font-size: .88rem; font-weight: 700; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-100);
  text-transform: uppercase; letter-spacing: .05em;
}

/* Newsletter widget */
.widget-newsletter { background: var(--navy); border-color: var(--navy); }
.widget-newsletter .widget-title { color: #fff; border-bottom-color: rgba(255,255,255,.08); }
.widget-newsletter .widget-desc { font-size: .82rem; color: var(--blue-light); margin-bottom: 14px; line-height: 1.6; }
.widget-newsletter input[type="email"] {
  width: 100%; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md); background: rgba(255,255,255,.07); color: #fff;
  font-size: .84rem; margin-bottom: 8px; transition: border-color var(--transition);
}
.widget-newsletter input[type="email"]:focus { outline: none; border-color: var(--blue-mid); }
.widget-newsletter input::placeholder { color: rgba(133,183,235,.55); }

/* Premium upgrade widget */
.widget-upgrade { background: var(--blue); border-color: var(--blue); }
.widget-upgrade .widget-title { color: #fff; border-bottom-color: rgba(255,255,255,.15); }
.widget-upgrade .widget-desc { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.upgrade-feat-list { list-style: none; padding: 0; margin: 0 0 16px; }
.upgrade-feat-list li { font-size: .81rem; color: rgba(255,255,255,.85); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.upgrade-feat-list li::before { content: '✓'; color: #93EFCA; font-weight: 800; flex-shrink: 0; }
.upgrade-price-tag { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -.02em; }
.upgrade-price-tag span { font-size: .82rem; font-weight: 400; opacity: .7; }

/* Ad widget */

/* Category list */
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li { padding: 7px 0; border-bottom: 1px solid var(--grey-100); }
.cat-list li:last-child { border-bottom: none; }
.cat-list li a { font-size: .84rem; color: var(--text-muted); font-weight: 500; transition: color var(--transition); }
.cat-list li a:hover { color: var(--blue); }
.cat-list .count { font-size: .72rem; background: var(--grey-100); padding: 2px 8px; border-radius: var(--r-full); color: var(--grey-600); font-weight: 600; }

/* Professional category list */
.cat-list--professional { list-style: none; padding: 0; margin: 0; }
.cat-list--professional .cat-list__item { padding: 0; border-bottom: 1px solid var(--grey-100); }
.cat-list--professional .cat-list__item:last-child { border-bottom: none; }
.cat-list--professional .cat-list__link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 10px 9px 0; text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border-radius: 4px;
}
.cat-list--professional .cat-list__link:hover { color: var(--blue); background: var(--grey-50); padding-left: 6px; }
.cat-list--professional .cat-list__name { font-size: .84rem; font-weight: 500; color: var(--text-main); line-height: 1.35; }
.cat-list--professional .cat-list__link:hover .cat-list__name { color: var(--blue); }
.cat-list--professional .cat-list__count {
  font-size: .7rem; font-weight: 700; min-width: 22px; text-align: center;
  background: var(--blue-light); color: var(--blue); padding: 2px 7px;
  border-radius: var(--r-full); flex-shrink: 0; margin-left: 8px;
}
.cat-list__all-link {
  display: inline-block; margin-top: 12px; font-size: .8rem;
  font-weight: 600; color: var(--blue); text-decoration: none;
}
.cat-list__all-link:hover { text-decoration: underline; }

/* Remove ad-strip styles if orphaned */
.ad-strip { display: none; }

/* Recent posts widget */
.recent-posts-list { list-style: none; padding: 0; }
.recent-posts-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--grey-100); align-items: flex-start; }
.recent-posts-list li:last-child { border-bottom: none; }
.rp-thumb { width: 58px; height: 48px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; background: var(--grey-200); }
.rp-text { flex: 1; }
.rp-title { font-size: .82rem; font-weight: 600; color: var(--navy); line-height: 1.35; display: block; text-decoration: none; }
.rp-title:hover { color: var(--blue); }
.rp-date { font-size: .71rem; color: var(--text-light); margin-top: 3px; display: block; }

/* --- PRICING ---------------------------------------------- */
.pricing-section { padding: 80px 0; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 2.5rem; }
.toggle-label { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.toggle-label.active { color: var(--navy); }
.save-badge { background: var(--green-pale); color: var(--green-dark); font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: var(--r-full); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px;
  background: #fff; display: flex; flex-direction: column; position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--sh-md); }
.pricing-card.popular { border: 2px solid var(--blue); box-shadow: var(--sh-md); }
.popular-flag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 0 0 var(--r-md) var(--r-md);
  white-space: nowrap;
}
.plan-icon { font-size: 1.75rem; margin-bottom: 14px; }
.plan-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.plan-price { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; margin: 10px 0 4px; letter-spacing: -.03em; }
.plan-price .currency { font-size: 1.25rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-price .period { font-size: .88rem; font-weight: 400; color: var(--text-muted); }
.plan-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-features li { font-size: .84rem; color: var(--text-muted); padding: 6px 0; display: flex; align-items: flex-start; gap: 9px; border-bottom: 1px solid var(--grey-50); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li.yes::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-features li.no::before  { content: '✕'; color: var(--grey-300); flex-shrink: 0; margin-top: 1px; }
.plan-features li.no { color: var(--grey-400); }
.plan-note { font-size: .73rem; color: var(--text-light); text-align: center; margin-top: 10px; }

/* --- EMPLOYERS BAND --------------------------------------- */
.employers-band { background: var(--navy); padding: 72px 0; position: relative; overflow: hidden; }
.employers-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.eb-left { max-width: 500px; }
.eb-left h2 { color: #fff; margin-bottom: .75rem; }
.eb-left p { color: var(--blue-light); font-size: 1rem; line-height: 1.7; }
.eb-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.eb-stats { display: flex; gap: 32px; }
.eb-stat strong { font-size: 2.25rem; font-weight: 800; color: #fff; display: block; line-height: 1; letter-spacing: -.02em; }
.eb-stat span { font-size: .78rem; color: var(--blue-light); font-weight: 500; }
.eb-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* --- PAGINATION ------------------------------------------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 2.5rem; flex-wrap: wrap; }
.page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  font-size: .85rem; font-weight: 700; border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none; transition: all var(--transition);
}
.page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-numbers.prev, .page-numbers.next { font-size: .75rem; width: auto; padding: 0 14px; }

/* --- FOOTER ----------------------------------------------- */
#site-footer { background: var(--navy-deep); }
.footer-upper { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr; gap: 40px; }

.ft-brand { }
.ft-brand .site-logo { margin-bottom: 14px; }
.ft-brand p { font-size: .82rem; color: var(--grey-500); line-height: 1.7; max-width: 230px; }
.ft-brand .contact-row { display: flex; align-items: center; gap: 6px; margin-top: 14px; }
.ft-brand .contact-row a { font-size: .8rem; color: var(--blue-light); transition: color var(--transition); }
.ft-brand .contact-row a:hover { color: #fff; }
.ft-brand .contact-row svg { width: 13px; height: 13px; stroke: var(--blue-light); fill: none; flex-shrink: 0; }

.ft-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-600); margin-bottom: 16px; }
.ft-col ul { list-style: none; padding: 0; }
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul li a { font-size: .82rem; color: var(--grey-500); text-decoration: none; transition: color var(--transition); }
.ft-col ul li a:hover { color: var(--blue-light); }

.ft-newsletter h5 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-600); margin-bottom: 10px; }
.ft-newsletter p { font-size: .81rem; color: var(--grey-500); line-height: 1.6; margin-bottom: 14px; }
.ft-nl-form { display: flex; gap: 7px; }
.ft-nl-form input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  padding: .65rem .9rem; color: #fff; font-size: .82rem; transition: border-color var(--transition);
}
.ft-nl-form input:focus { outline: none; border-color: var(--blue-mid); }
.ft-nl-form input::placeholder { color: var(--grey-600); }

.footer-lower { padding: 20px 0; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .77rem; color: var(--grey-700); }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-500); font-size: .75rem; text-decoration: none; font-weight: 700;
  transition: all var(--transition); border: 1px solid rgba(255,255,255,.06);
}
.social-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: .75rem; color: var(--grey-700); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--blue-light); }

/* --- COOKIE BANNER ---------------------------------------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(6,14,26,.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 28px; display: none;
  gap: 20px; align-items: center; flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: .82rem; color: var(--grey-400); margin: 0; flex: 1; line-height: 1.6; }
.cookie-banner a { color: var(--blue-light); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* --- SEARCH OVERLAY --------------------------------------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6,14,26,.96);
  display: none; align-items: flex-start; justify-content: center; padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-box { width: 100%; max-width: 620px; padding: 0 28px; }
.search-box form { display: flex; gap: 0; background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.search-box input { flex: 1; border: none; padding: 1.1rem 1.5rem; font-size: 1.1rem; color: var(--navy); outline: none; }
.search-box button { background: var(--blue); border: none; padding: 1.1rem 1.5rem; color: #fff; cursor: pointer; font-size: 1rem; font-weight: 700; }
.search-close { display: block; text-align: center; margin-top: 20px; color: rgba(255,255,255,.5); font-size: .85rem; cursor: pointer; background: none; border: none; }

/* --- MISC COMPONENTS -------------------------------------- */
.notice-bar { background: var(--green-pale); border: 1px solid #A7F3D0; border-radius: var(--r-md); padding: 12px 16px; font-size: .84rem; color: var(--green-dark); margin-bottom: 16px; }
.error-bar  { background: #FEE2E2; border: 1px solid #FECACA; border-radius: var(--r-md); padding: 12px 16px; font-size: .84rem; color: #991B1B; margin-bottom: 16px; }

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); transition: all var(--transition);
  font-size: 1rem;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--navy); transform: translateY(-2px); }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ft-brand, .ft-newsletter { grid-column: 1 / -1; }
  .regions-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .regions-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .resource-card-hero { flex-direction: column; }
  .resource-card-hero .rc-thumb img,
  .resource-card-hero .rc-thumb .thumb-placeholder { width: 100%; height: 220px; }
}
@media (max-width: 768px) {
  .header-inner { height: auto; padding: 14px 0; flex-wrap: wrap; gap: 12px; }
  .hero { padding: 52px 0 64px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding-right: 20px; margin-right: 20px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .ad-leaderboard { height: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
  .related-section .resources-grid { grid-template-columns: 1fr; }
  .employers-band-inner { flex-direction: column; }
  .eb-stats { gap: 20px; }
  .author-box { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; margin-right: 0; margin-bottom: 0; }
  .hero-stat:last-child { border-bottom: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
