.job-card {
    border: 1px solid grey;
    padding: 8px;
    border-radius: 28px;
}

.job-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px 18px 0 0;
    padding: 24px 16px 20px;
    /* background-color: aquamarine; */
}

.job-card-header .date {
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #fff;
    font-weight: 600;
}

.job-card-header .header-icon {
    width: 44px;
    height: 44px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background-color: white;
    border-radius: 50%;
}

.job-card-header .header-icon img {
    max-width: 70%;
    max-height: 70%;
}

.job-card-body {
    padding: 16px;
    border-radius: 0 0 18px 18px;
    /* background-color: aquamarine; */
}

.job-card-body .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.job-card-body .title .inner1 {
    padding-right: 24px;
    width: calc(100% - 100px);
}

.job-card-body .title .inner1 h2 {
    font-weight: normal
}

.job-card-body .title .inner2 {
    width: 80px;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: white;
    border-radius: 50%;
}

.job-card-body .title .inner2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
}

.card-badge {
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid;
    font-weight: 600;
}

.job-card-footer {
    padding: 24px 16px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: white;
}

.job-card-footer .inner1 {
    flex: 1;
}
