.jobs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.job-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.job-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
}

.job-content {
    flex: 1;
    margin-left: 20px;
}

.job-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.job-title a {
    text-decoration: none;
    color: #222;
}

.job-title a:hover {
    color: #0073e6;
}

.job-meta {
    font-size: 14px;
    color: #777;
    margin: 8px 0;
    display: flex;
    gap: 15px;
}

.job-excerpt {
    font-size: 14px;
    color: #555;
}

.job-salary {
    font-weight: 600;
    font-size: 16px;
    color: #2c7a7b;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-content {
        margin-left: 0;
        margin-top: 15px;
    }

    .job-salary {
        margin-top: 10px;
    }
}