/* ============================================================
   jd-page.css — 채용 상세(JD) 페이지 전용 스타일
   ============================================================ */

/* ── Hero Background ── */
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(139, 111, 71, .06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 111, 71, .04) 0%, transparent 50%);
    pointer-events: none
}

/* ── JD Hero (좌측 정렬, 매거진 스타일) ── */
.jd-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 111, 71, .07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(167, 139, 95, .05) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(139, 111, 71, .04) 0%, transparent 50%)
}

/* 히어로 내 요소는 즉시 표시 (스크롤 리빌 불필요) */
.jd-hero .reveal {
    opacity: 1;
    transform: translateY(0)
}

.jd-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 111, 71, .15), transparent)
}

.jd-hero .wide-col {
    position: relative;
    z-index: 1
}

/* 브레드크럼 */
.jd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--tx3);
    margin-bottom: 32px
}

.jd-breadcrumb a {
    color: var(--tx3);
    text-decoration: none;
    transition: color .2s
}

.jd-breadcrumb a:hover {
    color: var(--ac)
}

.jd-breadcrumb .sep {
    opacity: .4
}

.jd-breadcrumb .current {
    color: var(--tx2);
    font-weight: 600;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

/* 메타 태그 */
.jd-hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.jd-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: .02em
}

.jd-tag--team {
    background: var(--ac-light);
    color: var(--ac)
}

.jd-tag--type {
    background: rgba(26, 23, 20, .06);
    color: var(--tx2)
}

.jd-tag--exp {
    background: rgba(26, 23, 20, .06);
    color: var(--tx2)
}

.jd-hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1.15;
    margin-bottom: 24px
}

.jd-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.jd-hero-oneliner {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--tx2);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 40px
}

/* Hero 버튼 */
.jd-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.jd-hero-actions .btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ac);
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 20px rgba(139, 111, 71, .2)
}

.jd-hero-actions .btn-apply:hover {
    background: var(--ac2);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 111, 71, .3)
}

.jd-hero-actions .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--tx2);
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(139, 111, 71, .2);
    transition: all .3s var(--ease)
}

.jd-hero-actions .btn-detail:hover {
    border-color: var(--ac);
    color: var(--ac);
    background: var(--ac-light);
    transform: translateY(-2px)
}

/* ── Overview Cards (3컬럼) ── */
.jd-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 56px 0
}

.jd-overview-card {
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(139, 111, 71, .04)
}

.jd-overview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ac), var(--ac2));
    transform: scaleX(0);
    transition: transform .4s var(--ease)
}

.jd-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(139, 111, 71, .08);
    border-color: rgba(139, 111, 71, .15)
}

.jd-overview-card:hover::after {
    transform: scaleX(1)
}

.jd-ov-icon {
    font-size: 40px;
    margin-bottom: 16px
}

.jd-overview-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.jd-overview-card p {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.7
}

/* ── Responsibilities (넘버링 리스트) ── */
.jd-resp-list {
    margin: 48px 0
}

.jd-resp-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid rgba(139, 111, 71, .08);
    transition: all .3s var(--ease)
}

.jd-resp-item:first-child {
    border-top: 1px solid rgba(139, 111, 71, .08)
}

.jd-resp-item:hover {
    background: linear-gradient(90deg, var(--ac-light), transparent);
    border-radius: 12px
}

.jd-resp-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .2;
    line-height: 1;
    min-width: 64px;
    transition: opacity .3s var(--ease)
}

.jd-resp-item:hover .jd-resp-num {
    opacity: .5
}

.jd-resp-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.jd-resp-content p {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.8
}

/* ── Requirements (2컬럼) ── */
.jd-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 48px 0
}

.jd-req-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    transition: all .4s var(--ease)
}

.jd-req-card--must {
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-left: 4px solid var(--ac)
}

.jd-req-card--must:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 111, 71, .08)
}

.jd-req-card--ai {
    background: var(--tx);
    color: #fff
}

.jd-req-card--ai:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 23, 20, .2)
}

.jd-req-card--ai h3 {
    color: #fff
}

.jd-req-card--ai li {
    color: rgba(255, 255, 255, .75)
}

.jd-req-card--ai li::marker {
    color: rgba(255, 255, 255, .3)
}

.jd-req-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -.02em
}

.jd-req-card ul {
    list-style: none;
    padding: 0
}

.jd-req-card li {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.8;
    padding: 8px 0 8px 20px;
    position: relative
}

.jd-req-card--must li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ac);
    font-weight: 700
}

.jd-req-card--ai li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .4);
    font-weight: 300
}

/* ── Compensation ── */
.jd-comp-card {
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    padding: 48px 40px;
    margin: 48px 0
}

.jd-comp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px
}

.jd-comp-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--ac);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.jd-comp-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--tx)
}

.jd-comp-highlight {
    padding: 20px 24px;
    background: var(--ac-light);
    border-radius: 12px;
    border-left: 3px solid var(--ac);
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.7
}

.jd-comp-highlight strong {
    color: var(--ac);
    font-weight: 700
}

/* ── Career Path (culture-page 패턴 재사용) ── */
.career-path {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 56px 0
}

