/*** 

====================================================================
    career   banner section
====================================================================

 ***/
.btn-mail {
  background: #0556a2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #0556a2;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn-mail:hover {
  background: #fff;
  color: #0556a2;
  border: 1px solid #0556a2;
}

.careerPage_banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ====================================================================
   Job Overview Card
   ==================================================================== */

.job-overview-Container {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

/* Tag pills */
.job-overview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.job-overview__tag {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 4px 12px;
  line-height: 1;
}

/* Divider */
.border-top__divider {
  border-top: 1px dashed #dde3ed;
}

.border-bottom__divider {
  border-bottom: 1px dashed #dde3ed;
}

/* Row list */
.job-overview__rows {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.job-overview__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f8;
}

.job-overview__row:last-child {
  border-bottom: none;
}

/* Label side */
.job-overview__row-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.job-overview__row-label i {
  font-size: 17px;
  flex-shrink: 0;
}

/* Value side */
.job-overview__row-value {
  font-weight: 600;
  text-align: right;
}


/* CTA button */
.job-overview__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
}