:root {
  --acentis-careers-card-bg: #F3F3F3;
  --acentis-careers-title-color: #111723;
  --acentis-careers-meta-color: #363636;
  --acentis-careers-arrow-bg: #F96153;
}

.acentis-careers {
  font-family: var(--e-global-typography-primary-font-family, inherit);
  color: var(--acentis-careers-title-color);
}

.acentis-careers input,
.acentis-careers select,
.acentis-careers button {
  font-family: inherit;
}

.acentis-careers__toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.acentis-careers__search {
  position: relative;
  flex: 1 1 260px;
  max-width: 520px;
}

.acentis-careers__search input {
  width: 100%;
  height: 44px;
  padding: 10px 14px 10px 42px;
  border: 1px solid rgba(17, 23, 35, 0.12);
  border-radius: 10px;
  background: #F5F5F5;
  color: var(--acentis-careers-title-color);
  outline: none;
}

.acentis-careers__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #F96153;
}

.acentis-careers__filterBtn {
  height: 44px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: rgba(17, 23, 35, 0.8);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.acentis-careers__filterBtn:focus,
.acentis-careers__filterBtn:focus-visible {
  outline: none;
  box-shadow: none;
  background: #fff;
  color: rgba(17, 23, 35, 0.8);
}

.acentis-careers__filterBtn:active {
  background: #fff;
  color: rgba(17, 23, 35, 0.8);
}

.acentis-careers__filterBtn:hover {
  background: #FDE0DD;
  color: #F96153;
}

.acentis-careers__filterBtn svg {
  width: 18px;
  height: 18px;
}

.acentis-careers__filters {
  display: none;
  width: 100%;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.acentis-careers__filters.is-open {
  display: flex;
}

.acentis-careers__filters select {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 23, 35, 0.12);
  border-radius: 10px;
  background: #fff;
  color: rgba(17, 23, 35, 0.9);
  flex: 1 1 180px;
  min-width: 180px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23111723' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
}

.acentis-careers__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.acentis-careers__card {
  background: var(--acentis-careers-card-bg);
  border-radius: 12px;
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.acentis-careers__cardLeft {
  min-width: 0;
}

.acentis-careers__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--acentis-careers-title-color);
  font-weight: 700;
}

.acentis-careers__meta {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--acentis-careers-meta-color);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.acentis-careers__arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--acentis-careers-arrow-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease;
}

.acentis-careers__arrow svg {
  width: 18px;
  height: 18px;
  color: #111723;
  transition: transform 160ms ease;
}

.acentis-careers__card:hover .acentis-careers__arrow {
  transform: translateX(6px);
}

.acentis-careers__card:hover .acentis-careers__arrow svg {
  transform: rotate(45deg);
}

.acentis-careers__empty {
  padding: 16px;
  color: rgba(17, 23, 35, 0.7);
}

.acentis-careers__pagination {
  margin-top: 18px;
}

.acentis-careers__paginationInner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.acentis-careers__paginationInner .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(17, 23, 35, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--acentis-careers-title-color);
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
}

.acentis-careers__paginationInner .page-numbers.current {
  background: #F5F5F5;
  font-weight: 700;
}

@media (max-width: 520px) {
  .acentis-careers__card {
    padding: 16px;
  }
  .acentis-careers__arrow {
    width: 40px;
    height: 40px;
  }
}