.career-step {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    padding: 36px 24px;
    text-align: center;
    transition: all .3s var(--ease)
}

.career-step:first-child {
    border-radius: var(--radius) 0 0 var(--radius)
}

.career-step:last-child {
    border-radius: 0 var(--radius) var(--radius) 0
}

.career-step:hover {
    background: var(--ac-light);
    transform: translateY(-4px);
    z-index: 1;
    box-shadow: 0 12px 32px rgba(139, 111, 71, .08)
}

.career-step .step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--ac);
    letter-spacing: .1em;
    margin-bottom: 12px
}

.career-step .step-icon {
    font-size: 32px;
    margin-bottom: 12px
}

.career-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px
}

.career-step p {
    font-size: 13px;
    color: var(--tx2);
    line-height: 1.6
}

.career-arrow {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--ac);
    padding: 0 4px;
    font-weight: 300
}

/* ── Working Conditions (3컬럼) ── */
.jd-cond-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0
}

.jd-cond-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid rgba(139, 111, 71, .06);
    text-align: center;
    transition: all .4s var(--ease)
}

.jd-cond-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139, 111, 71, .06);
    border-color: rgba(139, 111, 71, .15)
}

.jd-cond-card .emoji {
    font-size: 40px;
    margin-bottom: 16px
}

.jd-cond-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px
}

.jd-cond-card p {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.6
}

/* ── Hiring Process (가로 타임라인) ── */
.jd-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 48px 0
}

.jd-process-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    transition: all .3s var(--ease)
}

.jd-process-step:first-child {
    border-radius: var(--radius) 0 0 var(--radius)
}

.jd-process-step:last-child {
    border-radius: 0 var(--radius) var(--radius) 0
}

.jd-process-step:hover {
    background: var(--ac-light);
    transform: translateY(-3px);
    z-index: 1;
    box-shadow: 0 8px 24px rgba(139, 111, 71, .06)
}

.jd-process-icon {
    font-size: 28px;
    margin-bottom: 12px
}

.jd-process-label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.jd-process-time {
    font-size: 12px;
    color: var(--tx3)
}

.jd-process-arrow {
    font-size: 18px;
    color: var(--ac);
    padding: 0 2px;
    font-weight: 300
}

.jd-process-note {
    text-align: center;
    font-size: 14px;
    color: var(--tx3);
    margin-top: -16px
}

/* ── Other Positions (다른 포지션 링크) ── */
.jd-other-positions {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.jd-position-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--tx);
    transition: all .3s var(--ease)
}

.jd-position-link:hover {
    border-color: var(--ac);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(139, 111, 71, .06)
}

.jd-position-link h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px
}

.jd-pos-meta {
    display: flex;
    gap: 12px
}

.jd-pos-meta span {
    font-size: 13px;
    color: var(--tx3)
}

.jd-pos-arrow {
    font-size: 20px;
    color: var(--tx3);
    transition: all .3s var(--ease)
}

.jd-position-link:hover .jd-pos-arrow {
    color: var(--ac);
    transform: translateX(4px)
}

/* ── CTA 버튼 (라이트 배경용) ── */
.jd-hero-actions .btn-apply,
.section .btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

/* ── JD 페이지 섹션 간격 조정 (기본 120px → 80px) ── */
.jd-hero ~ .section {
    padding: 80px 0
}

.jd-hero ~ .section .pull-quote {
    margin: 40px 0
}

.jd-hero ~ .section .chapter-marker {
    margin-bottom: 32px
}

/* ── Sticky CTA Bar ── */
.sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(250, 249, 247, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(139, 111, 71, .1);
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: bottom .4s var(--ease);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .06)
}

.sticky-cta.visible {
    bottom: 0
}

.sticky-cta-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--tx);
    margin-right: auto
}

.sticky-cta-title span {
    color: var(--tx3);
    font-weight: 400;
    margin-left: 8px;
    font-size: 13px
}

.sticky-cta .btn-apply {
    padding: 10px 28px;
    font-size: 14px;
    border-radius: 12px
}

/* ── Hero Stats (수치 그리드) ── */
.jd-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid rgba(139, 111, 71, .1);
    border-bottom: 1px solid rgba(139, 111, 71, .1)
}

.jd-stat {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(139, 111, 71, .1)
}

.jd-stat:last-child {
    border-right: none
}

.jd-stat-num {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px
}

.jd-stat-label {
    font-size: 13px;
    color: var(--tx3);
    font-weight: 500
}

/* ── Trust Metrics (신뢰 지표 4칸) ── */
.jd-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0
}

.jd-metric {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    transition: all .3s var(--ease)
}

.jd-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 111, 71, .06)
}

.jd-metric-num {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px
}

.jd-metric-label {
    font-size: 13px;
    color: var(--tx2);
    font-weight: 600
}

/* ── Category Cards (카테고리 쇼케이스) ── */
.jd-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0
}

.jd-category-card {
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(139, 111, 71, .04)
}

.jd-category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ac), var(--ac2));
    transform: scaleX(0);
    transition: transform .4s var(--ease)
}

