/* POJO Job Detail — scoped to .pojo-job-detail */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

.pojo-job-detail {
  --red: #FE2740;
  --red-dark: #E11733;
  --red-soft: #FFE9EC;
  --navy: #282D54;
  --navy-deep: #20254a;
  --ink: #1c2138;
  --muted: #6b7190;
  --line: #e7e9f2;
  --line-soft: #eef0f7;
  --bg: #f5f6fb;
  --white: #fff;
  --green: #0a7d4d;
  --green-soft: #e3f6ec;
  --shadow-sm: 0 1px 2px rgba(20, 25, 60, .06);
  --shadow-md: 0 6px 22px rgba(28, 33, 84, .08);
  --shadow-lg: 0 18px 50px rgba(28, 33, 84, .14);
  --display: "Poppins", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.pojo-job-detail *,
.pojo-job-detail *::before,
.pojo-job-detail *::after {
  box-sizing: border-box;
}

.pojo-job-detail a {
  color: inherit;
  text-decoration: none;
}

.pojo-job-detail button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.pojo-job-detail h1,
.pojo-job-detail h2,
.pojo-job-detail h3,
.pojo-job-detail h4 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.01em;
}

.pojo-job-detail .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.pojo-job-detail .crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 20px 0 0;
}

.pojo-job-detail .crumb a:hover {
  color: var(--red);
}

.pojo-job-detail .crumb svg {
  width: 13px;
  height: 13px;
  color: #aab0cf;
}

.pojo-job-detail .crumb .here {
  color: var(--navy);
}

.pojo-job-detail .top-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 26px 30px;
  margin-top: 18px;
}

.pojo-job-detail .tc-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pojo-job-detail .tc-logo {
  width: 66px;
  height: 66px;
  border-radius: 15px;
  flex: none;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  background: #1f6fd6;
  box-shadow: 0 8px 20px rgba(31, 111, 214, .26);
  overflow: hidden;
}

.pojo-job-detail .tc-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pojo-job-detail .tc-body {
  flex: 1;
  min-width: 0;
}

.pojo-job-detail .badges {
  display: flex;
  gap: 8px;
  margin-bottom: 9px;
  flex-wrap: wrap;
}

.pojo-job-detail .badge {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pojo-job-detail .badge.new {
  color: var(--green);
  background: var(--green-soft);
}

.pojo-job-detail .badge.featured {
  color: #9a6a00;
  background: #fcefca;
}

.pojo-job-detail .badge.type {
  color: var(--navy);
  background: #e3e8fa;
}

.pojo-job-detail .tc-body h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.pojo-job-detail .tc-co {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: #39406a;
}

.pojo-job-detail .tc-co:hover {
  color: var(--red);
}

.pojo-job-detail .meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pojo-job-detail .mb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f5f6fc;
  border: 1px solid #eaedf7;
  border-radius: 9px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  color: #39406a;
}

.pojo-job-detail .mb svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex: none;
}

.pojo-job-detail .tc-cta {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  width: 210px;
}

.pojo-job-detail .tc-cta .btn-apply {
  margin-bottom: 0;
}

.pojo-job-detail .tc-mini {
  display: flex;
  gap: 9px;
  justify-content: center;
}

.pojo-job-detail .tc-mini .icon-btn {
  flex: 1;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid #dde2f3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b618a;
  transition: .14s;
}

.pojo-job-detail .tc-mini .icon-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.pojo-job-detail .tc-mini .icon-btn.on {
  background: var(--red-soft);
  border-color: var(--red);
  color: var(--red);
}

.pojo-job-detail .tc-mini .icon-btn.on svg {
  fill: currentColor;
}

.pojo-job-detail .job-detail-fav.is-loading,
.pojo-job-detail .job-detail-fav-link.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 760px) {
  .pojo-job-detail .tc-row {
    flex-wrap: wrap;
  }

  .pojo-job-detail .tc-cta {
    width: 100%;
  }
}

