﻿/* =========================================================
   JOBS PAGE
========================================================= */

:root {
  --jobs-orange: #ef8500;
  --jobs-orange-dark: #dc3512;

  --jobs-teal: #169db4;
  --jobs-teal-light: #31b7c5;

  --jobs-blue: #0d5da7;

  --jobs-navy: #090943;
  --jobs-heading: #0b0b43;

  --jobs-text: #666879;
  --jobs-border: #e7e8ef;

  --jobs-white: #ffffff;
  --jobs-surface: #f7f8fc;

  --jobs-success: #047857;
  --jobs-success-light: #ecfdf5;

  --jobs-shadow:
    0 18px 42px rgba(9, 9, 67, 0.1);

  --jobs-transition: 0.3s ease;
}


/* =========================================================
   COMMON
========================================================= */

.jobs-container {
  width: min(1240px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   JOBS HERO / BREADCRUMB
========================================================= */

.jobs-hero {
  position: relative;

  min-height: 250px;

  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 48px 0;

  color: var(--jobs-white);

  text-align: center;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(22, 157, 180, 0.26),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(239, 133, 0, 0.17),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      #050531,
      var(--jobs-navy),
      #0b3d6d
    );
}

.jobs-hero::before,
.jobs-hero::after {
  content: "";

  position: absolute;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}

.jobs-hero::before {
  width: 260px;
  height: 260px;

  top: -150px;
  left: -90px;
}

.jobs-hero::after {
  width: 330px;
  height: 330px;

  right: -160px;
  bottom: -230px;
}

.jobs-hero .jobs-container {
  position: relative;
  z-index: 1;

  max-width: 850px;
}

.jobs-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin: 0 0 12px;

  color: var(--jobs-orange);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jobs-eyebrow::before {
  content: "";

  width: 35px;
  height: 3px;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      var(--jobs-orange),
      var(--jobs-teal)
    );
}

.jobs-hero h1 {
  margin: 0 0 15px;

  color: var(--jobs-white);

  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.jobs-hero p {
  max-width: 740px;

  margin: 0 auto;

  color:
    rgba(255, 255, 255, 0.84);

  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   JOBS SECTION
========================================================= */

.jobs-section {
  padding-top: 80px;
  padding-bottom: 90px;

  background: var(--jobs-surface);
}

.jobs-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 42px;
}

.jobs-section-heading > div:first-child {
  max-width: 760px;
}

.jobs-kicker {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin: 0 0 13px;

  color: var(--jobs-orange-dark);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jobs-kicker::before {
  content: "";

  width: 35px;
  height: 3px;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      var(--jobs-orange),
      var(--jobs-teal)
    );
}

.jobs-section-heading h2 {
  margin: 0;

  color: var(--jobs-heading);

  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.jobs-count {
  flex-shrink: 0;

  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 16px;

  border:
    1px solid rgba(239, 133, 0, 0.28);

  border-radius: 50px;

  color: var(--jobs-orange-dark);

  background:
    rgba(239, 133, 0, 0.08);

  font-size: 13px;
  font-weight: 800;
}


/* =========================================================
   JOBS GRID
========================================================= */

.jobs-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 25px;
}


/* =========================================================
   JOB CARD
========================================================= */

.job-card {
  min-width: 0;
  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 29px 25px;

  border:
    1px solid var(--jobs-border);

  border-radius: 16px;

  background: var(--jobs-white);

  box-shadow:
    0 12px 30px rgba(9, 9, 67, 0.055);

  transition:
    border-color var(--jobs-transition),
    box-shadow var(--jobs-transition),
    transform var(--jobs-transition);
}

.job-card:hover {
  border-color:
    rgba(239, 133, 0, 0.4);

  box-shadow: var(--jobs-shadow);

  transform: translateY(-6px);
}


/* =========================================================
   JOB CARD TOP
========================================================= */

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 14px;
}

.job-card-icon {
  width: 59px;
  height: 59px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  color: #fff;

  background: linear-gradient(
    135deg,
    #169db4,
    #0d5da7
  );

  font-size: 21px;

  box-shadow:
    0 11px 24px rgba(13,93,167,.22);
}


.job-card:nth-child(even)
.job-card-icon {
  background:
    linear-gradient(
      135deg,
      var(--jobs-teal),
      var(--jobs-blue)
    );

  box-shadow:
    0 11px 24px rgba(22, 157, 180, 0.22);
}


/* =========================================================
   JOB STATUS TAG
========================================================= */

