.jobs-list {
    display: grid;
    gap: clamp(12px, calc(6.451px + 1.186vw), 24px);
}
.jobs-list .dummy-pulsate {
    padding-top: 66%;
    animation: Pulsate 1s linear infinite;
}
@keyframes Pulsate {
    from {
        opacity: .3;
    }
    50% {
        opacity: .5;
    }
    to {
        opacity: .3;
    }
}
.job-card {
    background-color: #fff;
    padding: clamp(0.875rem, 0.6837rem + 0.6122vw, 1.25rem);
    display: flex;
    flex-direction: column;
}
.job-card h3 {
    font-size: clamp(1.5rem, 1.1811rem + 1.0204vw, 2.125rem);
    font-weight: 700;
    line-height: 1.3;
    text-wrap: balance;
    margin-bottom: clamp(0.5rem, 0.4362rem + 0.2041vw, 0.625rem);
}
.job-card .job-meta {
    margin: 0 0 clamp(1rem, 0.4898rem + 1.6327vw, 2rem);
    border-top: 1px solid #e1e1e1;
    padding: clamp(0.625rem, 0.5612rem + 0.2041vw, 0.75rem) 0 0;
    list-style: none;
}
.job-card .job-meta li {
    font-size: clamp(0.875rem, 0.8112rem + 0.2041vw, 1rem);
    font-weight: 500;
    display: block;
    margin: 0 0 clamp(0.25rem, 0.1862rem + 0.2041vw, 0.375rem) 0;
}
.job-message {
    font-size: clamp(1rem, 0.4643rem + 1.7143vw, 1.75rem);
    text-align: center;
    text-wrap: balance;
    background: rgba(255,255,255,.25);
    padding: 1.2rem 1.2rem 0.2rem;
}
@media only screen and (min-width: 468px) and (max-width: 768px) {
    .jobs-list .dummy-pulsate {
        padding-top: 50%;
    }
}
@media only screen and (min-width: 768px) {
    .jobs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 1024px) {
    .jobs-list {
        grid-template-columns: repeat(3, 1fr);
    }
}