.tx-jobapplications {
    .job-detail {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }

    .job-sidebar {
        order: 1;
    }

    .job-image {
        margin-bottom: 2rem;
    }

    .job-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .job-meta-card h4 {
        margin: 0 0 1.5rem 0;
        color: var(--color-secondary);
        font-size: 1.25rem;
        font-weight: 600;
    }

    .meta-item {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--color-secondary-10);
    }

    .meta-item:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
    }

    .meta-item b {
        color: var(--color-secondary-60);
        font-size: 0.875rem;
    }

    .contact-info {
        margin-top: 0.75rem;
    }

    .contact-info div {
        margin-bottom: 0.5rem;
    }

    .contact-info a {
        color: var(--color-primary-1);
        text-decoration: none;
    }

    .contact-info a:hover,
    .contact-info a:focus {
        text-decoration: underline;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-back {
        width: 65%;
        padding: 1rem;
        border-radius: 2rem;
        margin-top: 2rem;
        border-top: 1px solid var(--color-secondary-10);
        align-self: center;
    }

    .job-content {
        order: 2;
    }

    .job-header {
        border-bottom: 2px solid var(--color-secondary-10);
        margin-bottom: 2rem;
    }

    .job-title {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-secondary);
        line-height: 1.2;
        margin: 0 0 1rem 0;
    }

    .job-sections {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;

        .content-section {
            margin-top: 0;
        }
    }

    .content-section h3 {
        font-weight: 600;
        margin: 0 0 1.5rem 0;
    }

    .content-text {
        color: var(--color-secondary-80);
        line-height: 1.7;
    }

    .content-text p {
        margin-bottom: 1rem;
    }

    .content-text ul,
    .content-text ol {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .content-text li {
        margin-bottom: 0.5rem;
    }

    .cta-section {
        margin-top: 3rem;
    }

    .cta-card {
        padding: 1rem 2rem;
        text-align: center;
    }

    .cta-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
    }

    .cta-card p {
        font-size: 1.125rem;
        margin: 0 0 2rem 0;
        opacity: 0.9;
    }

    .btn-primary {
        color: var(--color-white);
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 2rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-primary:hover {
        background-color: var(--color-secondary-60);
        text-decoration: none;
        color: var(--color-white);
    }

    @media (max-width: 1024px) {
        .tx-jobapplications .job-detail {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .job-sidebar {
            position: static;
            order: 2;
        }

        .job-content {
            order: 1;
        }
    }

    @media (max-width: 768px) {
        .tx-jobapplications .job-detail {
            margin-top: 1rem;
            gap: 1.5rem;
        }

        .job-title {
            font-size: 1.875rem;
        }

        .content-section {
            padding: 1.5rem;
        }

        .job-meta-card {
            padding: 1.25rem;
        }

        .cta-card {
            padding: 2rem 1.5rem;
        }
    }
}
