.job-openings-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.job-card {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}
.job-left {
    margin-right: 20px;
}
.job-avatar {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 50%;
}
.job-right {
    flex: 1;
}
.job-title {
    margin: 0 0 10px 0;
    font-weight: 600;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #333;
}
.job-icon i {
    margin-right: 5px;
}
