/* Minification failed. Returning unminified contents.
(100,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(105,27): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(149,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(205,26): run-time error CSS1039: Token not allowed after unary operator: '-brand-palegrey'
(207,30): run-time error CSS1039: Token not allowed after unary operator: '-brand-palegrey'
(218,59): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(221,27): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(234,59): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(273,26): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple-light'
(275,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(283,26): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
 */
.main-search .search-filter-btn { display: none; }

.job-details-page .inner-container,
.job-details-page-expired .inner-container {
  padding: 1.25rem 0.75rem;
  display: grid;
  gap: 1.5rem;
}

.job-details-page .search-section,
.job-details-page-expired .search-section { display: none; }
/* ---------- DESCRIPTION SECTION ---------- */
.description-info {
  display: grid;
  gap: 1rem 0;
}

.description-info h1 {
  font-size: 1.25rem;
  font-weight: 600;
}

.description-details {
  padding-bottom: 1rem;
  margin: 0;
  margin-left: 0.5rem;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 1rem 0.5rem;
  font-size: 1rem;
  align-items: start;
}

.description-details .detail-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-size: contain;
}

.description-details .location-icon {
  background: url('/assets/img/icons/location-blk.svg') no-repeat;
  background-position: center;
}

.description-details .company-icon {
  background: url('/assets/img/icons/company-blk.svg') no-repeat;
  background-position: center;
}

.description-details .salary-icon {
  background: url('/assets/img/icons/salary-blk.svg') no-repeat;
  background-position: center;
}

.description-details .date-icon {
  background: url('/assets/img/icons/date-blk.svg') no-repeat;
  background-position: center;
}

.description-details .parttime-icon {
  background: url('/assets/img/icons/job-employment-blk.svg') no-repeat;
  background-position: center;
}

.description-details .contract-icon {
  background: url('/assets/img/icons/job-contract-blk.svg') no-repeat;
  background-position: center;
}

.description-details .benefits-icon {
  background: url('/assets/img/icons/job-benefits-blk.svg') no-repeat;
  background-position: center;
}

.description-details .benefits-title:not(:last-child)::after,
.description-details .categories-title:not(:last-child)::after {
  content: ",";
  margin-right: 0.25rem;
}  

.description-details .job-level-icon {
  background: url('/assets/img/icons/job-level-blk.svg') no-repeat;
  background-position: center;
}

.description-details .job-location-icon {
  background: url('/assets/img/icons/job-location-blk.svg') no-repeat;
  background-position: center;
}

.description-details .categories-icon {
  background: url('/assets/img/icons/job-categories-blk.svg') no-repeat;
  background-position: center;
}

.description-details dd { margin: 0; }

.description-details .main-link-hv {
  color: var(--brand-purple);
  text-transform: capitalize;
}

.description-details .main-link-hv:focus {
  outline: 1px solid var(--brand-purple);
  transition: outline 0.2s ease;
  border-radius: 0.05rem;
  outline-offset: 2px;
}

.description-details .company-name { text-transform: capitalize; }

.top-summary {
  display: grid;
  gap: 1rem;
}

.top-summary .summary-text {
  display: grid;
  gap: 1rem;
}

.summary-text h2 {
  font-size: 1rem;
  font-weight: 600;
}

.top-summary .primary-btn {
  box-sizing: border-box;
  width: 10rem;
  text-align: center;
  margin: 0 auto;
}

.job-description .description-title,
.job-description h1,
.job-description h2,
.job-description h3,
.job-description h4,
.job-description h5,
.job-description h6 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.job-description a {
  color: var(--brand-purple);
  text-decoration: underline;
}

.job-description a:hover {
  font-weight: 600;
  text-decoration: none;
}

.job-description ol,
.job-description ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.job-description ul li,
.job-description ol li {
  font-weight: 300;
  line-height: 1.6;
}

.job-description .description-para {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
}

.final-apply { display: grid; }

