.section__title {
  margin-top: 20px;
  margin-bottom: -4px;
}

.vacancies__ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vacancies__block,
.vacancies__ul {
  margin: 32px 0;
}

.vacancies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.vacancies__image {
  border-radius: 14px;
  max-width: 450px;
  margin: auto;
}

.vacancies__image img {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation-fill-mode: both;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  animation-delay: 200ms;
}

.vacancies__ul li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vacancies__number {
  width: 22px;
  height: 22px;
  border: 2px solid #e91932;
  background: #e91932;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 0.8;
}

@media (max-width: 1024px) {
  .vacancies__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .vacancies__block,
  .vacancies__ul {
    margin: 24px 0;
  }
  .section__title {
    margin-bottom: 6px;
  }
}
