body .tj-jobs {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 40px;
    .tj-job {
        display: flex;
        padding: 3%;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0px 24px 32px -19px rgba(0, 0, 0, 0.26);
        border-radius: 16px;
        gap: 24px;
        border: 1px solid #D9DBE9;
        
    
        h3 {
            font-size: var(--e-global-typography-accent-font-size);
            line-height: var(--e-global-typography-accent-line-height);
            font-weight: 700;
            
        }
    }
    .tj-job-btn {
        display: flex;
        padding: 8px 16px;
        font-size: 14px !important;
        width: 130px;
        justify-content: space-between;
        svg {
            width: 14px; 
        }
    }
    .tj-job-meta {
        display: flex;
        gap: 14px;
        font-size: 14px;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
    }
    .tj-job-date {
        background-color: #ebe7fc;
        padding: 0px 16px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: bold;
        display: flex;
        height: 20px;
        line-height: 20px;
        }
}

@media (max-width: 767px) {
    body .tj-jobs {
        padding: 0 1rem;
        .tj-job {
            flex-direction: column;
            padding: 1rem;
            align-items: flex-start !important;
        }
        .tj-job-meta {
            display: flex;
            gap: 14px;
            font-size: 14px;
            flex-wrap: wrap;
            align-content: center;
            align-items: center;
        }
    }
}

@media (max-width: 497px) {
    body .tj-jobs {
        padding: 0 1rem;
       
        .tj-job-meta {
            display: flex;
            gap: 8PX;
            font-size: 14px;
            flex-wrap: wrap;
            align-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
        }
    }
}