/* ==========================================================================
   Career role detail pages — shared page-specific styles
   Uses tokens from css/brand.css. Master-brand / cross-platform pages
   (careers.html family), so accents stay Navy + Teal — never Indigo or Coral.
   One shared file for all 21 career_*.html pages: unlike the business
   application pages, every role page uses the identical structural template
   with only content substituted, so a single stylesheet (rather than 21
   near-duplicate files) is the maintainable choice here.
   Only classes with no existing equivalent in dataartha.css/brand.css/
   themes.css/careers.css are defined here — everything else (da-hero,
   da-section-label, da-card, da-feature-list-item, da-tag, apply-card, etc.)
   is reused as-is from those shared files.
   ========================================================================== */

/* ---- Breadcrumb (inside da-hero--compact) ---- */

.jd-breadcrumb {
	margin-left: 5px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.jd-breadcrumb a {
    color: color-mix(in srgb, var(--da-white) 70%, transparent);
    text-decoration: none;
    font-weight: 500;
}

.jd-breadcrumb a:hover {
    color: var(--da-white);
    text-decoration: underline;
}

.jd-breadcrumb a:focus-visible {
    outline: 2px solid var(--accent-300, var(--da-teal-300));
    outline-offset: 2px;
}

.jd-breadcrumb i {
    font-size: 0.65rem;
    margin: 0 0.5rem;
    color: color-mix(in srgb, var(--da-white) 70%, transparent);
    vertical-align: middle;
}

.jd-breadcrumb span {
    color: var(--da-white);
    font-weight: 600;
    text-align: justify;
}

/* ---- Hero meta pills (department / location / experience / employment) ---- */

.jd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}

.jd-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: color-mix(in srgb, var(--da-white) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--da-white) 20%, transparent);
    color: color-mix(in srgb, var(--da-white) 92%, transparent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.jd-meta-pill i {
    color: var(--da-teal-400);
}

/* ---- Purpose intro ---- */

.jd-purpose {
    padding: 70px 0 20px;
    background: var(--da-white);
}

/* ---- Role at a glance (facts grid) ---- */

.jd-facts {
    padding: 50px 0 70px;
    background: var(--da-white);
}

.jd-fact {
    background: var(--da-gray-100);
    border: 1px solid var(--da-gray-300);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    height: 100%;
}

.jd-fact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--da-teal-600);
    margin-bottom: 0.4rem;
    text-align: justify;
}

.jd-fact-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--da-navy-900);
    line-height: 1.35;
}

/* ---- What you'll do / What you'll bring ---- */

.jd-do-bring {
    padding: 60px 0 70px;
    background: var(--da-gray-100);
}

/* ---- First six months / success measures (dark) ---- */

.jd-outcomes {
    background: var(--da-navy-900);
    padding: 70px 0;
}

.jd-dark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-dark-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0;
    border-top: 1px solid color-mix(in srgb, var(--da-white) 12%, transparent);
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--da-white) 85%, transparent);
    line-height: 1.55;
}

.jd-dark-list li:first-child {
    border-top: none;
}

.jd-dark-list li i {
    color: var(--da-teal-400);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ---- Preferred qualifications / behavioural competencies ---- */

.jd-good-to-have {
    padding: 70px 0;
    background: var(--da-white);
}

/* ---- Working context (boilerplate) ---- */

.jd-context {
    padding: 50px 0 70px;
    background: var(--da-gray-100);
}

.jd-context-box {
    background: var(--da-white);
    border-left: 4px solid var(--da-teal-600);
    border-radius: 8px;
    padding: 1.6rem 1.85rem;
}

.jd-context-box p {
    font-size: 0.95rem;
    color: var(--da-gray-500);
    line-height: 1.75;
    margin-bottom: 0.9rem;
    text-align: justify;
}

.jd-context-box p:last-child {
    margin-bottom: 0;
}

/* ---- Responsive ---- */

@media (max-width: 575.98px) {
    .jd-context-box {
        padding: 1.25rem 1.4rem;
    }
}
