/* Split from legacy style.css - shared layout */

/* =========================================================
7) NAVBAR
========================================================= */
.navbar{
  background:rgba(245,248,255,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
@media (hover:none){.navbar{backdrop-filter:none;background:rgba(245,248,255,.98);}}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .navbar{background:rgba(245,248,255,.98);}
}
.navbar .navbar-brand h1{
  font-weight:900;
  letter-spacing:-0.05em;
  font-size:22px;
}
.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link{
  margin-right:30px;
  padding:25px 0;
  font-size:15px;
  outline:none;
}
.navbar-light .navbar-nav .nav-link{
  color:var(--dark);
  font-weight:700;
  text-transform:none;
  opacity:.78;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active{opacity:1;color:var(--dark);}

.navbar .dropdown-toggle::after{
  border:none;
  content:"\f107";
  font-family:"Font Awesome 5 Free";
  font-weight:900;
  vertical-align:middle;
  margin-left:5px;
  transition:.5s;
}
.navbar .dropdown-toggle[aria-expanded=true]::after{transform:rotate(-180deg);}

@media (min-width:992px){
  .navbar .nav-item .dropdown-menu{
    display:block;
    top:100%;
    margin-top:0;
    transform:rotateX(-75deg);
    transform-origin:0% 0%;
    opacity:0;
    visibility:hidden;
    transition:.5s;
  }
  .navbar .nav-item:hover .dropdown-menu{
    transform:rotateX(0deg);
    visibility:visible;
    opacity:1;
  }
}
@media (max-width:991.98px){
  .navbar-dark .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link{margin-right:0;padding:10px 0;}
  .navbar-light .navbar-nav{
    border-top:1px solid #EEE;
    padding-top:10px;
    padding-bottom:10px;
  }
}

.brand-mark{
  width:34px;height:34px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow:0 10px 26px rgba(37,99,235,.18);
  flex:0 0 auto;
}

/* =========================================================
8) HEADER / PAGE HEADER
========================================================= */
.header-carousel .container,
.page-header .container{
  position:relative;
  padding:45px 0 45px 35px;
  border-left:15px solid var(--primary);
}
.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after{
  position:absolute;
  content:"";
  top:0;left:0;
  width:100px;
  height:15px;
  background:var(--primary);
}
.header-carousel .container::after,
.page-header .container::after{top:100%;margin-top:-15px;}
.page-header{
  background:linear-gradient(rgba(15,28,58,.75),rgba(15,28,58,.85)),
             linear-gradient(135deg,#2563EB,#1D4ED8);
  background-size:cover;
}
.page-header .breadcrumb-item + .breadcrumb-item::before{color:var(--light);}
.header-carousel .owl-nav{
  position:absolute;
  top:50%;
  right:8%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
}
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
  margin:7px 0;
  width:45px;height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:transparent;
  border:1px solid rgba(255,255,255,.55);
  border-radius:14px;
  font-size:22px;
  transition:.5s;
}
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.75);
}
@media (max-width:768px){
  .theme-premium .header-carousel .owl-carousel-item{position:relative;min-height:500px;}
  .theme-premium .header-carousel .owl-carousel-item img{
    position:absolute;width:100%;height:100%;object-fit:cover;
  }
  .theme-premium .header-carousel .owl-carousel-item p{font-size:14px;font-weight:400;}
  .theme-premium .header-carousel .owl-carousel-item h1{font-size:30px;font-weight:600;}
}

