 .job-detail-card {
        background: #fff;
        border: 1px solid #e3e3e3;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        padding: 2rem;
    }
    .job-detail-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 1rem 0;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
    }
    .job-detail-meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .job-detail-meta-item svg {
        color: #6c757d;
        flex-shrink: 0;
    }
    .job-detail-meta-label {
        font-size: 12px;
        color: #6c757d;
    }
    .job-detail-meta-value {
        font-size: 14px;
        color: #0d0d0d;
        font-weight: 500;
    }
    .job-description {
        line-height: 1.8;
        color: #333;
    }
    .job-description h1, .job-description h2, .job-description h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .job-description ul, .job-description ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }
    .job-description li {
        margin-bottom: 0.5rem;
    }
    .job-employer {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .job-employer-name {
        font-size: 15px;
        font-weight: 600;
        color: #0d0d0d;
    }
    .job-badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 6px;
        background: #f0f4ff;
        color: #47b2e4;
        font-size: 13px;
        font-weight: 500;
    }
    .job-breadcrumb {
        font-size: 13px;
    }
    .job-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        color: #adb5bd;
        font-size: 12px;
    }
    .job-breadcrumb a {
        color: #47b2e4;
        text-decoration: none;
        font-weight: 500;
    }
    .job-breadcrumb a:hover {
        text-decoration: underline;
    }
    .job-breadcrumb .breadcrumb-item.active {
        color: #6c757d;
        font-weight: 400;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 300px;
        display: inline-block;
        vertical-align: middle;
    }
    .btn-accent,
    .btn-outline-accent {
        display: inline-block;
        padding: 7px 22px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
        transition: 0.2s;
        border: 1.5px solid #47b2e4;
        text-decoration: none;
        cursor: pointer;
    }
    .btn-accent {
        color: #fff;
        background: #47b2e4;
    }
    .btn-accent:hover {
        background: #3a9ed1;
        border-color: #3a9ed1;
    }
    .btn-outline-accent {
        color: #47b2e4;
        background: transparent;
    }
    .btn-outline-accent:hover {
        background: #f0f8fe;
    }

    @media (max-width: 767.98px) {
        .job-detail-card {
            padding: 1rem;
        }
        .job-breadcrumb {
            font-size: 12px;
        }
        .job-breadcrumb .breadcrumb-item.active {
            max-width: 140px;
        }
        .job-employer {
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .job-employer-name {
            font-size: 14px;
        }
        .job-detail-meta {
            gap: 0.6rem;
            margin: 1rem 0;
            padding: 0.75rem 0;
        }
        .job-detail-meta-item svg {
            width: 16px;
            height: 16px;
        }
        .job-detail-meta-label {
            font-size: 11px;
        }
        .job-detail-meta-value {
            font-size: 13px;
        }
        .section-title h2 {
            font-size: 18px;
        }
        .section-title p {
            font-size: 13px;
        }
        .job-description {
            font-size: 14px;
            line-height: 1.6;
        }
        .job-description h1,
        .job-description h2,
        .job-description h3 {
            font-size: 16px;
        }
        .mt-4 h2.h5 {
            font-size: 15px;
        }
    }