/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;

}

.bg-main {
  min-height: 200vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #000;
  overflow-y: auto;
}

.bg-second-main {
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: visible;
}


/* ========== BASE LAYOUT ========== */
.page-shell {
  min-height: 100vh;
  padding: 32px 0;
  padding-top: 4rem;
}

.content-card {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  background: transparent;
  border-radius: 18px;
}

/* ========== HERO ========== */
.badge-wrap {
  margin: 32px 0 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.hero-title {
  max-width: 900px;
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

/* ========== FILTERS ========== */
.filters {
  display: flex;
  gap: 20px;
  width: 100%;
}

.filter-wrap {
  flex: 1;
}

.dropdown {
  position: relative;
  width: 100%;
}

.trigger {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 100%;
  padding: 14px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  display: none;
  z-index: 20;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px;
  color: #fff;
}

/* =========================================================
   DESKTOP
========================================================= */
@media (min-width: 770px) {
  .filters {
    flex-direction: row;
  }
}

/* =========================================================
   MOBILE – WHITE CARD DESIGN
========================================================= */
@media (min-width:425px) and (max-width: 769px) {
  body {
    color: #fff;
  }

  .page-shell {
    padding: 4px;
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 28px;
    color: #fff;
  }

  .hero-subtitle {
    font-size: 15px;
    color: #fff;
  }

  .badge {
    color: #fff;

  }

  .filters {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .filter-wrap {
    width: 100%;
    max-width: 360px;
  }

  .dropdown {
    width: 70%;
    margin: 0 auto;
  }

  .trigger {
    height: 56px;
    padding: 0 20px;

    color: #fff;
    
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  }

  @media (max-width:425px) {
    .trigger{
      width: 100%;
    }
  }

  .trigger svg {
    stroke: #6b7280;
  }

  .menu {
    position: static;
    margin-top: 10px;
    
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: none;
    display: block;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu li {
    color: #fff;
    font-size: 15px;
  }

  .menu input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
  }
}

@media (max-width:425px){
  .menu{
    width: 100%;
  }
}

@media (max-width:425px) {
  .bg-main{
    margin-right: 10px;
  }
}

@media (max-width:450px) {
  body {
    
    color: #fff;
  }

  .page-shell {
    padding: 4px;
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 28px;
    color: #fff;
  }

  .hero-subtitle {
    font-size: 15px;
    color: #fff;
  }

  .badge {
    color: #fff;
    border-color: #d0d7e2;
  }

  .filters {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .filter-wrap {
    width: 100%;
    max-width: 360px;
  }

  .dropdown {
    width: 100%;
    margin: 0 auto;
  }

  .trigger {
    height: 56px;
    padding: 0 20px;
    
    color: #fff;
   
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  }

  @media (max-width:425px) {
    .trigger{
      width: 100%;
    }
  }

  .trigger svg {
    stroke: #6b7280;
  }

  .menu {
    position: static;
    margin-top: 10px;
   
    color: #fff;

    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: none;
    display: block;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu li {
    color: #fff;
    font-size: 15px;
  }

  .menu input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
  }
}

.results-title{
  color:#fff;
  text-align:center;
  padding:2rem;
  font-size:1.5rem;
  font-weight:600;
}


.cell{display:flex;align-items:center;gap:6px;font-size:16px;color: #fff;}

.divider{border-color:#4F4F4F;margin-top:1rem}

.jobs{list-style:none;padding:0;margin-top:1.5rem}

.job-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:8rem;
  align-items:center;
  background:#000;
  
  border-width: 1px;
  border-radius:14px;
  padding:2rem;
  margin:10px 0;
  cursor:pointer;
  /* transition:.3s ease; */
  border-color: #d0d7e2; border-style: solid; 
}
 /* @media (min-width: 768px) {
        .job-row {
            grid-template-columns: 3fr 1.4fr 1.2fr 1.6fr 44px;
            align-items: center;
        }
    } */
    @media (max-width: 767px) {
        .job-row {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }

    .head-row{display:none;grid-template-columns:repeat(5,1fr);gap:1rem;color:#4F4F4F;margin-top:3rem;padding: 1rem;}
    @media (min-width: 768px) {
  .head-row,
  .job-row {
    display: grid;
    grid-template-columns: 3fr 1.4fr 1.2fr 1.6fr 44px;
    gap: 2rem;
    align-items: center;
  }
}

    .pos {
  font-size: 17px;
  line-height: 1.3;
  white-space: normal;
}
/* .job-row:hover{transform:translateX(6px)} */

.pos{font-weight:700;color:#fff;font-size:17px}
.meta{color:#fff;font-size:15px;font-weight:500}

.arrow{justify-self:end;transition:.3s}
/* .job-row:hover .arrow{transform:translateX(6px)} */

.empty{text-align:center;color:#aaa;padding:3rem}