.pojo-job-detail .layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  padding: 26px 0 60px;
  align-items: start;
}

.pojo-job-detail .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.pojo-job-detail .card-pad {
  padding: 28px 30px;
}

.pojo-job-detail .main-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pojo-job-detail .card-title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.pojo-job-detail .card-title .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex: none;
}

.pojo-job-detail .ref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: #f3f5fb;
  border: 1px solid var(--line-soft);
  padding: 7px 13px;
  border-radius: 9px;
  margin-bottom: 20px;
}

.pojo-job-detail .ref b {
  color: var(--navy);
  font-weight: 700;
}

.pojo-job-detail .desc p {
  font-size: 15.5px;
  color: #3c4266;
  margin: 0 0 16px;
  line-height: 1.7;
}

.pojo-job-detail .desc h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pojo-job-detail .desc h4::before {
  content: "";
  width: 4px;
  height: 19px;
  border-radius: 3px;
  background: var(--red);
  flex: none;
}

.pojo-job-detail .desc h5 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: #39406a;
  margin: 20px 0 10px;
}

.pojo-job-detail .desc ul {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pojo-job-detail .desc ul li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: #3c4266;
  line-height: 1.55;
}

.pojo-job-detail .desc ul li svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  color: var(--green);
}

.pojo-job-detail .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 4px 0 6px;
}

.pojo-job-detail .pill {
  font-size: 13.5px;
  font-weight: 600;
  color: #39406a;
  background: #f3f5fb;
  border: 1px solid #e9ecf6;
  padding: 8px 14px;
  border-radius: 9px;
}

.pojo-job-detail .skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pojo-job-detail .skill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: #eef1fb;
  border: 1px solid #e0e6f8;
  padding: 10px 16px;
  border-radius: 999px;
  transition: .15s;
}

.pojo-job-detail .skill:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}

.pojo-job-detail .skill svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  flex: none;
}

.pojo-job-detail .ben {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.pojo-job-detail .ben li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: #3c4266;
  line-height: 1.5;
}

.pojo-job-detail .ben li .bic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.pojo-job-detail .benefits-html {
  font-size: 14.5px;
  color: #3c4266;
  line-height: 1.6;
}

.pojo-job-detail .rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.pojo-job-detail .sal-card {
  background: linear-gradient(160deg, #0c8a55, #0a7d4d);
  border-radius: 18px;
  padding: 22px 24px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(10, 125, 77, .28);
}

.pojo-job-detail .sal-card .k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #bff0d4;
}

.pojo-job-detail .sal-card .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  margin-top: 4px;
}

.pojo-job-detail .sal-card .s {
  font-size: 13px;
  color: #cdf3df;
  margin-top: 5px;
  font-weight: 600;
}

.pojo-job-detail .apply-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 22px 24px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.pojo-job-detail .apply-card .hd {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}

.pojo-job-detail .apply-card .sub {
  color: #aeb4d4;
  font-size: 13px;
  margin-top: 4px;
}

.pojo-job-detail .deadline {
  margin: 16px 0;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 13px 15px;
}

.pojo-job-detail .deadline .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}

.pojo-job-detail .deadline .row .k {
  color: #aeb4d4;
  font-weight: 600;
}

.pojo-job-detail .deadline .row .v {
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
}

.pojo-job-detail .deadline .bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .14);
  margin-top: 11px;
  overflow: hidden;
}

.pojo-job-detail .deadline .bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff5e72, var(--red));
}

.pojo-job-detail .deadline .left {
  font-size: 12px;
  color: #cfd3e8;
  margin-top: 8px;
  font-weight: 600;
}

.pojo-job-detail .btn-apply {
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  width: 100%;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 10px 24px rgba(254, 39, 64, .3);
  transition: transform .12s, box-shadow .12s;
  margin-bottom: 10px;
}

.pojo-job-detail .btn-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(254, 39, 64, .38);
  color: #fff;
}

