.main-content {
    padding: 2rem var(--spacing);
}

.jobs {
    width: 100%;
    display: grid;
    row-gap: 2rem;
    column-gap: 3rem;
}

.jobs .card {
    border-radius: 8px;
    padding: 1rem;
    background-color: #a6a6a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 400px;
    background: radial-gradient(circle at 50% 50%, #ffffff, #fffdfd, #939090);
    cursor: pointer;
}

.jobs .card img {
    height: 45%;
    width: 100%;
}
.jobs .card p {
    margin-bottom: 0;
}

.jobs .card .btn-link {
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.jobs .card p {
    width: 90%;
    margin-bottom: 0;
}

.jobs .card p.text-right {
    width: 100%;
    margin-top: auto;
}

@media (min-width: 768px) {
    .jobs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .jobs {
        grid-template-columns: repeat(3, 1fr);
    }
}
