/* =========================================================
   Job Detail Page - Professional Level CSS
   ========================================================= */

/* ▼保険：bodyに job-detail__page が付かない場合でも効かせる */
body.page-id-394 .catch-cover__back,
body.page-id-394 .job-header-card,
body.page-id-394 .jd-section__title,
body.page-id-394 .jd-block,
body.page-id-394 .jd-flat-table,
body.page-id-394 .um-fixed-cta,
body.page-id-394 .jd-fixed-cta-sp {
  /* ターゲット確保 */
}

/* =========================================================
   Base Styles - タイポグラフィの洗練
   ========================================================= */
.job-detail__page {
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container - より精密なレスポンシブ */
.job-detail__page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 32px);
}

/* =========================================================
   Section Title - より印象的に
   ========================================================= */
.job-detail__page .jd-section__title {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 800;
  color: #014C96;
  margin: 0 0 48px;
  padding: 0 0 24px 28px;
  border-left: 6px solid #014C96;
  position: relative;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.job-detail__page .jd-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 5px;
  background: linear-gradient(90deg, #014C96 0%, #FF832B 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(1, 76, 150, 0.25);
}

/* Section Spacing - より呼吸感のある余白 */
.job-detail__page .job-detail-section {
  margin-bottom: clamp(60px, 8vw, 96px);
  padding: 0;
}

/* =========================================================
   Blocks - 多層シャドウで奥行き感
   ========================================================= */
.job-detail__page .jd-block {
  background: #fff;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 16px;
  border: 1px solid rgba(1, 76, 150, 0.08);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.job-detail__page .jd-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(1, 76, 150, 0.4) 0%, 
    rgba(255, 131, 43, 0.4) 50%,
    rgba(1, 76, 150, 0.4) 100%
  );
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .job-detail__page .jd-block:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 2px 6px rgba(0, 0, 0, 0.05),
      0 8px 24px rgba(0, 0, 0, 0.08),
      0 24px 48px rgba(0, 0, 0, 0.12);
  }
  
  .job-detail__page .jd-block:hover::before {
    opacity: 1;
  }
}

.job-detail__page .jd-block-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: #014C96;
  margin: 0 0 28px;
  padding-left: 24px;
  border-left: 6px solid #FF832B;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* =========================================================
   Rich Text - より読みやすいタイポグラフィ
   ========================================================= */
.job-detail__page .jd-rich {
  font-size: 17px;
  line-height: 2;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  color: #333;
  letter-spacing: 0.02em;
}

.job-detail__page .jd-rich p { 
  margin: 0 0 20px;
}

.job-detail__page .jd-rich .bracket {
  font-weight: 800;
  color: #014C96;
  margin: 20px 0;
  font-size: 19px;
  letter-spacing: 0.03em;
}

.job-detail__page .jd-rich .marker {
  font-weight: 700;
  margin: 18px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.9;
}

.job-detail__page .jd-rich .marker::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #FF832B;
  font-size: 14px;
  top: 2px;
}

.job-detail__page .jd-rich .note {
  color: #6b7280;
  font-size: 15px;
  margin: 16px 0;
  padding: 12px 0 12px 24px;
  border-left: 4px solid #e5e7eb;
  background: rgba(107, 114, 128, 0.02);
  border-radius: 0 8px 8px 0;
  line-height: 1.9;
}

.job-detail__page .jd-rich .numbered {
  padding-left: 28px;
  margin: 16px 0;
  line-height: 1.9;
}

/* =========================================================
   Table - よりモダンなデザイン
   ========================================================= */
.job-detail__page .jd-flat-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

.job-detail__page .jd-flat-table th {
  background: linear-gradient(135deg, #014C96 0%, #0268b8 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  padding: 28px 32px;
  text-align: left;
  width: 240px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.03em;
  position: relative;
}

.job-detail__page .jd-flat-table th::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.job-detail__page .jd-flat-table td {
  background: #fff;
  padding: 28px 36px;
  font-size: 17px;
  line-height: 2;
  color: #333;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .job-detail__page .jd-flat-table tr:hover td {
    background: rgba(1, 76, 150, 0.02);
  }
}