/* =========================================================
19) FOOTER
========================================================= */
.theme-premium .footer{background:#0B1733;}
.footer .btn.btn-social{
  margin-right:5px;
  width:35px;height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--light);
  border:1px solid rgba(255,255,255,0.5);
  border-radius:14px;
  transition:.3s;
}
.footer .btn.btn-social:hover{color:var(--primary);border-color:var(--light);}
.footer .btn.btn-link{
  display:block;
  margin-bottom:5px;
  padding:0;
  text-align:left;
  font-size:15px;
  font-weight:600;
  text-transform:capitalize;
  transition:.3s;
  opacity:.85;
  color:#000 !important;
}
.footer .btn.btn-link::before{
  position:relative;
  content:"\f105";
  font-family:"Font Awesome 5 Free";
  font-weight:900;
  margin-right:10px;
}
.footer .btn.btn-link:hover{letter-spacing:0;box-shadow:none;opacity:1;}
.footer .form-control{border-color:rgba(255,255,255,0.5);}
.footer .copyright{
  padding:25px 0;
  font-size:15px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer .copyright a{color:var(--light);}
.footer .footer-menu a{
  margin-right:15px;
  padding-right:15px;
  border-right:1px solid rgba(255,255,255,.1);
}
.footer .footer-menu a:last-child{margin-right:0;padding-right:0;border-right:none;}

/* =========================================================
20) A11Y FOCUS RING
========================================================= */
:where(a,button,.btn,.btn-prem,.btn-filter-icon,.cat-nav,.action-btn,.form-control,.form-select):focus-visible{
  outline:none;
  box-shadow:0 0 0 .25rem rgba(37,99,235,.18);
}

/* =========================================================
21) HOVER PERFORMANCE
========================================================= */
@media (hover:hover){
  .job-item:hover,.post-item:hover,.recent-blog-posts .post-item:hover,.cardx:hover{will-change:transform;}
}

/* =========================================================
22) REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto;}
  .cardx,.btn-prem,.btn,.post-item,.recent-blog-posts .post-item{transition:none;}
}

/* =========================================================
23) PERF PACK
========================================================= */
@media (hover:none){
  .hero-panel,.blog-details-page .meta-categories{-webkit-backdrop-filter:none;backdrop-filter:none;}
  .blog-details-page .meta-categories{background:rgba(255,255,255,.96);}
  .hero-panel{box-shadow:0 14px 40px rgba(2,6,23,.18);}
}
@supports (content-visibility:auto){
  .job-feed,.recent-blog-posts,#blog-comments,.blog-details-page .sidebar{
    content-visibility:auto;
    contain-intrinsic-size:1px 900px;
  }
}

/* =========================================================
24) THEME PREMIUM OVERRIDES
========================================================= */
.theme-premium h1,.theme-premium h2,.theme-premium h3,.theme-premium h4,.theme-premium h5{letter-spacing:-0.03em;}
.theme-premium h1,.theme-premium .display-3{font-weight:950;letter-spacing:-0.06em;}
.theme-premium .display-3{line-height:1.08;}
.theme-premium .text-white-50{color:rgba(255,255,255,.5);}
.theme-premium :where(.hero-ui,.footer,.page-header) :is(p,.text-muted){color:inherit;}
.theme-premium :is(p,.text-muted){color:rgba(100,116,139,.92);}
.theme-premium a{text-decoration:none;}
.theme-premium a:hover{text-decoration:none;}

body.theme-premium,.theme-premium body{
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 18% 6%, rgba(37,99,235,.09), transparent 60%),
    radial-gradient(900px 480px at 86% 16%, rgba(14,165,233,.07), transparent 60%),
    #fff;
}
.theme-premium .navbar{
  background:rgba(248,250,252,.84)!important;
  border-bottom:1px solid rgba(2,6,23,.06);
  box-shadow:none!important;
  backdrop-filter:blur(12px);
}
@media (hover:none){
  .theme-premium .navbar{backdrop-filter:none;background:rgba(248,250,252,.98)!important;}
}
.theme-premium .navbar .navbar-brand h1{font-weight:950;letter-spacing:-0.06em;}
.theme-premium .navbar-light .navbar-nav .nav-link{font-weight:850;opacity:.78;}
.theme-premium .navbar-light .navbar-nav .nav-link:hover,
.theme-premium .navbar-light .navbar-nav .nav-link.active{opacity:1;}
.theme-premium .btn-nav-cta{
  box-shadow:0 18px 50px rgba(37,99,235,.28)!important;
  border-color:rgba(255,255,255,.14)!important;
}
.theme-premium .btn-nav-cta:hover{box-shadow:0 26px 70px rgba(37,99,235,.34)!important;}

.theme-premium .btn{
  border-radius:var(--r-md);
  font-weight:900;
  letter-spacing:-0.01em;
  transition:transform var(--t-fast),box-shadow var(--t-fast),filter var(--t-fast),background var(--t-fast);
}
.theme-premium .btn-primary{
  border-color:transparent!important;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  box-shadow:0 18px 44px rgba(37,99,235,.24);
}
.theme-premium .btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:0 26px 64px rgba(37,99,235,.30);
}
.theme-premium .btn-outline-secondary{border-color:rgba(2,6,23,.14)!important;}

.theme-premium :is(.form-control,.form-select){
  border-radius:var(--r-md)!important;
  border:1px solid rgba(2,6,23,.12);
  box-shadow:0 10px 22px rgba(2,6,23,.05);
  font-weight:650;
}
.theme-premium :is(.form-control,.form-select):focus{
  border-color:rgba(37,99,235,.32);
  box-shadow:0 0 0 .25rem rgba(37,99,235,.12),0 16px 34px rgba(2,6,23,.06);
}

