.list-jobs {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cột trên 1 hàng */
    gap: 20px; /* Khoảng cách giữa các item */
}

.item-job {
    border: 1px solid #ddd;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
}

.verified-company p {
    font-size: 13px;
    font-weight: 200;
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
    padding: 5px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.verified-company p svg {
    width: 13px;
}
.verified-company {
    display: flex;
    align-items: center;
    justify-content: end;
}

.item-job-head {
    display: flex;
    gap: 30px;
    align-items: center;
}

.item-job-head h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 28px;
    color: #191919;
    font-weight: 700;
}

.item-job-head-detail p {
    font-weight: 200;
}

.item-job-head  img {
    width: 100px;
}

.item-job-head {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}

.item-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.item-job-footer svg {
    width: 15px;
}

.item-job-worikng-time {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.salary-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-search-jobs {
    background-color: #FFFFFF75;
    padding: 20px 20px 20px 20px;
    border-radius: 3px 3px 3px 3px;
}

.form-search-jobs  button {
    width: 100%;
    font-weight: 700;
}

.form-search-jobs .elementor-field-group {
    padding-right: calc(10px / 2);
    padding-left: calc(10px / 2);
}

.form-search-jobs .elementor-field-textual {
    background: white;
}

@media screen and (max-width: 768px) {
    .list-jobs {
        grid-template-columns: repeat(1, 1fr);
    }
}