.job-card {
    list-style: none;
    margin-bottom: 24px;
}

.job-card__link {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 32px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.job-card__link:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.job-card__title {
    margin: 0 0 6px;
}

.job-card__meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.job-card__excerpt {
    color: #374151;
    margin-bottom: 16px;
}

.job-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 13px;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 999px;
}

.job-card__cta {
    align-self: center;
    font-weight: 500;
    color: #2563eb;
    white-space: nowrap;
}
