/* Job posting page layout */
.postingimage-page {
  float: left;
  max-width: 300px;
  margin: 0 25px 20px 0;
}

.postingimage-page img {
  border-radius: 16px;
  display: block;
}

/* Content sections */
.postingdescription-page,
.postingsalary-page,
.postingclose-page,
.postinglink-page {
  overflow: hidden;
}

/* All field labels */
.postingdescription-page .field__label,
.postingsalary-page .field__label,
.postingclose-page .field__label,
.postinglink-page .field__label {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Job Description */
.postingdescription-page {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Annual Salary */
.postingsalary-page {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.postingsalary-page .field__label {
  display: block;
  margin-bottom: 6px;
}

.postingsalary-page .field__items {
  display: block;
}

.postingsalary-page .field__item {
  display: block;
  margin-bottom: 2px;
}

/* Closing Date */
.postingclose-page {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.postingclose-page .field__label {
  display: inline;
  margin-right: 6px;
}

.postingclose-page .field__item {
  display: inline;
}

/* Application Link */
.postinglink-page {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.postinglink-page .field__label {
  display: inline;
  margin-right: 6px;
}

.postinglink-page .field__item {
  display: inline;
}

.postinglink-page a {
  color: #5387ce;
  text-decoration: none;
  font-weight: 600;
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}

.postinglink-page a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 700px) {
  .postingimage-page {
    float: none;
    max-width: 100%;
    margin: 0 0 20px 0;
  }

  .postingdescription-page {
    font-size: 1.25rem;
  }

  .postingsalary-page,
  .postingclose-page,
  .postinglink-page {
    font-size: 1.15rem;
  }

  .postingdescription-page .field__label,
  .postingsalary-page .field__label,
  .postingclose-page .field__label,
  .postinglink-page .field__label {
    font-size: 1.25rem;
  }
}