.role-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.role-breadcrumb:hover, .role-breadcrumb:visited {
    color: rgba(255, 255, 255, 0.65);
}

.role-breadcrumb:hover {
    color: #fff;
}

.role-article {
    width: min(760px, 90%);
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.role-hiring-notice {
    display: inline-block;
    margin: 0 0 1.5rem;
    padding: 0.5rem 0.9rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.role-article .lead {
    font-size: 1.1rem;
    color: var(--ink);
}

.quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 1.75rem 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quick-fact-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.quick-fact-value {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.98rem;
}

.role-article h2 {
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.role-article ul {
    padding-left: 1.25rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.role-article ul li {
    margin-bottom: 0.6rem;
}

.role-article p {
    color: var(--muted);
    line-height: 1.7;
}

.role-article p strong {
    color: var(--navy);
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: process-step;
}

.process-list li {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    line-height: 1.6;
    counter-increment: process-step;
}

.process-list li::before {
    content: counter(process-step);
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 600px) {
    .quick-facts {
        gap: 1.5rem;
    }
}

/* ── Apply CTAs (role detail pages) ── */
.role-apply-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 0 0 2.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
}

.role-apply-inline p {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 28rem;
}

.role-apply-inline .btn {
    flex-shrink: 0;
    font-weight: 600;
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
}

.cta-band--apply {
    background: linear-gradient(135deg, var(--navy) 0%, #1d4ed8 55%, var(--accent) 100%);
}

.cta-band--apply .btn-light {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .role-apply-inline {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .role-apply-inline .btn {
        width: 100%;
        justify-content: center;
    }
}