.job-card-tag {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 7px 10px;

  border:
    1px solid #a7f3d0;

  border-radius: 50px;

  color: var(--jobs-success);

  background: var(--jobs-success-light);

  font-size: 12px;
  font-weight: 800;
}

.job-card-tag i {
  font-size: 11px;
}


/* =========================================================
   JOB CARD CONTENT
========================================================= */
.job-card-code {
  margin: 22px 0 7px;

  color: #dc3512;  

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* REMOVE THIS */

/* .job-card:nth-child(even)
.job-card-code{
    color:var(--jobs-teal);
} */

.job-card h3 {
  margin: 0;

  color: var(--jobs-heading);

  font-size: 19px;
  line-height: 1.35;
}

.job-card-summary {
  display: -webkit-box;

  min-height: 96px;

  overflow: hidden;

  margin: 14px 0 20px;

  color: var(--jobs-text);

  font-size: 14px;
  line-height: 1.72;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}


/* =========================================================
   JOB META INFORMATION
========================================================= */

.job-card-meta {
  display: grid;

  gap: 11px;

  margin: 0 0 23px;
}

.job-card-meta div {
  min-width: 0;

  display: grid;

  grid-template-columns:
    19px
    minmax(0, 1fr);

  align-items: flex-start;

  gap: 9px;

  color: #545568;

  font-size: 13px;
  line-height: 1.5;
}

.job-card-meta i{
    width:18px;

    color:#169db4;

    margin-top:3px;

    text-align:center;
}

/* REMOVE THIS */

.job-card:nth-child(even)
.job-card-meta i{
   color:var(--jobs-orange);
}

.job-card-meta span {
  min-width: 0;

  overflow-wrap: anywhere;
}


/* =========================================================
   JOB CARD BUTTONS
========================================================= */

.job-card-actions {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-top: auto;
}

.job-read-more,
.job-quick-apply {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 12px;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform var(--jobs-transition),
    box-shadow var(--jobs-transition),
    background var(--jobs-transition),
    color var(--jobs-transition),
    border-color var(--jobs-transition);
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.job-read-more {
  flex: 1;

  color: var(--jobs-white);

  background:
    linear-gradient(
      135deg,
      var(--jobs-orange),
      var(--jobs-orange-dark)
    );

  box-shadow:
    0 8px 20px rgba(220, 53, 18, 0.2);
}

.job-read-more:hover {
  color: var(--jobs-white);

  box-shadow:
    0 16px 34px rgba(220, 53, 18, 0.34);

  transform: translateY(-3px);
}

.job-read-more i {
  transition:
    transform var(--jobs-transition);
}

.job-read-more:hover i {
  transform: translateX(4px);
}


/* =========================================================
   APPLY BUTTON
========================================================= */

.job-quick-apply {
  flex-shrink: 0;

  color: var(--jobs-orange-dark);

  border:
    1px solid rgba(239, 133, 0, 0.55);

  background:
    rgba(239, 133, 0, 0.06);
}

.job-quick-apply:hover {
  color: var(--jobs-white);

  border-color: var(--jobs-orange-dark);

  background:
    linear-gradient(
      135deg,
      var(--jobs-orange),
      var(--jobs-orange-dark)
    );

  box-shadow:
    0 12px 26px rgba(220, 53, 18, 0.24);

  transform: translateY(-3px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.jobs-empty {
  padding: 70px 24px;

  text-align: center;
}

.jobs-empty i {
  width: 70px;
  height: 70px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  color: var(--jobs-white);

  background:
    linear-gradient(
      135deg,
      var(--jobs-orange),
      var(--jobs-orange-dark)
    );

  font-size: 28px;
}

.jobs-empty h3 {
  margin: 20px 0 7px;

  color: var(--jobs-heading);

  font-size: 21px;
}

.jobs-empty p {
  margin: 0;

  color: var(--jobs-text);

  font-size: 15px;
}


/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (max-width: 1100px) {
  .jobs-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .job-card-summary {
    min-height: auto;
  }
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 850px) {
  .jobs-section {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .jobs-section-heading {
    align-items: flex-start;
    flex-direction: column;

    gap: 20px;
  }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 650px) {
  .jobs-container {
    width: calc(100% - 30px);
  }

  .jobs-hero {
    min-height: auto;

    padding: 42px 0;
  }

  .jobs-hero h1 {
    font-size: 1.75rem;
  }

  .jobs-hero p {
    font-size: 15px;
  }

  .jobs-section {
    padding-top: 55px;
    padding-bottom: 65px;
  }

  .jobs-section-heading {
    margin-bottom: 30px;
  }

  .jobs-section-heading h2 {
    font-size: 1.65rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    padding: 25px 20px;
  }

  .job-card-summary {
    min-height: auto;
  }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .job-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .job-read-more,
  .job-quick-apply {
    width: 100%;
  }

  .job-card-top {
    gap: 10px;
  }

  .job-card-icon {
    width: 52px;
    height: 52px;

    font-size: 19px;
  }

  .job-card-tag {
    padding: 6px 9px;

    font-size: 11px;
  }
}


/* =========================================================
   LOADING
========================================================= */
.jobs-loading[hidden] {
    display: none !important;
}

.jobs-grid[hidden] {
    display: none !important;
}

.jobs-empty[hidden] {
    display: none !important;
}

.jobs-overlay[hidden],
.jobs-success-overlay[hidden] {
    display: none !important;
}
/* .jobs-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--jobs-text);
} */

.jobs-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(22, 157, 180, 0.18);
  border-top-color: var(--jobs-teal);
  border-radius: 50%;
  animation: jobsSpin 0.8s linear infinite;
}

@keyframes jobsSpin {
  to { transform: rotate(360deg); }
}


/* =========================================================
   DRAWER / POPUP
========================================================= */

.jobs-overlay,
.jobs-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: flex-end;
  background: rgba(5, 5, 35, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.jobs-overlay.active,
.jobs-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.jobs-drawer {
  width: min(520px, 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--jobs-white);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.jobs-overlay.active .jobs-drawer {
  transform: translateX(0);
}

.jobs-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--jobs-border);
}

.jobs-drawer-kicker {
  margin: 0 0 6px;
  color: var(--jobs-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jobs-drawer-header h2 {
  margin: 0;
  color: var(--jobs-heading);
  font-size: 1.55rem;
  line-height: 1.25;
}

.jobs-drawer-subtitle {
  margin: 8px 0 0;
  color: var(--jobs-text);
  font-size: 14px;
}

.jobs-drawer-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--jobs-orange);
  cursor: pointer;
  transition: 0.3s ease;
}

.jobs-drawer-close:hover {
  background: var(--jobs-navy);
  transform: rotate(90deg);
}

.jobs-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.jobs-drawer-footer {
  padding: 18px 28px 28px;
  border-top: 1px solid var(--jobs-border);
}

.jobs-drawer-footer.inline {
  display: flex;
  gap: 12px;
  border-top: 0;
  padding-top: 0;
}

.jobs-drawer-footer.inline .job-read-more,
.jobs-drawer-footer.inline .job-quick-apply {
  flex: 1;
}

.jobs-detail-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 14px;
  background: var(--jobs-surface);
}

.jobs-detail-meta div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #545568;
  font-size: 14px;
}

.jobs-detail-meta i {
  color: var(--jobs-teal);
  margin-top: 2px;
}

.jobs-detail-block {
  margin-bottom: 22px;
}

.jobs-detail-block h3 {
  margin: 0 0 10px;
  color: var(--jobs-heading);
  font-size: 16px;
}

.jobs-detail-block p {
  margin: 0;
  color: var(--jobs-text);
  line-height: 1.75;
  white-space: pre-wrap;
}


/* =========================================================
   APPLY FORM
========================================================= */

.jobs-apply-form {
  display: grid;
  gap: 18px;
}

.jobs-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--jobs-heading);
  font-size: 14px;
  font-weight: 700;
}

