.hibob-hiring__filters {
    display:flex;
    flex-wrap:wrap;
    gap: 12px;
    margin: 48px 0;
    align-items:flex-end;
}

.hibob-hiring__filter label {
    font-size:0.9em;
    font-weight: 600;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.hibob-hiring__filter select {
    min-width:160px;
    padding:4px 6px;
}

.hibob-hiring__filter__country {
    display: none;
}

.hibob-hiring__list {
    column-gap: 1.875rem;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    padding-top: 0.75rem;
    row-gap: 0.75rem;
    list-style:none;
    margin:0;
    padding:0;
}

.hibob-hiring__item {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 3px 5px 0px rgba(148,145,145,0.3);
    padding: 24px;
    position: relative;
    margin-top: 0;
}

.hibob-hiring__item:hover {
    border: 1px solid #98a2b3;
    box-shadow: none;
}

.hibob-hiring__toggle {
    background-color: transparent;
    border: none;
    font-weight: 300;
    position: relative;
    text-align: left;
    width: 100%;
}

.hibob-hiring__item:after {
    bottom: 24px;
    content: " ";
    display: block;
    background-color: #153447;
    position: absolute;
    -webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    transform: translateX(0);
    transition: transform var(--transition--duration) var(--transition--ease) 0s;
    height: 20px;
    right: 24px;
    width: 20px;
}

.hibob-hiring__item:hover:after {
    background-color: #ED5740;
    right: 27px;
}

.hibob-hiring__country {
    padding-top:10px;
}

.hibob-hiring__country:before {
  background-color: var(--color--navy-teal);
  content: "";
  display: inline-block;
  height: 18px;
  margin-bottom: -.125rem;
  margin-right: var(--space--xxs);
  -webkit-mask-image: url(images/event-location.svg);
  mask-image: url(images/event-location.svg);
  width: 18px;
}

/*
.hibob-apply-btn {
    padding: 10px 16px;
    border: 1px solid #111;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}*/

@media (min-width: 48em) {
  .hibob-hiring__list {
    --grid--columns: 2;
  }
}

/* Popup content styles */

.hibob-hiring__desc-inner p[style],
.hibob-section--description p[style],
.hibob-section--responsibilities p[style],
.hibob-section--requirements p[style],
.hibob-section--benefits p[style],
.hibob-hiring__desc-inner ul[style],
.hibob-section--description ul[style],
.hibob-section--responsibilities ul[style],
.hibob-section--requirements ul[style],
.hibob-section--benefits ul[style],
.hibob-hiring__desc-inner li[style],
.hibob-section--description li[style],
.hibob-section--responsibilities li[style],
.hibob-section--requirements li[style],
.hibob-section--benefits li[style],
.hibob-hiring__desc-inner div[style],
.hibob-section--description div[style],
.hibob-section--responsibilities div[style],
.hibob-section--requirements div[style],
.hibob-section--benefits div[style] {
    font-weight: 300 !important;
}

/* Popup styles */
.hibob-hiring__popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hibob-hiring__popup-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.hibob-hiring__popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(21, 52, 71, 0.5);
    z-index: 9999;
    max-width: 1000px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.hibob-hiring__popup--visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.hibob-hiring__popup-close {
    background: #ED5740;
    border-radius: 4px;
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: white;
    padding: 4px 10px;
    z-index: 1;
}

.hibob-hiring__popup-close:hover {
    background: #153447;
}

.hibob-hiring__popup-header {
    border-bottom: 1px solid #98a2b3;
    padding: 24px 24px 18px 24px;
}

.hibob-hiring__popup-header h3 {
    margin: 0;
    font-size: 1.5em;
    padding-right: 40px;
}

.hibob-hiring__popup-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.hibob-hiring__popup-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.hibob-hiring__popup-content .hibob-hiring__apply-wrap {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e6e6e6;
}