.job-detail__page .jd-flat-table tr:last-child th,
.job-detail__page .jd-flat-table tr:last-child td {
  border-bottom: none;
}

.job-detail__page .jd-flat-table td strong {
  font-weight: 800;
  color: #014C96;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.job-detail__page .jd-flat-table.company-flat th {
  width: 180px;
  font-size: 17px;
  padding: 24px 28px;
}

.job-detail__page .jd-flat-table.company-flat td {
  padding: 24px 32px;
  font-size: 16px;
}

/* =========================================================
   Hero Section - より印象的なグラデーション
   ========================================================= */
.job-detail__page .catch-cover__back {
  background: linear-gradient(135deg, #0693e3 0%, #014C96 60%, #002e5c 100%);
  padding: clamp(60px, 8vw, 90px) 0 clamp(80px, 10vw, 110px);
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.job-detail__page .catch-cover__back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 131, 43, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 147, 227, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.job-detail__page .catch-cover__back .section-title {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.job-detail__page .catch-cover__back .updated {
  text-align: right;
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* =========================================================
   Header Card - より洗練されたカードデザイン
   ========================================================= */
.job-detail__page .job-header-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 24px 64px rgba(1, 76, 150, 0.15);
  padding: clamp(40px, 5vw, 56px);
  margin: clamp(-50px, -6vw, -70px) auto clamp(60px, 8vw, 80px);
  max-width: 1100px;
  border: 2px solid rgba(1, 76, 150, 0.08);
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .job-detail__page .job-header-card:hover {
    transform: translateY(-6px);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.1),
      0 24px 64px rgba(0, 0, 0, 0.15),
      0 32px 80px rgba(1, 76, 150, 0.2);
  }
}

.job-detail__page .job-header-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #014C96 0%, #FF832B 50%, #014C96 100%);
  border-radius: 24px 24px 0 0;
}

.job-detail__page .job-header-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #014C96;
  margin: 0 0 32px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.job-detail__page .job-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
}

.job-detail__page .job-header-tag {
  background: linear-gradient(135deg, #014C96 0%, #0268b8 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 
    0 2px 8px rgba(1, 76, 150, 0.2),
    0 4px 16px rgba(1, 76, 150, 0.15);
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.job-detail__page .job-header-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .job-detail__page .job-header-tag:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 4px 12px rgba(1, 76, 150, 0.25),
      0 8px 24px rgba(1, 76, 150, 0.2);
  }
  
  .job-detail__page .job-header-tag:hover::before {
    left: 100%;
  }
}

.job-detail__page .job-header-company {
  font-size: 21px;
  font-weight: 700;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}

