.vacancies .hero .sign-up {
    background-color: #226296;
    border: 0px
}


.vacancy-item-wrapper {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    border-radius: 20px;
}

.vacancy-item-header {
    display: flex;
}

.vacancy-item-header > * {
    margin-right: 20px;
}


.vacancy-item-highlight {
    color: #fff;
    background-color: #006799;
}


.vacancy-item-detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.vacancy-item-snippet {
    padding-bottom: 20px;
}

.vacancy-item-snippet .rich-text * {
    font-size: 16px !important;
    font-weight: normal !important;
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none;
    font-style: normal !important;
}

.vacancy-item-rem-days {
    padding-bottom: 20px;
    color: #006799;
}

.vacancy-item-deadline {
    color: #006799;
    padding-bottom: 20px;
}

.vacancy-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.vacancy-item-station {
    display: flex;
    align-items: center;
}

.vacancy-item-station > * {
    margin-right: 10px;
}

.vacancy-item-view-more {

}


/*768px and lower*/
@media screen and (max-width: 768px) {

    .vacancy-item-header {
        flex-direction: column;
    }

    .vacancy-item-header .vacancy-item-highlight {
        margin-bottom: 20px;
        max-width: 100px;
    }
}


/* ── RESULTS WRAPPER ── */
.vl-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── LIST ── */
.vl-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ── ITEM ── */
.vl-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.vl-item:hover {
  border-color: var(--background-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* closed item — muted */
.vl-item--closed {
  opacity: 0.75;
}

.vl-item--closed:hover {
  border-color: #eee;
  box-shadow: none;
}

/* ── HEADER ── */
.vl-item-header {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── TITLE ROW ── */
.vl-item-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* new badge */
.vl-new-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--primary-color);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* closed badge */
.vl-closed-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: #FEE2E2;
  color: #B91C1C;
  white-space: nowrap;
  flex-shrink: 0;
}

/* title */
.vl-item-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.vl-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.12s;
}

.vl-item:hover .vl-item-title a {
  color: var(--primary-color);
}

/* ── META PILLS ── */
.vl-item-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.vl-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f4f6f9;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #eee;
}

.vl-pill .icon {
  display: inline-flex;
  align-items: center;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.vl-pill .icon svg {
  width: 12px;
  height: 12px;
  fill: var(--primary-color);
}

.vl-pill-label {
  font-weight: 700;
  color: #888;
}

/* closed pill — red tint */
.vl-pill--closed {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #B91C1C;
}

.vl-pill--closed .icon svg {
  fill: #B91C1C;
}

.vl-pill--closed .vl-pill-label {
  color: #B91C1C;
}

/* ── BODY ── */
.vl-item-body {
  padding: 1rem 1.5rem 1.25rem;
}

/* ── FOOTER ── */
.vl-item-footer {
  display: flex;
  align-items: center;
}

/* view details link */
.vl-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap 0.15s;
}

.vl-view-btn:hover {
  gap: 8px;
  color: var(--primary-color);
}

.vl-view-btn .btn-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--primary-color);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .vl-item-header { padding: 1rem 1.25rem 0.875rem; }
  .vl-item-body   { padding: 0.875rem 1.25rem 1rem; }
  .vl-item-title  { font-size: 15px; }
  .vl-pill        { font-size: 10px; padding: 3px 8px; }
}

@media (max-width: 480px) {
  .vl-item-title { font-size: 14px; }
} 