.theme-premium .hero-ui{
  overflow:hidden;
  background:
    radial-gradient(1200px 700px at 12% 22%, rgba(37,99,235,.55), transparent 62%),
    radial-gradient(900px 520px at 84% 35%, rgba(14,165,233,.22), transparent 60%),
    radial-gradient(700px 420px at 70% 10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg,#0B1633 0%,#071126 100%);
}
.theme-premium .hero-ui:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(800px 420px at 18% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(0deg, rgba(255,255,255,.06), rgba(255,255,255,0)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 26px);
  opacity:.30;
  pointer-events:none;
  mix-blend-mode:overlay;
}
.theme-premium .hero-ui:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(260px 260px at 22% 18%, rgba(37,99,235,.35), transparent 60%),
    radial-gradient(240px 240px at 82% 30%, rgba(14,165,233,.25), transparent 60%),
    radial-gradient(300px 300px at 60% 80%, rgba(37,99,235,.18), transparent 60%);
  filter:blur(6px);
  opacity:.85;
  pointer-events:none;
}
.theme-premium .hero-ui .container{
  position:relative;
  z-index:2;
  padding-top:8px!important;
  padding-bottom:36px!important;
}
.theme-premium .hero-badge{
  background:rgba(255,255,255,.10)!important;
  border:1px solid rgba(255,255,255,.16)!important;
  box-shadow:0 16px 40px rgba(2,6,23,.18);
}
.theme-premium .hero-ui h1,
.theme-premium .hero-ui .display-3{
  color:#fff;
  text-shadow:0 18px 60px rgba(0,0,0,.35);
}
.theme-premium .hero-sub{color:rgba(255,255,255,.74)!important;font-weight:650;}
.theme-premium .trust-chip{
  background:rgba(255,255,255,.08)!important;
  border:1px solid rgba(255,255,255,.14)!important;
}
.theme-premium .hero-panel{
  border-radius:var(--r-xl)!important;
  background:rgba(255,255,255,.08)!important;
  border:1px solid rgba(255,255,255,.14)!important;
  box-shadow:0 28px 90px rgba(2,6,23,.30)!important;
}
.theme-premium .panel-card{
  border-radius:22px!important;
  background:rgba(255,255,255,.06)!important;
  border:1px solid rgba(255,255,255,.12)!important;
}
.theme-premium .panel-card:hover{
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(255,255,255,.18)!important;
}
.theme-premium .hero-search-float{margin-top:0!important;position:relative;z-index:30;}
@media (min-width:992px){.theme-premium .hero-search-float{margin-top:-18px!important;}}
.theme-premium .job-search-card{
  border-radius:var(--r-xl)!important;
  border:1px solid rgba(255,255,255,.14)!important;
  background:rgba(255,255,255,.92)!important;
  backdrop-filter:blur(12px);
  box-shadow:0 30px 90px rgba(2,6,23,.16)!important;
  position:relative;
}
.theme-premium .job-search-card :is(.form-control,.form-select){
  border-radius:18px!important;
  border:1px solid rgba(2,6,23,.10)!important;
  box-shadow:0 12px 28px rgba(2,6,23,.06)!important;
  font-weight:700;
}
.theme-premium .job-search-card .btn-search{
  border-radius:18px!important;
  background:linear-gradient(135deg,var(--primary),var(--secondary))!important;
  box-shadow:0 22px 60px rgba(37,99,235,.26)!important;
}
.theme-premium .job-search-card .btn-search:hover{
  transform:translateY(-1px);
  box-shadow:0 30px 80px rgba(37,99,235,.32)!important;
}
@media (hover:none){
  .theme-premium .hero-panel,
  .theme-premium .job-search-card{backdrop-filter:none;-webkit-backdrop-filter:none;}
  .theme-premium .job-search-card{background:rgba(255,255,255,.98)!important;}
}
@media (max-width:768px){.theme-premium .header-carousel .owl-carousel-item{min-height:420px!important;}}