.job-detail__page .job-header-company::before {
  content: "🏢";
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* =========================================================
   中央CTA - より印象的なカードデザイン
   ========================================================= */
.job-detail__page .jd-bottom-cta-pc {
  position: static !important;
  margin: clamp(50px, 6vw, 70px) 0 clamp(100px, 12vw, 140px) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.job-detail__page .jd-bottom-cta-pc .container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* セパレーターライン */
.job-detail__page .jd-bottom-cta-pc .container::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto 24px;
  max-width: 680px;
  background: linear-gradient(
    90deg,
    rgba(1, 76, 150, 0) 0%,
    rgba(1, 76, 150, 0.3) 20%,
    rgba(255, 131, 43, 0.4) 50%,
    rgba(1, 76, 150, 0.3) 80%,
    rgba(1, 76, 150, 0) 100%
  );
  border-radius: 2px;
}

/* CTAカード本体 */
.job-detail__page .jd-bottom-cta-pc .container {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 32px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 24px 56px rgba(1, 76, 150, 0.12);
  border: 2px solid rgba(1, 76, 150, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* バッジは削除 */

/* 中央CTAボタン */
.job-detail__page .jd-bottom-cta-pc .jd-btn--entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 460px;
  padding: 22px 52px;
  font-size: 19px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #014C96 0%, #0268b8 100%) !important;
  color: #fff !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 
    0 6px 20px rgba(1, 76, 150, 0.3),
    0 12px 40px rgba(1, 76, 150, 0.2) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* ボタングロー効果 */
.job-detail__page .jd-bottom-cta-pc .jd-btn--entry::before {
  content: "※ 相談だけでもOK／無料";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ボタン矢印アイコン */
.job-detail__page .jd-bottom-cta-pc .jd-btn--entry::after {
  content: "→";
  display: inline-block;
  transform: translateY(-1px);
  opacity: 0.95;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ホバーエフェクト（PC） */
@media (hover: hover) and (pointer: fine) {
  .job-detail__page .jd-bottom-cta-pc .container:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.08),
      0 16px 48px rgba(0, 0, 0, 0.12),
      0 32px 72px rgba(1, 76, 150, 0.18);
  }
  
  .job-detail__page .jd-bottom-cta-pc .jd-btn--entry:hover {
    background: linear-gradient(135deg, #0268b8 0%, #014C96 100%) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
      0 10px 28px rgba(1, 76, 150, 0.35),
      0 16px 56px rgba(1, 76, 150, 0.25) !important;
  }
  
  .job-detail__page .jd-bottom-cta-pc .jd-btn--entry:hover::after {
    transform: translateY(-1px) translateX(4px);
  }
}

/* アクティブ状態 */
.job-detail__page .jd-bottom-cta-pc .jd-btn--entry:active {
  transform: translateY(-1px) scale(0.98);
}

/* =========================================================
   右下固定CTA - 洗練された補助CTA
   ========================================================= */
.job-detail__page .um-fixed-cta {
  position: fixed;
  bottom: clamp(40px, 5vw, 60px);
  right: clamp(32px, 4vw, 48px);
  z-index: 40;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
  .job-detail__page .um-fixed-cta {
    bottom: 60px !important;
  }
}

.job-detail__page .um-cta-card {
  background: #fff;
  border-radius: 20px !important;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.12) !important;
  padding: 22px !important;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 2px solid rgba(1, 76, 150, 0.1) !important;
  min-width: 290px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .job-detail__page .um-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.1),
      0 16px 48px rgba(0, 0, 0, 0.15) !important;
  }
}

.job-detail__page .um-cta-avatar {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(1, 76, 150, 0.1);
}

.job-detail__page .um-cta-sub {
  font-size: 13px;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.job-detail__page .um-cta-btn {
  background: transparent !important;
  color: #014C96 !important;
  border: 2px solid #014C96 !important;
  border-radius: 999px !important;
  padding: 10px 24px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(1, 76, 150, 0.1) !important;
  text-decoration: none !important;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  .job-detail__page .um-cta-btn:hover {
    background: rgba(1, 76, 150, 0.05) !important;
    border-color: #0268b8 !important;
    color: #0268b8 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 76, 150, 0.15) !important;
  }
}

/* SP固定CTA */
@media (min-width: 769px) {
  .job-detail__page .jd-fixed-cta-sp {
    display: none !important;
  }
}

.job-detail__page .jd-fixed-cta-sp .jd-btn--entry {
  background: linear-gradient(135deg, #014C96 0%, #0268b8 100%) !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 -4px 20px rgba(1, 76, 150, 0.3) !important;
}

/* =========================================================
   Responsive - より洗練されたSPデザイン
   ========================================================= */
@media (max-width: 768px) {
  .job-detail__page {
    font-size: 16px;
  }
  
  .job-detail__page .container {
    padding: 0 16px;
  }
  
  .job-detail__page .jd-section__title {
    font-size: 24px;
    padding-left: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
  
  .job-detail__page .jd-section__title::after {
    width: 80px;
    height: 4px;
  }
  
  /* ブロック - SPで余白最適化 */
  .job-detail__page .jd-block {
    padding: 28px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
  }
  
  .job-detail__page .jd-block-title {
    font-size: 19px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
  
  .job-detail__page .catch-cover__back {
    padding: 50px 0 70px;
  }
  
  /* ヘッダーカード - SP最適化 */
  .job-detail__page .job-header-card {
    margin: -45px 12px 50px;
    padding: 32px 24px;
    border-radius: 18px;
  }
  
  .job-detail__page .job-header-card::before {
    height: 5px;
  }
  
  .job-detail__page .job-header-title {
    font-size: 26px;
    margin-bottom: 24px;
    line-height: 1.45;
  }
  
  .job-detail__page .job-header-tags {
    gap: 10px;
    margin-bottom: 24px;
  }
  
  .job-detail__page .job-header-tag {
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 10px;
  }
  
  .job-detail__page .job-header-company {
    font-size: 18px;
  }
  
  /* 中央CTA - SP最適化 */
  .job-detail__page .jd-bottom-cta-pc {
    margin: 40px 0 80px !important;
  }
  
  .job-detail__page .jd-bottom-cta-pc .container {
    padding: 32px 20px 28px;
    border-radius: 20px;
  }
  
  .job-detail__page .jd-bottom-cta-pc .jd-btn--entry {
    min-width: 100%;
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    border-radius: 16px;
  }
  
  .job-detail__page .jd-bottom-cta-pc .jd-btn--entry::before {
    bottom: -28px;
    font-size: 12px;
  }
  
  /* ============================================
     【重要】SP用テーブル - 縦並びカードスタイル
     ============================================ */
  
  /* テーブルを縦並びに変換 */
  .job-detail__page .jd-flat-table {
    display: block;
    margin-top: 24px;
    border-radius: 14px;
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.06),
      0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .job-detail__page .jd-flat-table tbody,
  .job-detail__page .jd-flat-table tr {
    display: block;
  }
  
  .job-detail__page .jd-flat-table tr {
    margin-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
  }
  
  .job-detail__page .jd-flat-table tr:last-child {
    border-bottom: none;
  }
  
  /* 見出しセル（th）- 小さめの帯状に */
  .job-detail__page .jd-flat-table th {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 20px 12px;
    background: linear-gradient(135deg, #014C96 0%, #0268b8 100%);
    color: #fff;
    border-bottom: none;
    letter-spacing: 0.04em;
  }
  
  /* データセル（td）- 読みやすいパディング */
  .job-detail__page .jd-flat-table td {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.9;
    padding: 18px 20px 20px;
    border-bottom: none;
  }
  
  .job-detail__page .jd-flat-table td strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
  }
  
  /* 会社情報テーブル - より読みやすく */
  .job-detail__page .jd-flat-table.company-flat th {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px 10px;
  }
  
  .job-detail__page .jd-flat-table.company-flat td {
    padding: 16px 18px 18px;
    font-size: 15px;
    line-height: 1.85;
  }
  
  /* Rich Textコンテンツ - SP最適化 */
  .job-detail__page .jd-rich {
    font-size: 15px;
    line-height: 1.95;
  }
  
  .job-detail__page .jd-rich .bracket {
    font-size: 17px;
    margin: 16px 0;
  }
  
  .job-detail__page .jd-rich .marker {
    font-size: 15px;
    padding-left: 14px;
    margin: 14px 0;
  }
  
  .job-detail__page .jd-rich .marker::before {
    font-size: 12px;
  }
  
  .job-detail__page .jd-rich .note {
    font-size: 14px;
    padding: 10px 0 10px 18px;
    margin: 14px 0;
  }
  
  /* 固定CTA非表示（SPでは下部固定CTAのみ） */
  .job-detail__page .um-fixed-cta,
  .job-detail__page .jd-bottom-cta-pc.jd-bottom-cta-desktop {
    display: none !important;
  }
}

/* =========================================================
   Print Styles
   ========================================================= */
@media print {
  .job-detail__page .um-fixed-cta,
  .job-detail__page .jd-bottom-cta-pc,
  .job-detail__page .jd-fixed-cta-sp {
    display: none !important;
  }
  
  .job-detail__page .jd-block,
  .job-detail__page .job-header-card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* =========================================================
   Accessibility Enhancements
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .job-detail__page *,
  .job-detail__page *::before,
  .job-detail__page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
.job-detail__page a:focus-visible,
.job-detail__page button:focus-visible {
  outline: 3px solid #FF832B;
  outline-offset: 4px;
  border-radius: 4px;
}