.jobs-form-group label span {
  color: var(--jobs-orange-dark);
}

.jobs-form-group input,
.jobs-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--jobs-border);
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jobs-form-group input:focus,
.jobs-form-group textarea:focus {
  outline: none;
  border-color: var(--jobs-orange);
  box-shadow: 0 0 0 3px rgba(239, 133, 0, 0.15);
}

.jobs-form-message {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.jobs-form-message.error {
  color: #dc3545;
}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.jobs-success-overlay {
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.jobs-success-popup {
  width: min(420px, 100%);
  padding: 36px 28px;
  border-radius: 18px;
  background: var(--jobs-white);
  text-align: center;
  box-shadow: 0 24px 60px rgba(9, 9, 67, 0.18);
  transform: scale(0.92);
  transition: transform 0.32s ease;
}

.jobs-success-overlay.active .jobs-success-popup {
  transform: scale(1);
}

.jobs-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--jobs-success);
  background: var(--jobs-success-light);
  font-size: 34px;
}

.jobs-success-popup h3 {
  margin: 0 0 10px;
  color: var(--jobs-heading);
  font-size: 1.5rem;
}

.jobs-success-popup p {
  margin: 0 0 22px;
  color: var(--jobs-text);
  line-height: 1.6;
}

.jobs-success-popup .job-read-more {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 650px) {
  .jobs-drawer-header,
  .jobs-drawer-body,
  .jobs-drawer-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}




