.jd-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(139, 111, 71, .08);
    border-color: rgba(139, 111, 71, .15)
}

.jd-category-card:hover::after {
    transform: scaleX(1)
}

.jd-category-icon {
    font-size: 48px;
    margin-bottom: 16px
}

.jd-category-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.jd-category-card p {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.7
}

/* ── Positioning Narrative ── */
.jd-positioning {
    max-width: 720px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--tx2);
    line-height: 1.9
}

.jd-positioning strong {
    color: var(--tx);
    font-weight: 700
}

/* ── Requirements 3열 (우대 사항 추가) ── */
.jd-req-grid--three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0
}

.jd-req-card--prefer {
    background: var(--bg2);
    border: 1px solid rgba(139, 111, 71, .1)
}

.jd-req-card--prefer:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 111, 71, .06)
}

.jd-req-card--prefer li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--ac);
    font-weight: 700
}

/* ── Portfolio Guide ── */
.jd-portfolio-card {
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    padding: 48px 40px;
    margin: 48px 0
}

.jd-portfolio-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -.02em
}

.jd-checklist {
    list-style: none;
    padding: 0
}

.jd-checklist li {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.8;
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid rgba(139, 111, 71, .06)
}

.jd-checklist li:last-child {
    border-bottom: none
}

.jd-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--ac);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 14px
}

.jd-portfolio-tip {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--ac-light);
    border-radius: 12px;
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.7;
    border-left: 3px solid var(--ac)
}

/* ── Team Quote ── */
.jd-team-quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px 0
}

.jd-quote-card {
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: all .4s var(--ease)
}

.jd-quote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 111, 71, .06)
}

.jd-quote-big {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .18
}

.jd-quote-card:first-child {
    border-left: 4px solid var(--ac)
}

.jd-quote-card:last-child {
    border-left: 4px solid var(--ac2)
}

.jd-quote-card blockquote {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: normal
}

.jd-quote-footer {
    display: flex;
    align-items: center;
    gap: 8px
}

.jd-quote-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--ac);
    background: var(--ac-light);
    padding: 4px 12px;
    border-radius: 100px
}

.jd-quote-tenure {
    font-size: 12px;
    color: var(--tx3)
}

/* ── Work Style Keywords ── */
.jd-workstyle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px
}

.jd-workstyle-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--ac-light);
    border-radius: var(--radius);
    transition: all .3s var(--ease)
}

.jd-workstyle-item:hover {
    background: rgba(139, 111, 71, .12);
    transform: translateY(-3px)
}

.jd-workstyle-item .ws-icon {
    font-size: 28px;
    margin-bottom: 12px
}

.jd-workstyle-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.jd-workstyle-item p {
    font-size: 13px;
    color: var(--tx2)
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .jd-hero {
        padding: 140px 0 60px
    }

    .jd-hero h1 {
        font-size: clamp(30px, 5vw, 48px)
    }

    .jd-overview-grid {
        grid-template-columns: 1fr
    }

    .jd-req-grid {
        grid-template-columns: 1fr
    }

    .jd-comp-grid {
        grid-template-columns: 1fr
    }

    .career-path {
        flex-direction: column
    }

    .career-step:first-child {
        border-radius: var(--radius) var(--radius) 0 0
    }

    .career-step:last-child {
        border-radius: 0 0 var(--radius) var(--radius)
    }

    .career-arrow {
        justify-content: center;
        transform: rotate(90deg);
        padding: 8px 0
    }

    .jd-cond-grid {
        grid-template-columns: 1fr 1fr
    }

    .jd-process {
        flex-direction: column;
        gap: 0
    }

    .jd-process-step {
        max-width: 100%;
        width: 100%
    }

    .jd-process-step:first-child {
        border-radius: var(--radius) var(--radius) 0 0
    }

    .jd-process-step:last-child {
        border-radius: 0 0 var(--radius) var(--radius)
    }

    .jd-process-arrow {
        transform: rotate(90deg);
        padding: 8px 0
    }

    .jd-resp-item {
        gap: 16px
    }

    .jd-resp-num {
        font-size: 36px;
        min-width: 48px
    }

    .jd-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .jd-metrics {
        grid-template-columns: repeat(2, 1fr)
    }

    .jd-category-grid {
        grid-template-columns: 1fr
    }

    .jd-req-grid--three {
        grid-template-columns: 1fr
    }

    .jd-team-quotes {
        grid-template-columns: 1fr
    }

    .jd-workstyle {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media (max-width: 600px) {
    .jd-hero {
        padding: 120px 0 48px
    }

    .jd-cond-grid {
        grid-template-columns: 1fr
    }

    .jd-stats {
        grid-template-columns: 1fr 1fr 1fr
    }

    .jd-stat {
        padding: 24px 12px
    }

    .jd-metrics {
        grid-template-columns: 1fr 1fr
    }

    .jd-workstyle {
        grid-template-columns: 1fr
    }

    .jd-portfolio-card {
        padding: 32px 24px
    }

    .jd-comp-card {
        padding: 32px 24px
    }

    .jd-req-card {
        padding: 32px 24px
    }
}
