.elementor-3939 .elementor-element.elementor-element-ee87a48{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-54298bc */.elementor-shortcode {
  --primary: #dc2626;
  --dark: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-soft: #f9fafb;
}

/* ================= SEARCH BAR ================= */

.elementor-shortcode .job_filters {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  margin-bottom: 28px;
}

.elementor-shortcode .search_jobs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.elementor-shortcode .search_jobs > div {
  flex: 1;
  margin-right: 14px;
  margin-bottom: 14px;
}

/* Inputs */
.elementor-shortcode .job_filters input[type="text"],
.elementor-shortcode .job_filters input[type="search"] {
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
}

/* Checkbox */
.elementor-shortcode .job_filters label {
  font-size: 13px;
  color: var(--muted);
}

/* ================= JOB TYPE FILTERS ================= */

.elementor-shortcode .job_types {
  margin-top: 10px;
}

.elementor-shortcode .job_types li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.elementor-shortcode .job_types input {
  display: none;
}

.elementor-shortcode .job_types label {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.elementor-shortcode .job_types input:checked + label {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ================= JOB LIST ================= */

.elementor-shortcode ul.job_listings {
  padding: 0;
}

/* ================= JOB CARD ================= */

.elementor-shortcode li.job_listing {
  list-style: none;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.elementor-shortcode li.job_listing:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Logo */
.elementor-shortcode .company_logo {
  margin-right: 18px;
}

.elementor-shortcode .company_logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
}

/* Content */
.elementor-shortcode .job_listing-content {
  flex: 1;
}

/* Title */
.elementor-shortcode .job_listing-title a {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.elementor-shortcode .job_listing-title a:hover {
  color: var(--primary);
}

/* Company */
.elementor-shortcode .company {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* Meta row */
.elementor-shortcode .location {
  font-size: 13px;
  color: #374151;
}

/* ================= JOB TYPE BADGE ================= */

.elementor-shortcode .job-type {
  background: #ecfeff;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ================= APPLY CTA ================= */

.elementor-shortcode a.application_button {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.elementor-shortcode a.application_button:hover {
  background: #b91c1c;
}

/* ================= MISC ================= */

.elementor-shortcode .load_more_jobs {
  display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .elementor-shortcode li.job_listing {
    flex-direction: column;
    align-items: flex-start;
  }

  .elementor-shortcode a.application_button {
    margin-left: 0;
    margin-top: 12px;
  }

  .elementor-shortcode .company_logo {
    display: none;
  }
}



.elementor-shortcode li.job_listing {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 20px 24px;
}

/* LOGO */
.elementor-shortcode .company_logo {
  grid-column: 1;
}

.elementor-shortcode .company_logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

/* MAIN CONTENT */
.elementor-shortcode .position {
  grid-column: 2;
}

/* Title */
.elementor-shortcode .job_listing-title a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Company */
.elementor-shortcode .company {
  font-size: 14px;
  color: #6b7280;
}

/* Location */
.elementor-shortcode .location {
  font-size: 13px;
  color: #374151;
  margin-top: 6px;
}

/* RIGHT META COLUMN */
.elementor-shortcode .meta {
  grid-column: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.elementor-shortcode .meta li {
  margin-bottom: 6px;
}

/* Job Type Badge */
.elementor-shortcode .job-type {
  background: #ecfeff;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

/* Posted Date */
.elementor-shortcode .date {
  font-size: 12px;
  color: #9ca3af;
}


@media (max-width: 768px) {
  .elementor-shortcode li.job_listing {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .elementor-shortcode .company_logo {
    display: none;
  }

  .elementor-shortcode .meta {
    text-align: left;
    margin-top: 10px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ee87a48 *//* =========================================
   RESET CONFLICTS
========================================= */

.job_listings li.job_listing {
  display: block !important;
  padding: 0 !important;
  margin-bottom: 20px;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* =========================================
   CARD CONTAINER
========================================= */

.job_listings li.job_listing > a,
.job_listings li.job_listing {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 26px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.job_listings li.job_listing:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #6366f1;
}

/* =========================================
   FLEX LAYOUT (SAFE)
========================================= */

.job_listings li.job_listing {
  display: flex !important;
  align-items: center;
  gap: 20px;
}

/* =========================================
   COMPANY LOGO
========================================= */

.job_listings .company_logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.job_listings .company_logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: #f9fafb;
  padding: 6px;
}

/* =========================================
   MAIN CONTENT
========================================= */

.job_listings .position {
  flex: 1;
}

.job_listings .job_listing-title a {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.job_listings .job_listing-title a:hover {
  color: #6366f1;
}

.job_listings .company {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.job_listings .location {
  font-size: 13px;
  color: #374151;
  margin-top: 6px;
}

/* =========================================
   META RIGHT SIDE
========================================= */

.job_listings .meta {
  text-align: right;
  flex-shrink: 0;
}

.job_listings .job-type {
  background: #2563EB;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-block !important;
}

.job_listings .date {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #9ca3af;
}

/* =========================================
   FILTER BAR
========================================= */

.job_filters {
  background: #f9fafb;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

/* =========================================
   CRITICAL FIX: FORCE FULL WIDTH JOB CARD
   Using attribute .elementor-3939 .elementor-element.elementor-element-ee87a48s to override inline styles
========================================= */

.job_listings li.job_listing[style],
.job_listings li.job_listing {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
}

.job_listings li.job_listing > a[style],
.job_listings li.job_listing > a {
  display: flex !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  box-sizing: border-box !important;
}

/* Target any element with inline styles */
.job_listings li.job_listing[style*="width"],
.job_listings li.job_listing > a[style*="width"] {
  width: 100% !important;
  max-width: 100% !important;
}

/* Ensure parent containers don't constrain */
.job_listings,
.job_listings ul.job_listings,
ul.job_listings {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Force all children to respect container width */
.job_listings li.job_listing > * {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* =========================================================
   WP JOB MANAGER – MOBILE RESPONSIVE FIX
========================================================= */
@media (max-width: 767px) {

  /* ================= CRITICAL: OVERRIDE ANY INLINE STYLES ================= */
  
  .job_listings li.job_listing[style],
  .job_listings li.job_listing[style*="width"],
  .job_listings li.job_listing {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: 1 1 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .job_listings li.job_listing > a[style],
  .job_listings li.job_listing > a[style*="width"],
  .job_listings li.job_listing > a {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: 1 1 100% !important;
  }

  /* ================= FILTER SECTION ================= */

  .job_filters {
    padding: 16px !important;
    border-radius: 16px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .job_filters .search_jobs {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px;
    width: 100% !important;
  }

  /* Inputs */
  .job_filters input[type="text"],
  .job_filters input[type="search"],
  .job_filters select {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 12px;
    font-size: 14px;
    box-sizing: border-box !important;
  }

  /* Remote checkbox */
  .job_filters .search_remote_position {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    font-size: 14px;
    margin: 6px 0;
  }

  .job_filters .search_remote_position input {
    margin: 0 !important;
  }

  /* Search button */
  .job_filters input[type="submit"],
  .job_filters button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box !important;
  }

  /* ================= JOB TYPE PILLS ================= */

  .job_types {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px;
    padding: 10px 0;
    width: 100% !important;
  }

  .job_types li {
    margin: 0 !important;
  }

  /* ================= JOB CARD ================= */

  .job_listings li.job_listing {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    background: transparent !important;
  }

  .job_listings li.job_listing > a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
  }

  /* Remove extra spacing from first child */
  .job_listings li.job_listing > a > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Reset flex that might be causing issues */
  .job_listings li.job_listing,
  .job_listings li.job_listing > a {
    flex-direction: initial !important;
    align-items: initial !important;
    gap: initial !important;
  }

  /* Logo */
  .job_listings .company_logo {
    width: 48px !important;
    height: 48px !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    display: block !important;
    float: none !important;
  }

  .job_listings .company_logo img {
    width: 48px !important;
    height: 48px !important;
    display: block !important;
    border-radius: 8px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Hide logo if it's causing spacing issues */
  .job_listings li.job_listing > a > .company_logo:empty {
    display: none !important;
  }

  /* Position container */
  .job_listings .position {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    clear: both !important;
    margin-bottom: 12px !important;
  }

  /* Title */
  .job_listings .position h3,
  .job_listings .job_listing-title,
  .job_listings .job_listing-title a {
    font-size: 17px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    margin: 0 0 8px 0 !important;
    display: block !important;
    width: 100% !important;
    word-wrap: break-word !important;
    color: #111827 !important;
  }

  /* Company */
  .job_listings .company,
  .job_listings .company strong,
  .job_listings .company a {
    font-size: 14px !important;
    color: #6b7280 !important;
    display: block !important;
    margin: 0 0 6px 0 !important;
    font-weight: 500 !important;
  }

  /* Location */
  .job_listings .location,
  .job_listings div.location {
    font-size: 13px !important;
    color: #374151 !important;
    display: block !important;
    margin: 0 0 12px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    text-align: left !important;
  }

  .job_listings .location:before {
    content: "📍 ";
    margin-right: 4px;
  }

  /* Meta section */
  .job_listings .meta {
    display: block !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid #f3f4f6 !important;
    clear: both !important;
  }

  /* Job type badge */
  .job_listings .job-type {
    display: inline-block !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    margin: 0 8px 8px 0 !important;
    font-weight: 600 !important;
    background: #2563EB !important;
    color: #ffffff !important;
  }

  /* Posted time */
  .job_listings .date {
    font-size: 12px !important;
    margin: 0 !important;
    display: block !important;
    color: #9ca3af !important;
  }

  .job_listings .date:before {
    content: "🕒 ";
    margin-right: 4px;
  }

  /* Hover effect on mobile */
  .job_listings li.job_listing:active > a {
    background: #f9fafb !important;
    transform: scale(0.98);
  }

  /* Force all elements to be block and full width */
  .job_listings li.job_listing > a > *,
  .job_listings li.job_listing > * {
    max-width: 100% !important;
  }

  /* Force box-sizing everywhere */
  .job_listings,
  .job_listings *,
  .job_filters,
  .job_filters * {
    box-sizing: border-box !important;
  }
  
  /* Override any float or positioning */
  .job_listings li.job_listing * {
    float: none !important;
    position: relative !important;
  }
}

/* =========================================================
   TABLET RESPONSIVENESS (768px - 1024px)
   Override inline styles on tablets too
========================================================= */
@media (min-width: 768px) and (max-width: 1024px) {
  
  .job_listings li.job_listing[style],
  .job_listings li.job_listing[style*="width"],
  .job_listings li.job_listing,
  .job_listings li.job_listing > a[style],
  .job_listings li.job_listing > a[style*="width"],
  .job_listings li.job_listing > a {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .job_listings li.job_listing {
    padding: 18px 20px !important;
  }

  .job_listings .company_logo {
    width: 48px;
    height: 48px;
  }

  .job_listings .company_logo img {
    width: 48px;
    height: 48px;
  }
}/* End custom CSS */