.job-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, .78fr) 1.22fr;
  min-height: 470px;
  background: #15293d;
  color: #fff;
  overflow: hidden;
}

.job-poster {
  display: grid;
  place-items: center;
  min-height: 470px;
  padding: 28px;
  background: #0f2132;
}

.job-poster img {
  width: auto;
  height: 414px;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
  transition: transform .25s ease;
}

.job-poster:hover img,
.job-poster:focus-visible img {
  transform: translateY(-3px);
}

.job-card .news-body {
  padding: clamp(38px, 6vw, 76px);
}

.job-card .news-body > span {
  color: #6ac4c6;
}

.job-card .news-body h3 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
}

.job-card .news-body p {
  max-width: 520px;
  color: #c0d1d1;
  font-size: 1rem;
}

.job-facts {
  display: flex;
  gap: 14px 24px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.job-facts strong {
  color: #fff;
  font: 800 1.8rem var(--display);
}

.job-facts span {
  color: #9eb8b9;
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.job-actions a {
  margin-top: 0;
  color: #fff;
}

.job-actions .job-primary {
  width: 100%;
  margin-bottom: 2px;
  color: #6ac4c6;
  font-size: .92rem;
}

@media (max-width: 850px) {
  .job-card {
    grid-template-columns: 1fr;
  }

  .job-poster {
    min-height: auto;
    padding: 24px;
  }

  .job-poster img {
    height: min(620px, 118vw);
  }
}

@media (max-width: 560px) {
  .job-card .news-body {
    padding: 30px 24px 34px;
  }

  .job-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
