.spj-personio-jobs {
    margin: 2rem 0;
}

.spj-personio-jobs__list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .spj-personio-jobs__list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.spj-job-item {
    width: 370px;
    border: 1px solid #DFE9F4;
    border-radius: 20px 20px 20px 20px;
    padding: 1.25rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.spj-job-item__title {
    color: #b80068;
  margin: 0 0 0.5rem;
  font-size: 22px;
  font-weight: 600;
    font-family: 'IBM Plex Mono', sans-serif;
    line-height: 26.4px;
    font-style: normal;
}

.spj-job-item__meta {
  margin: 0 0 1rem;
  color: #000;
  font-size: 0.9rem;
}

.spj-job-item__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
    margin: 25px 0;
}

.spj-job-item__details-btn,
.spj-job-detail__apply-btn,
.spj-job-item__apply-btn {
    cursor: pointer;
    padding: 0.5rem 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    fill: #ffffff;
    color: #ffffff;
    background-color: #b80068;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #b80068;
    border-radius: 100px 100px 100px 100px;
}
.spj-job-item__details-btn:hover {
    background: #182c3d;
    border-color: #182c3d;
}
.spj-job-item__apply-btn:hover {
    background: #182c3d;
    border-color: #182c3d;
}
.spj-job-detail__apply-btn:hover {
    background: #182c3d;
    border-color: #182c3d;
}

.spj-job-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spj-job-modal.spj-is-open {
  display: flex;
}

.spj-job-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.spj-job-modal__dialog {
  position: relative;
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
  margin: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  z-index: 1;
}

.spj-job-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.spj-job-detail__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.spj-job-detail__meta {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.95rem;
}

.spj-job-detail__section {
  margin-bottom: 1.25rem;
}

.spj-job-detail__section-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.spj-job-detail__section-body {
  font-size: 0.95rem;
  line-height: 1.5;
}

.spj-job-detail__info {
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #555;
}

.spj-job-detail__actions {
  margin-top: 1rem;
}

