/* ===== Job Detail — BEM Components ===== */

/* Divider */
.job-detail__divider {
  background: #bebebe;
  height: 1px;
  width: 100%;
}

/* Row: label + value */
.job-detail__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

/* Label */
.job-detail__label {
  color: #000;
  font-family: "ヒラギノ角ゴ W6 JIS2004", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 2;
  margin: 0;
  text-align: left;
  width: 256px;
  min-width: 256px;
}

/* Value */
.job-detail__value {
  color: #000;
  flex: 1;
  font-family: "ヒラギノ角ゴ W4 JIS2004", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2;
  margin: 0;
  text-align: left;
}

/* Rich content (post_content) */
.job-detail__value--rich p {
  color: #000;
  font-family: "ヒラギノ角ゴ W4 JIS2004", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2;
  margin: 0;
}

/* ===== Tablet (≤768px) ===== */
@media screen and (max-width: 768px) {
  .job-detail__label {
    font-size: 18px;
    width: 170px;
    min-width: 170px;
  }
}

/* ===== Mobile (≤480px) ===== */
@media screen and (max-width: 480px) {
  .job-detail__row {
    flex-direction: column;
    gap: 10px;
  }

  .job-detail__label {
    font-size: 18px;
    width: auto;
    min-width: auto;
  }

  .job-detail__value,
  .job-detail__value--rich p {
    font-size: 14px;
  }
}
