.bernarion-latest-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bernarion-latest-jobs-grid.bernarion-jobs-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.bernarion-latest-jobs-grid.bernarion-jobs-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bernarion-latest-job-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--bernarion-light-border-color);
    padding: 20px;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bernarion-latest-job-card:hover {
    transform: translateY(-10px);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.bernarion-latest-job-title a {
    color: #1B0A3B !important;
    font-size: 18px;
    font-weight: 600;
}

.bernarion-latest-job-location {
    color: #7C7C7C;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.bernarion-latest-job-company {
    color: #7C7C7C;
    font-size: 16px;
    font-weight: 500;
}

.bernarion-latest-job-meta {
    color: #7649D0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bernarion-latest-job-details {
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bernarion-latest-job-details span:after {
    content: '·';
    margin-left: 6px;
}

.bernarion-latest-job-salary:after {
    display: none !important
}

.bernarion-latest-job-salary-label {
    color: #4CBD97;
    font-weight: 500 !important;
}

.bernarion-latest-job-fav {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #c5adf5;
    border-radius: 50%;
    width: 40px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bernarion-latest-job-heart {
    font-size: 28px;
    color: #AC82FF;
    cursor: pointer;
    transition: color 0.2s;
}

.bernarion-latest-job-heart:hover {
    color: #7649D0;
}

.bernarion-latest-jobs-footer {
    text-align: center;
    margin-top: 32px;
}

.bernarion-latest-jobs-link {
    color: #7649D0 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.bernarion-latest-jobs-link:hover {
    color: #451F90 !important;
}

@media (max-width: 900px) {
    .bernarion-latest-jobs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bernarion-latest-jobs-grid.bernarion-jobs-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}