.career-banner-section {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  padding: 0 40px 50px;
}

.career-main-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* padding: 0 20px; */
  display: flex;
  flex-direction: column;
}

/* 1. Breadcrumb */
.career-breadcrumb {
  font-family: 'InterFace', sans-serif;
  /* Assumed standard font */
  font-size: 14px;
  color: #4A4E50;
  margin-top: 20px;
  margin-bottom: 20px;
}

.career-breadcrumb span {
  vertical-align: middle;
}

/* 2. Image */
.career-banner-image {
  width: 100%;
  margin-bottom: 40px;
  height: 450px;
}

.career-banner-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 3. Content */
.career-content {
  width: 100%;
}

/* Title */
.career-title {
  font-family: 'InterFace Thin', sans-serif;
  font-weight: 400;
  /* As requested */
  font-style: normal;
  font-size: 72px;
  line-height: 87px;
  letter-spacing: 1px;
  color: #212F2A;
  margin-bottom: 20px;
  vertical-align: middle;
}

.career-title em {
  font-style: italic;
  /* Ensure font weight matches if needed, typically 'em' takes parent weight */
}

/* Subtext */
.career-subtext {
  font-family: 'InterFace', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: rgba(51, 38, 36, 0.75);
  /* Assuming same as title or dark text */
  margin-bottom: 40px;
  letter-spacing: 0.2px;
  vertical-align: middle;
}

/* Label */
.career-role-label {
  font-family: 'InterFace', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #4A4E50;
  margin-bottom: 20px;
  vertical-align: middle;
}

/* Cards */
.career-role-cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.career-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  background: #E5E5DA;
  box-shadow: 0px 5.33px 18.67px 0px #0000001A;
  text-decoration: none;
  padding: 25px 30px;
  transition: none;
  flex: 1;
  gap: 15px;
  transition: all 0.3s ease-in-out;
}

.career-card .briefcase-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.career-card p {
  font-family: 'InterFace', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21.43px;
  line-height: 34px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #211709;
  margin: 0;
  text-align: left;
  flex: 1;
  padding: 20px 0 0 0 ;
}

.career-card .arrow-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.career-card:hover {
  background: #bbbba1;
}

/* Responsive */
@media (max-width: 1024px) {
  .career-banner-section {
    padding: 0 25px 50px;
  }

  .career-title {
    font-size: 40px;
    line-height: 50px;
  }

  .career-role-cards {
    flex-direction: column;
    gap: 15px;
  }

  .career-card {
    width: 100%;
  }
}