.job-cards-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.job-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
}

.job-card-logo {
  width: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain;
  display: block;
}

.job-card-logo img {
  width: 48px;
  display: block;
}

.job-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.job-card-company {
  font-size: 16px; /* maior que antes */
  font-weight: 700;
}

.job-card-role {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.job-card-button {
  display: block;
  padding: 12px 18px;
  text-align: center;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-top: 12px;
}

/* Um pouco de organização visual no editor */
.job-cards-editor-wrapper {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
}

.job-card-editor {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.job-card-editor:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.job-cards-add-wrapper {
  margin-top: 10px;
}

.job-card-separator {
  border-top: 1px solid #e5e5e5;
  margin: 10px 0;
}

.job-card-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}