.ly_jobArchive {
  overflow: hidden;
}

.ly_jobMap {
  padding: 160px 20px 0;
}

.bl_jobMap_header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.bl_jobMap_header p:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(1.5rem, 1.1429rem + 1.7857vw, 2rem);
}

.bl_jobMap_header p:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.bl_jobMap_header p:last-child span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.bl_jobMap_header p:last-child span svg {
  max-width: 32px;
  max-height: 32px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.bl_jobMap iframe {
  width: 100%;
  height: 360px;
  border: none;
  margin-top: 12px;
}

.ly_jobFilters {
  padding: 48px 20px;
}

.bl_jobFilters {
  background: #f5f5f5;
  padding: 32px 20px;
  border-radius: 8px;
}

.bl_jobFiltersForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_jobFiltersGroup {
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}

.bl_jobFiltersGroup_title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.bl_jobFiltersGroup_items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bl_jobFiltersCheckbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bl_jobFiltersCheckbox input[type='checkbox'] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d9d9d9;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.bl_jobFiltersCheckbox input[type='checkbox']:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.bl_jobFiltersCheckbox input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bl_jobFiltersCheckbox span {
  font-size: 14px;
}

.bl_jobFiltersSubmit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.bl_jobFiltersSubmit button {
  width: 100%;
  margin-top: 0;
  max-width: 280px;
  gap: 16px;
}

.bl_jobFiltersSubmit button:after {
  content: none;
}

.bl_jobFiltersReset {
  font-size: 14px;
  color: #767777;
  text-decoration: underline;
}

.bl_jobNoResults {
  text-align: center;
  padding: 40px 20px;
  color: #767777;
}

.ly_job {
  padding: 0px 20px 160px;
}

.bl_jobList {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.bl_jobList .bl_jobListItem {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_jobListThumb {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 335 / 220;
}

.bl_jobListText {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_jobListTitle {
  font-size: 16px;
  font-weight: 700;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl_jobListMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bl_jobListMeta span {
  display: block;
  background: #fff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.bl_jobListDetails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl_jobListDetails p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (min-width: 768px) {
  .ly_jobMap {
    padding-top: 200px;
  }

  .bl_jobMap {
    max-width: 1040px;
    margin-inline: auto;
  }

  .bl_jobMap_header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
  }

  .bl_jobMap_header p:last-child span svg {
    max-width: 56px;
    max-height: 56px;
  }

  .bl_jobMap iframe {
    aspect-ratio: 1040 / 780;
    max-height: 60vh;
    height: auto;
    margin-top: 0;
  }

  .ly_jobFilters {
    margin-block: 120px;
    padding-block: 0;
  }

  .bl_jobFilters {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px min(80px, 5.5vw);
  }

  .bl_jobFiltersForm {
    gap: 32px;
  }

  .bl_jobFiltersGroup {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }

  .bl_jobFiltersGroup_title {
    font-size: 18px;
    margin-bottom: 0;
    width: 120px;
    flex-shrink: 0;
  }

  .bl_jobFiltersGroup_items {
    gap: 16px 24px;
  }

  .bl_jobFiltersCheckbox span {
    font-size: 16px;
  }

  .bl_jobFiltersSubmit {
    justify-content: center;
    gap: 24px;
  }

  .bl_jobFiltersSubmit button {
    width: auto;
    height: 52px;
    min-width: 200px;
    cursor: pointer;
  }

  .bl_jobFiltersSubmit button:hover {
    opacity: 0.8;
  }

  .ly_job {
    padding-bottom: 200px;
  }

  .bl_job {
    max-width: 1040px;
    margin-inline: auto;
  }

  .bl_jobList .bl_jobListItem {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .bl_jobListItem:hover .bl_jobListThumb img {
    transform: scale(1.05);
  }

  .bl_jobListItem:hover .bl_jobListTitle {
    text-decoration: underline;
  }

  .bl_jobListThumb {
    aspect-ratio: 400 / 260;
    flex-shrink: 0;
    max-width: 400px;
    max-height: 260px;
    width: 28vw;
  }

  .bl_jobListThumb img {
    transition: transform 0.3s ease;
  }

  .bl_jobListDetails p {
    flex-direction: row;
  }

  .bl_jobListDetails p span:first-child {
    min-width: 120px;
    flex-shrink: 0;
  }

  .bl_jobListDetails p span br {
    display: none;
  }
}