.final-apply .primary-btn {
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  width: 12rem;
  place-self: center;
}
/* ---------- END DESCRIPTION SECTION ---------- */

/* ---------- SIMILAR JOBS SECTION ---------- */
.similar-jobs {
  display: grid;
  gap: 1rem;
}

.similar-jobs h2 {
  font-size: 1rem;
  font-weight: 600;
}

.similar-jobs .similar-cards {
  display: grid;
  gap: 1rem;
}

.similar-jobs .similar-card {
  cursor: pointer;
  border: 1px solid var(--brand-palegrey);
  border-radius: 0.25rem;
  box-shadow: 0 0 6px 0 var(--brand-palegrey);
  padding: 1rem;
}

.similar-jobs .similar-card .js-jobcard {
  display: grid;
  gap: 1rem;
}

.similar-jobs .similar-card .description-details { padding-bottom: 0; }

.similar-jobs .similar-card .js-jobcardlink { color: var(--brand-off-black); }

.similar-jobs .similar-card .js-jobcardlink:focus {
  outline: 1px solid var(--brand-purple);
  transition: outline 0.2s ease;
  border-radius: 0.05rem;
  outline-offset: 2px;
}

.similar-jobs .similar-card .js-jobcardlink h3 {
  font-size: 1rem;
  font-weight: 600;
}

.similar-jobs .similar-card .company-title { text-transform: capitalize; }

.similar-jobs .similar-card a.company-title { color: var(--brand-purple); }

.similar-jobs .similar-card p.company-title { color: #6F6F6F; }

.similar-jobs .similar-card a.company-title:hover { text-decoration: underline; }
/* ---------- END SIMILAR JOBS SECTION ---------- */
/* ---------- RELEVANT CATEGORY SECTION ---------- */

.detail-category {
  display: grid;
  gap: 1rem;
}

.detail-category h2 {
  font-size: 1rem;
  font-weight: 600;
}

.detail-category ul {
  display: grid;
  gap: 0.75rem;
}

/* ---------- END RELEVANT CATEGORY SECTION ---------- */
/* ---------- EXPIRED PAGE ---------- */
.expired-title {
  display: grid;
  gap: 1rem;
}

.expired-title h1 {
  text-transform: capitalize;
  font-size: 1.25rem;
  font-weight: 600;
}

.expired-title .expired-job-msg { padding: 1rem 0; }

.expired-job-msg {
  background-color: var(--brand-purple-light);
  border-radius: 0.25rem;
  color: var(--brand-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
}

.expired-icon {
  border: 2px solid var(--brand-purple);
  border-radius: 50%;
  padding: 0.25rem 0.6rem;
  margin-right: 0.5rem;
  font-weight: 900;
  place-self: center;
}
/* ---------- END EXPIRED PAGE ---------- */

@media only screen and (min-width: 28rem) {

  .job-details-page .inner-container,
  .job-details-page-expired .inner-container { padding: 1.5rem 1rem; }
}

@media only screen and (min-width: 52.5rem) {

  .job-details-page .search-section,
  .job-details-page-expired .search-section {
    display: block;
    grid-area: initial;
  }
}

@media only screen and (min-width: 65rem) {

  .job-details-page .inner-container,
  .job-details-page-expired .inner-container { padding: 1.5rem 1.5rem; }

  .job-details-page .top-summary,
  .job-details-page .job-description { width: 60rem; }

  .inner-container .cv-review-card {
    width: 48rem;
    margin: 0 auto;
  }

  .similar-jobs .similar-cards,
  .detail-category ul {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
  }
 
  .similar-jobs .similar-cards li article {
    height: 100%;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 80rem) {

  .job-details-page .inner-container,
  .job-details-page-expired .inner-container {
    width: 70rem;
    margin: 0 auto;
  }

  .detail-category ul { grid-template-columns: repeat(3, 1fr); }
}

@media only screen and (min-width: 100rem) {

  .job-details-page .inner-container,
  .job-details-page-expired .inner-container { width: 85rem; }
}