.pojo-job-detail .btn-apply.is-disabled {
  opacity: .65;
  pointer-events: none;
  transform: none;
}

.pojo-job-detail .apply-card .ghost {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: .14s;
}

.pojo-job-detail .apply-card .ghost:hover,
.pojo-job-detail .apply-card .ghost.on {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(254, 39, 64, .5);
}

.pojo-job-detail .apply-card .report {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 13px;
  color: #9298bd;
  font-size: 12px;
  font-weight: 600;
  transition: color .15s;
}

.pojo-job-detail .apply-card .report:hover {
  color: #ff7184;
}

/* Company banner — horizontal strip under benefits */
.pojo-job-detail .co-banner {
  background: linear-gradient(135deg, #2a3058 0%, var(--navy) 55%, #232848 100%);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, .06);
}

.pojo-job-detail .co-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.pojo-job-detail .co-banner__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  background: #1f6fd6;
  box-shadow: 0 8px 22px rgba(31, 111, 214, .35);
  overflow: hidden;
}

.pojo-job-detail .co-banner__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pojo-job-detail .co-banner__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.pojo-job-detail .co-banner__name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.pojo-job-detail .co-banner__loc {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: #aeb4d4;
}

.pojo-job-detail .co-banner__loc svg {
  color: var(--red);
  width: 14px;
  height: 14px;
  flex: none;
}

.pojo-job-detail .co-banner__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #c5cade;
  max-width: 720px;
}

.pojo-job-detail .co-banner__more {
  color: #ff8a9a;
  font-weight: 600;
  margin-left: 4px;
  transition: color .15s;
}

.pojo-job-detail .co-banner__more:hover {
  color: #ffb3bc;
}

.pojo-job-detail .co-banner__actions {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-top: 4px;
}

.pojo-job-detail .co-banner__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #7ddea8;
  background: rgba(10, 125, 77, .22);
  border: 1px solid rgba(125, 222, 168, .25);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pojo-job-detail .co-banner__open svg {
  flex: none;
}

.pojo-job-detail .co-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
  transition: transform .12s, box-shadow .12s;
}

.pojo-job-detail .co-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  color: var(--navy);
}

@media (max-width: 900px) {
  .pojo-job-detail .co-banner__inner {
    flex-wrap: wrap;
  }

  .pojo-job-detail .co-banner__actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
  }

  .pojo-job-detail .co-banner__desc {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .pojo-job-detail .co-banner {
    padding: 22px 20px;
  }

  .pojo-job-detail .co-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pojo-job-detail .co-banner__btn {
    width: 100%;
  }
}

.pojo-job-detail .related {
  padding: 6px 0 30px;
}

.pojo-job-detail .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pojo-job-detail .sec-head h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.pojo-job-detail .sec-head a {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pojo-job-detail .rel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pojo-job-detail .rel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  transition: .14s;
}

.pojo-job-detail .rel-row:hover {
  border-color: #d6dcef;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.pojo-job-detail .rel-row .rl {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: #1f6fd6;
  overflow: hidden;
}

.pojo-job-detail .rel-row .rl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pojo-job-detail .rel-row .rm {
  flex: 1;
  min-width: 0;
}

.pojo-job-detail .rel-row .rt {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.pojo-job-detail .rel-row .rs {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

.pojo-job-detail .rel-row .rs svg {
  color: var(--red);
  width: 12px;
  height: 12px;
  flex: none;
}

.pojo-job-detail .rel-row .rtype {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  background: #eef1fb;
  border: 1px solid #e0e6f8;
  padding: 5px 10px;
  border-radius: 7px;
  flex: none;
}

.pojo-job-detail .empty-related {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 20px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .pojo-job-detail .layout {
    grid-template-columns: 1fr;
  }

  .pojo-job-detail .rail {
    position: relative;
    top: 0;
  }

  .pojo-job-detail .rel-list {
    grid-template-columns: 1fr;
  }

  .pojo-job-detail .ben {
    grid-template-columns: 1fr;
  }
}