.theme-premium .job-item{
  border-radius:var(--r-xl)!important;
  border:1px solid rgba(2,6,23,.08)!important;
  background:#fff!important;
  box-shadow:var(--sh-sm)!important;
  transition:transform var(--t-mid),box-shadow var(--t-mid),border-color var(--t-mid);
  display:flex;
  flex-direction:column;
}
.theme-premium .job-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--sh-md)!important;
  border-color:rgba(37,99,235,.18)!important;
}
.theme-premium .job-item .job-logo{
  width:56px!important;
  height:56px!important;
  object-fit:contain;
  border-radius:16px!important;
  background:#fff;
  padding:6px;
  border:1px solid rgba(2,6,23,.06)!important;
  box-shadow:0 6px 16px rgba(2,6,23,.08);
}
.theme-premium .job-item h5{
  font-weight:950;
  letter-spacing:-0.03em;
  margin-bottom:4px!important;
}
.theme-premium .job-item small.text-muted{
  font-weight:700;
  color:rgba(2,6,23,.60)!important;
}
.theme-premium .job-item .job-meta{
  display:flex!important;
  flex-wrap:wrap;
  gap:12px 14px;
  margin-top:4px;
  color:rgba(2,6,23,.62);
  font-weight:700;
  font-size:.92rem;
}
.theme-premium .job-item .job-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(2,6,23,.03);
  border:1px solid rgba(2,6,23,.06);
  max-width:100%;
}
.theme-premium .job-item .job-actions{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(2,6,23,.06);
}

/* =========================================================
25) CATEGORIES
========================================================= */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-weight:950;
  letter-spacing:-0.03em;
  font-size:28px;
  line-height:1.1;
  color:var(--heading-color,var(--ink));
}
.link-more{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  color:rgba(11,18,32,.78);
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  box-shadow:var(--shadow-xs);
  transition:transform var(--t-fast),box-shadow var(--t-fast),border-color var(--t-fast),filter var(--t-fast);
}
.link-more::after{
  content:"→";
  font-weight:900;
  transition:transform .2s ease;
}
.link-more:hover{
  transform:translateY(-1px);
  border-color:rgba(37,99,235,.20);
  box-shadow:var(--shadow-sm);
}
.link-more:hover::after{transform:translateX(4px);}

.categories-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}
@media (max-width:992px){.categories-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:576px){
  .section-head h2{font-size:22px;}
  .categories-grid{grid-template-columns:1fr;gap:14px;}
}

.category-card{
  --cat-emoji:"💼";
  position:relative;
  overflow:hidden;
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  box-shadow:var(--shadow-sm);
  text-decoration:none;
  color:inherit;
  transition:transform var(--t-mid),box-shadow var(--t-mid),border-color var(--t-mid),filter var(--t-mid);
}
.category-card:hover{
  transform:translateY(-4px);
  border-color:rgba(37,99,235,.18);
  box-shadow:var(--shadow-md);
}
.category-card::after{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width:220px;
  height:160px;
  background:radial-gradient(closest-side, rgba(37,99,235,.10), transparent 65%);
  transform:rotate(15deg);
  pointer-events:none;
}
.category-card::before{
  content:var(--cat-emoji);
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 65%),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(14,165,233,.12));
  border:1px solid rgba(37,99,235,.14);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  color:rgba(37,99,235,.95);
  font-size:18px;
  line-height:1;
}
.cat-name{
  position:relative;
  z-index:1;
  font-weight:950;
  font-size:16px;
  letter-spacing:-0.02em;
  margin:0 0 10px;
  color:rgba(11,18,32,.92);
  padding-right:56px;
}
.cat-count{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  font-size:13px;
  color:rgba(2,6,23,.60);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(2,6,23,.02);
  transition:border-color var(--t-fast),background var(--t-fast),color var(--t-fast);
}
.category-card:hover .cat-count{
  border-color:rgba(37,99,235,.18);
  background:rgba(37,99,235,.06);
  color:rgba(2,6,23,.72);
}
.theme-premium .category-card{border-radius:20px;}
.theme-startup .category-card{
  border-color:rgba(15,23,42,.10);
  box-shadow:var(--startup-shadow);
}
.category-card.cat-fb{--cat-emoji:"🍔";}
.category-card.cat-sales-cskh{--cat-emoji:"🎧";}
.category-card.cat-production{--cat-emoji:"🦺";}
.category-card.cat-warehouse-delivery{--cat-emoji:"📦";}
.category-card.cat-driver{--cat-emoji:"🚗";}
.category-card.cat-security{--cat-emoji:"🛡️";}
.category-card.cat-housekeeping{--cat-emoji:"🧹";}
.category-card.cat-office-admin{--cat-emoji:"🏢";}
.category-card.cat-tech-skilled{--cat-emoji:"💻";}

