:root{
  --gig-red:#d32027;
  --gig-bg:#eef0f6;
  --gig-card:#ffffff;
  --gig-text:#111;
  --gig-muted:#666;
  --gig-radius:18px;
}

/* Page BG like screenshot */
.gig-careers-page{
  background: var(--gig-bg);
}

/* HERO */
.gig-careers-hero{
  position: relative;
  min-height: 400px;
  background: 
    linear-gradient(
      to bottom,
      rgba(0,0,0,.15),
      rgba(0,0,0,.65)
    ),
    url('https://gig.insideqtech.com/wp-content/uploads/2026/01/header-photo.png')
    center / cover
    no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 40px 40px;
      margin-top: -50px;
}


.gig-careers-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.65));
}

.gig-careers-hero__content{
  position:relative;
  z-index:2;
}

.gig-careers-hero h1{
  color:#fff;
  margin:0;
  font-size: 28px;
  font-weight: 700;
}

/* WRAP */
.gig-careers-wrap{
  padding: 60px 0 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gig-careers-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 0 20px;
}

@media (max-width: 992px){
  .gig-careers-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .gig-careers-grid{ grid-template-columns: 1fr; }
}

/* CARD */
.gig-card{
  background: var(--gig-card);
  border-radius: 12px 0px;
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  padding: 22px 22px 18px;
  min-height: 210px;
  display:flex;
  flex-direction:column;
}

.gig-card__title{
  margin: 0 0 10px;
  color: var(--gig-red);
  font-size: 16px;
  font-weight: 700;
}

.gig-card__desc{
  margin: 0;
  color: var(--gig-muted);
  font-size: 13px;
  line-height: 1.55;
  flex:1;
}

/* Apply button - like screenshot */
.gig-card__btn{
  margin-top: 18px;
  align-self: flex-start;
  background: var(--gig-red);
  color:#fff;
  border:0;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 12px;
  cursor:pointer;
  transition:.2s;
}
.gig-card__btn:hover{ opacity:.9; transform: translateY(-1px); }

/* Pagination */
.gig-pagination{
  display:flex;
  justify-content:center;
  margin-top: 32px;
}
.gig-pagination .page-numbers{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 10px;
  text-decoration:none;
  color:#222;
}
.gig-pagination .current{
  background: var(--gig-red);
  color:#fff;
}

/* =====================================================
   GIG CAREERS POPUP – FINAL 1:1 DESIGN (ISOLATED)
===================================================== */

/* Hard isolation */
#gigApplyPopup,
#gigApplyPopup * {
  box-sizing: border-box !important;
  font-family: inherit;
}

/* Reset external styles */
#gigApplyPopup input,
#gigApplyPopup button {
  all: unset;
  box-sizing: border-box !important;
  font-family: inherit;
}

/* Overlay */
#gigApplyPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999999;
  padding: 24px;
}

/* Container */
#gigApplyPopup .gig-popup-inner {
  max-width: 860px;
  margin: auto;
  background: #f4f5f9;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

/* Header */
#gigApplyPopup .gig-popup-header {
  background: #d71920;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#gigApplyPopup .gig-popup-header h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

/* Close */
#gigApplyPopup .gig-popup-close {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 22px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}

/* Body */
#gigApplyPopup .gig-popup-body {
  padding: 34px 36px 40px;
}

/* Inputs */
#gigApplyPopup .gig-field {
  width: 100%;
  background: #fff;
  border-radius: 999px;
  padding: 18px 22px;
  font-size: 14px;
  color: #222;
  margin-bottom: 22px;
}

#gigApplyPopup .gig-field::placeholder {
  color: #999;
}

/* Two columns */
#gigApplyPopup .gig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Upload */
#gigApplyPopup .gig-upload {
  margin-top: 10px;
}

#gigApplyPopup .gig-upload-label {
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

#gigApplyPopup .gig-upload-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #000;
  padding: 14px 22px;
  border-radius: 999px;
}

#gigApplyPopup .gig-upload-btn {
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

#gigApplyPopup .gig-upload-filename {
  color: #ccc;
  font-size: 13px;
}

#gigApplyPopup input,
#gigApplyPopup button {
  all: unset;
}

#gigApplyPopup button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


#gigApplyPopup input[type="file"] {
  display: none !important;
}


/* Note */
#gigApplyPopup .gig-note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

/* Submit */
#gigApplyPopup .gig-submit {
  margin-top: 34px;
  background: #d71920;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

button.gig-submit:hover {
    background: #ffffff !important;
    color: #d71920 !important;
}
/* Responsive */
@media (max-width: 768px) {
  #gigApplyPopup .gig-row {
    grid-template-columns: 1fr;
  }

  #gigApplyPopup .gig-popup-body {
    padding: 26px;
  }
}





button.gig-card__btn.gig-apply-btn:hover {
    background: transparent !important;
    color: #d32027 !important;
}



