:root {
  --color-white: #fff;
  --color-blue: #1b9fe0;
  --bg-blue: #1b9fe0;
  --bg-blue-hover: #188fc9;
  --color-orange: #f29015;
  --bg-orange: #f29015;
  --bg-orange-hover: #d87c0c;
  --color-gray: #000000;
  --color-title: #000000;
  --radius: 24px;
}

/* ===== Career Hero Section Start ===== */
.career-hero-section {
  position: relative;
  min-height: 60vh;
  display: block;
  padding: 0 0 5rem 0;
  margin: 0;
  overflow: visible;
  border-bottom-right-radius: 8rem;
  margin-bottom: 5rem;
}
.hero-atas-title {
  position: absolute;
  top: 6rem;
  left: 3rem;
  width: 180px;
  height: 80px;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
}
.career-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.career-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-bottom-right-radius: 8rem;
}
.career-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #359ed9 0%,
    rgba(53, 158, 217, 0.95) 50%,
    rgba(53, 158, 217, 0.7) 60%,
    rgba(53, 158, 217, 0) 100%
  );
  opacity: 0.7;
  pointer-events: none;
  border-bottom-right-radius: 8rem;
}
.career-hero-content-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 3rem 6rem;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: start;
  z-index: 3;
  pointer-events: none;
}
.career-hero-content {
  max-width: 600px;
  color: #fff;
  text-align: left;
  z-index: 3;
  pointer-events: auto;
}
.career-hero-title {
  margin-bottom: 1rem;
  color: #fff;
}
.career-hero-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0;
}

.career-filter-card {
  position: relative;
}

.career-dalam-filter {
  position: absolute;
  top: 0;
  left: 18rem;
  width: 180px;
  height: auto;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
.career-dalam-table {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: auto;
  z-index: -2;
  opacity: 0.9;
  pointer-events: none;
}

.career-visible {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5rem;
  width: 100%;
  z-index: 10;
  background: var(--bg-blue);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-left: 4rem;
  margin-right: 4rem;
  padding: 2rem 3rem 1.5rem 3rem;
  max-width: unset;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: visible;
}
.career-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.career-list td:last-child {
    text-align: right; 
    white-space: 
    width: 1%; 
}

.career-filter-count {
  z-index: 3;
}
.career-filter-link {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  gap: 2rem;
}
.career-filter-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
}

.career-filter-search {
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  width: 100%;
  max-width: 320px;
  border: none;
  font-size: 1rem;
  outline: none;
  margin-right: 0.5rem;
  z-index: 3;
}

.career-filter-btn {
  background: var(--color-orange, #f29015);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.career-filter-btn:hover {
  background: #d87c0c;
}

@media screen and (max-width: 768px) {
  .career-hero-section {
    border-bottom-right-radius: 3rem;
    padding-bottom: 3rem;
  }
  .career-hero-content-wrapper {
    top: 50%;
    padding: 3rem 2rem;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 200px;
    transform: translateY(-40%);
  }
  .career-visible {
    padding: 2rem 2rem;
    margin-left: auto;
    margin-right: auto;
    bottom: -20rem;
  }
  .career-list-wrapper {
    margin-top: 20rem;
  }
  .career-dalam-filter {
    display: none;
  }

  .career-filter-form {
    flex-direction: column;
    gap: 0.7rem;
  }
  .career-filter-search,
  .career-filter-select,
  .career-filter-btn {
    width: 100%;
    max-width: 100%;
  }
  .career-atas {
    width: 60px;
  }
  .hero-atas-title {
    left: 0;
  }
}
/* ===== Career List Table Start ===== */
.career-detail-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--color-blue, #1b9fe0);
  color: #fff;
  border-radius: 2rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.career-title {
  color: #505050;
  font-weight: 500!important;
}

.career-table-data {
  font-weight: 500!important;
  font-size: 18px !important;
}

.career-description {
  font-size: 14px !important;
}

@media (max-width: 600px) {
  .career-description {
      font-size: 12px !important;
  }
}

.career-table-data {
  font-size: 16px !important;
}

.career-detail-btn:hover {
  background: var(--bg-blue-hover);
  color: #fff;
}


.career-list-wrapper {
  position: relative;
  width: 100%;
  padding: 2rem 4rem;
  overflow-x: auto;
}

.career-list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  z-index: 3;
  border-radius: var(--radius);
}



.career-row {
  border-bottom: 1px solid #e5e5e5;
}

.career-list tr:last-child {
  border-bottom: none;
}
.career-list td {
  padding: 2rem 1rem 1.5rem 0;
  vertical-align: top;
}
.career-list h6 {
  margin-bottom: 0.5rem;
}
.career-list span {
  color: #888;
  font-size: 1rem;
  display: block;
}

.career-list td {
  word-break: break-word;
  white-space: normal;
}

@media (max-width: 900px) {
  .career-list {
    min-width: 500px;
  }
  .career-list p {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .career-list {
    min-width: 760px;
  }
  .career-list-wrapper {
    padding: 2rem 1rem;
  }
  .career-list p {
    font-size: 14px !important;
  }
}
/* ===== Career Hero Section End ===== */

/* ===== Career Detail Section Start ===== */
.career-detail-section {
  padding: 2rem 6rem;
  border-radius: var(--radius);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom-right-radius: 8rem;
  position: relative;
}
.career-detail-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.career-detail-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.career-detail-title {
  color: #fff;
  margin-bottom: 0.2rem;
}
.career-detail-company {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.career-detail-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1rem;
  flex-wrap: wrap;
}
.career-detail-meta i {
  margin-right: 0.3rem;
  color: #fff;
}
.dot-separator {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0.2rem;
}
.career-detail-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}
.career-detail-apply-btn {
  background: var(--bg-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 2.5rem;
  display: inline-block;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.career-detail-apply-btn:hover {
  background: var(--bg-orange-hover);
  transition: all 0.3s;
}

.career-detail-share-btn:hover {
  background: var(--bg-blue);
  color: #fff;
}
.career-detail-divider {
  border: none;
  border-top: 1px solid var(--color-gray);
  margin: 0.5rem 0 0.5rem 0;
}
.career-detail-desc {
  margin-top: 0.5rem;
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
}
.career-detail-desc-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-title);
  margin-bottom: 1rem;
}
.career-detail-desc-list {
  color: var(--color-gray);
  font-size: 16px;
  padding-left: 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.career-detail-banner-header {
  width: 100%;
  position: relative;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  height: 60vh;
  display: flex;
}
.career-detail-bawah-kiri {
  position: absolute;
  bottom: -4rem;
  height: 360px;
  left: 0;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}
.career-detail-atas-kanan {
  position: absolute;
  top: -4rem;
  height: 260px;
  width: auto;
  right: 0;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}
.hero-detail-career-left {
  position: absolute;
  bottom: -8rem;
  left: -12rem;
  width: 30%;
  z-index: 4;
  opacity: 1;
  pointer-events: none;
}
.career-detail-banner-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-bottom-right-radius: 8rem;
}
.career-detail-header-content {
  padding: 2rem 6rem;
  padding-top: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: left;
  border-bottom-right-radius: 8rem;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .career-detail-section {
    padding: 1rem 2rem;
  }

  .career-detail-header-content {
    padding: 1rem 2rem !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
  }
}