/* =========================================================
26) JOB CARD
========================================================= */
.job-list-bg{background:#f5f7fb;padding:24px;border-radius:18px;}
.job-card{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  position:relative;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  transition:transform var(--t-mid),box-shadow var(--t-mid),border-color var(--t-mid);
}
.job-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(15,23,42,.08);
  border-color:#cbd5e1;
}
.job-card__link{
  display:flex;
  flex:1;
  flex-direction:column;
  color:inherit;
  text-decoration:none;
}
.job-card__link:hover{
  color:inherit;
  text-decoration:none;
}
.job-card__top{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.job-card__logo{
  flex-shrink:0;
}
.job-card__logo img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid #e2e8f0;
  background:#fff;
}
.job-card__titlewrap{
  flex:1;
  min-width:0;
}
.job-card__title{
  margin:0 0 4px;
  color:#0f172a;
  font-size:18px;
  line-height:1.35;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  transition:color var(--t-fast);
}
.job-card:hover .job-card__title{
  color:var(--primary);
}
.job-card__company{
  margin:0;
  font-size:14px;
  line-height:1.4;
  font-weight:500;
  color:#475569;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.job-card__salary{
  margin:16px 0 10px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:15px;
  line-height:1.35;
  font-weight:600;
  color:#2563eb;
}
.job-salary-icon{
  width:14px;
  height:14px;
  color:#94a3b8;
  flex-shrink:0;
}
.job-card__meta{
  margin:0;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
}
.job-meta-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-width:0;
  font-size:14px;
  line-height:1.45;
  font-weight:500;
  color:#64748b;
}
.job-meta-location .meta-truncate{
  min-width:0;
  max-width:180px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.job-meta-icon{
  width:13px;
  height:13px;
  color:#94a3b8;
  flex-shrink:0;
}
.job-meta-sep{
  color:#94a3b8;
  font-size:14px;
  line-height:1;
}
.job-meta-text{
  font-size:14px;
  line-height:1.45;
  font-weight:500;
  color:#64748b;
}
.job-card__footer{
  margin-top:auto;
  padding-top:10px;
  display:flex;
  justify-content:flex-end;
}
.job-time{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  line-height:1.4;
  font-weight:400;
  color:#94a3b8;
}
.job-time-icon{
  width:14px;
  height:14px;
  color:#94a3b8;
  flex-shrink:0;
}
.job-card__cta{
  margin-top:12px;
  display:flex;
  justify-content:flex-end;
}
.job-meta-row,.meta-pill,.meta-truncate,
.job-card .meta-item,
.job-card .meta-type{
  all:unset;
}
.theme-premium .job-card{border-radius:var(--r-xl);box-shadow:var(--sh-sm);}
.theme-premium .job-card:hover{transform:translateY(-3px);box-shadow:var(--sh-md);}
.theme-premium .job-card__logo img{
  width:44px;
  height:44px;
  border-radius:12px;
  padding:0;
  border:1px solid #e2e8f0;
  box-shadow:none;
}

/* =========================================================
27) FOOTER LITE
========================================================= */
.footer-lite{
  padding:72px 0 34px;
  border-top:1px solid #d1d5db;
}
.footer-lite .footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:40px;
  align-items:start;
}
@media (max-width:992px){
  .footer-lite .footer-grid{grid-template-columns:1fr;gap:22px;}
}
.footer-lite ul{list-style:none;padding:0;margin:0;}
.footer-lite li{margin:8px 0;}
.footer-lite a{
  text-decoration:none;
  font-weight:400;
  opacity:1;
  color:#000 !important;
}
.footer-lite a:hover{
  color:#000 !important;
}
.footer-lite .footer-bottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid rgba(2,6,23,.10);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.footer-lite .footer-bottom .copy{
  color:rgba(15,23,42,.52);
  font-weight:700;
  font-size:13px;
  line-height:1.4;
}
.footer-lite .footer-bottom .credit{
  color:rgba(15,23,42,.42);
  font-weight:600;
  font-size:12px;
  line-height:1.4;
}
.footer-lite .footer-bottom .credit a{
  color:#000 !important;
  font-weight:800;
}



.skip-link{position:absolute;left:1rem;top:-40px;z-index:2000;padding:.75rem 1rem;background:#111827;color:#fff;border-radius:.75rem;text-decoration:none;}
.skip-link:focus{top:1rem;}
.brand-logo-preview{max-width:140px;max-height:140px;object-fit:cover;border-radius:10px;border:1px solid #ddd;padding:4px;}