/* =========================================================
   JOBS PAGE
========================================================= */

/* :root {
  --jobs-orange: #ef8500;
  --jobs-orange-dark: #dc3512;

  --jobs-teal: #169db4;
  --jobs-teal-light: #31b7c5;

  --jobs-blue: #0d5da7;

  --jobs-navy: #090943;
  --jobs-heading: #0b0b43;

  --jobs-text: #666879;
  --jobs-border: #e7e8ef;

  --jobs-white: #ffffff;
  --jobs-surface: #f7f8fc;

  --jobs-success: #047857;
  --jobs-success-light: #ecfdf5;

  --jobs-shadow:
    0 18px 42px rgba(9, 9, 67, 0.1);

  --jobs-transition: 0.3s ease;
}


.jobs-container {
  width: min(1240px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;
}




.jobs-hero {
  position: relative;

  min-height: 250px;

  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 48px 0;

  color: var(--jobs-white);

  text-align: center;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(22, 157, 180, 0.26),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(239, 133, 0, 0.17),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      #050531,
      var(--jobs-navy),
      #0b3d6d
    );
}

.jobs-hero::before,
.jobs-hero::after {
  content: "";

  position: absolute;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}

.jobs-hero::before {
  width: 260px;
  height: 260px;

  top: -150px;
  left: -90px;
}

.jobs-hero::after {
  width: 330px;
  height: 330px;

  right: -160px;
  bottom: -230px;
}

.jobs-hero .jobs-container {
  position: relative;
  z-index: 1;

  max-width: 850px;
}

.jobs-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin: 0 0 12px;

  color: var(--jobs-orange);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jobs-eyebrow::before {
  content: "";

  width: 35px;
  height: 3px;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      var(--jobs-orange),
      var(--jobs-teal)
    );
}

.jobs-hero h1 {
  margin: 0 0 15px;

  color: var(--jobs-white);

  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.jobs-hero p {
  max-width: 740px;

  margin: 0 auto;

  color:
    rgba(255, 255, 255, 0.84);

  font-size: 17px;
  line-height: 1.7;
}


.jobs-section {
  padding-top: 80px;
  padding-bottom: 90px;

  background: var(--jobs-surface);
}

.jobs-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 42px;
}

.jobs-section-heading > div:first-child {
  max-width: 760px;
}

.jobs-kicker {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin: 0 0 13px;

  color: var(--jobs-orange-dark);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jobs-kicker::before {
  content: "";

  width: 35px;
  height: 3px;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      var(--jobs-orange),
      var(--jobs-teal)
    );
}

.jobs-section-heading h2 {
  margin: 0;

  color: var(--jobs-heading);

  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.jobs-count {
  flex-shrink: 0;

  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 16px;

  border:
    1px solid rgba(239, 133, 0, 0.28);

  border-radius: 50px;

  color: var(--jobs-orange-dark);

  background:
    rgba(239, 133, 0, 0.08);

  font-size: 13px;
  font-weight: 800;
}


.jobs-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 25px;
}


.job-card {
  min-width: 0;
  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 29px 25px;

  border:
    1px solid var(--jobs-border);

  border-radius: 16px;

  background: var(--jobs-white);

  box-shadow:
    0 12px 30px rgba(9, 9, 67, 0.055);

  transition:
    border-color var(--jobs-transition),
    box-shadow var(--jobs-transition),
    transform var(--jobs-transition);
}

.job-card:hover {
  border-color:
    rgba(239, 133, 0, 0.4);

  box-shadow: var(--jobs-shadow);

  transform: translateY(-6px);
}


.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 14px;
}

.job-card-icon {
  width: 59px;
  height: 59px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  color: #fff;

  background: linear-gradient(
    135deg,
    #169db4,
    #0d5da7
  );

  font-size: 21px;

  box-shadow:
    0 11px 24px rgba(13,93,167,.22);
}


.job-card:nth-child(even)
.job-card-icon {
  background:
    linear-gradient(
      135deg,
      var(--jobs-teal),
      var(--jobs-blue)
    );

  box-shadow:
    0 11px 24px rgba(22, 157, 180, 0.22);
}


.job-card-tag {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 7px 10px;

  border:
    1px solid #a7f3d0;

  border-radius: 50px;

  color: var(--jobs-success);

  background: var(--jobs-success-light);

  font-size: 12px;
  font-weight: 800;
}

.job-card-tag i {
  font-size: 11px;
}

.job-card-code {
  margin: 22px 0 7px;

  color: #dc3512;  

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.job-card h3 {
  margin: 0;

  color: var(--jobs-heading);

  font-size: 19px;
  line-height: 1.35;
}

.job-card-summary {
  display: -webkit-box;

  min-height: 96px;

  overflow: hidden;

  margin: 14px 0 20px;

  color: var(--jobs-text);

  font-size: 14px;
  line-height: 1.72;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}




.job-card-meta {
  display: grid;

  gap: 11px;

  margin: 0 0 23px;
}

.job-card-meta div {
  min-width: 0;

  display: grid;

  grid-template-columns:
    19px
    minmax(0, 1fr);

  align-items: flex-start;

  gap: 9px;

  color: #545568;

  font-size: 13px;
  line-height: 1.5;
}

.job-card-meta i{
    width:18px;

    color:#169db4;

    margin-top:3px;

    text-align:center;
}


.job-card:nth-child(even)
.job-card-meta i{
   color:var(--jobs-orange);
}

.job-card-meta span {
  min-width: 0;

  overflow-wrap: anywhere;
}



.job-card-actions {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-top: auto;
}

.job-read-more,
.job-quick-apply {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 12px;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform var(--jobs-transition),
    box-shadow var(--jobs-transition),
    background var(--jobs-transition),
    color var(--jobs-transition),
    border-color var(--jobs-transition);
}


.job-read-more {
  flex: 1;

  color: var(--jobs-white);

  background:
    linear-gradient(
      135deg,
      var(--jobs-orange),
      var(--jobs-orange-dark)
    );

  box-shadow:
    0 8px 20px rgba(220, 53, 18, 0.2);
}

.job-read-more:hover {
  color: var(--jobs-white);

  box-shadow:
    0 16px 34px rgba(220, 53, 18, 0.34);

  transform: translateY(-3px);
}

.job-read-more i {
  transition:
    transform var(--jobs-transition);
}

.job-read-more:hover i {
  transform: translateX(4px);
}


.job-quick-apply {
  flex-shrink: 0;

  color: var(--jobs-orange-dark);

  border:
    1px solid rgba(239, 133, 0, 0.55);

  background:
    rgba(239, 133, 0, 0.06);
}

.job-quick-apply:hover {
  color: var(--jobs-white);

  border-color: var(--jobs-orange-dark);

  background:
    linear-gradient(
      135deg,
      var(--jobs-orange),
      var(--jobs-orange-dark)
    );

  box-shadow:
    0 12px 26px rgba(220, 53, 18, 0.24);

  transform: translateY(-3px);
}



.jobs-empty {
  padding: 70px 24px;

  text-align: center;
}

.jobs-empty i {
  width: 70px;
  height: 70px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  color: var(--jobs-white);

  background:
    linear-gradient(
      135deg,
      var(--jobs-orange),
      var(--jobs-orange-dark)
    );

  font-size: 28px;
}

.jobs-empty h3 {
  margin: 20px 0 7px;

  color: var(--jobs-heading);

  font-size: 21px;
}

.jobs-empty p {
  margin: 0;

  color: var(--jobs-text);

  font-size: 15px;
}


@media (max-width: 1100px) {
  .jobs-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .job-card-summary {
    min-height: auto;
  }
}


@media (max-width: 850px) {
  .jobs-section {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .jobs-section-heading {
    align-items: flex-start;
    flex-direction: column;

    gap: 20px;
  }
}

@media (max-width: 650px) {
  .jobs-container {
    width: calc(100% - 30px);
  }

  .jobs-hero {
    min-height: auto;

    padding: 42px 0;
  }

  .jobs-hero h1 {
    font-size: 1.75rem;
  }

  .jobs-hero p {
    font-size: 15px;
  }

  .jobs-section {
    padding-top: 55px;
    padding-bottom: 65px;
  }

  .jobs-section-heading {
    margin-bottom: 30px;
  }

  .jobs-section-heading h2 {
    font-size: 1.65rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    padding: 25px 20px;
  }

  .job-card-summary {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .job-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .job-read-more,
  .job-quick-apply {
    width: 100%;
  }

  .job-card-top {
    gap: 10px;
  }

  .job-card-icon {
    width: 52px;
    height: 52px;

    font-size: 19px;
  }

  .job-card-tag {
    padding: 6px 9px;

    font-size: 11px;
  }
} */
