.priorities {
  margin-top: 100px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.priorities__content {
  width: 736px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.priorities__heading {
  margin: 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 110%;
}

.priorities__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.priorities__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #D9D9D94D;
  font-size: 12px;
  line-height: 110%;
}

.priorities__item:first-child {
  border-top: 1px solid #D9D9D94D;
}

.priorities__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.priorities__button {
  box-sizing: border-box;
  width: 116px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px 9px;
  border-radius: 50px;
  background: #EFEFEF;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  font-size: 13px;
}

.priorities__button:hover {
  background: #E4E4E4;
}

.priorities__button:active {
  background: #D5D5D5;
}

.priorities__image {
  width: 736px;
  height: 817px;
  flex-shrink: 0;
}

.priorities__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .priorities {
    flex-direction: column;
    padding: 0 32px;
  }

  .priorities__content {
    gap: 64px;
    width: 100%;
    margin-top: 32px;
  }

  .priorities__heading {
    font-size: 48px;
    line-height: 110%;
  }

    .priorities__image {
      order: -1;
      width: 100%;
      height: 817px;
    }

  .priorities__item {
    gap: 16px;
    padding: 16px 0;
    font-size: 28px;
  }

  .priorities__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .priorities__button {
    width: 258px;
    height: 67px;
    padding: 30px 18px;
    border-radius: 50px;
    font-size: 28px;
  }

  .about-hero + .priorities {
    margin-top: 0;
  }

  .about-hero + .priorities .priorities__image {
    width: 100vw;
    height: auto;
    max-width: none;
    margin: 0 -32px 100px -32px;
  }

  .about-hero + .priorities .priorities__image img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .priorities {
    padding: 0 20px;
  }

  .priorities__content {
    gap: 32px;
    margin-top: 20px;
  }

  .priorities__heading {
    font-size: 26px;
  }

  .priorities__image {
    height: 420px;
  }

  .priorities__item {
    padding: 12px 0;
    font-size: 16px;
  }

  .priorities__icon {
    width: 18px;
    height: 18px;
  }

  .priorities__button {
    width: auto;
    height: 46px;
    padding: 14px 22px;
    font-size: 16px;
  }

  .about-hero + .priorities .priorities__image {
    margin: 0 -20px 60px -20px;
  }
}
