@media (max-width: 767px) {
  .section--problem .problem {
    margin-inline: 0 calc(var(--container-padding-x) * -1);
  }
}

.problem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    --cols: 3;
    --gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--gap);
}

.problem__inner {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.problem__pagination {
  position: static;
  margin-top: 15px;
}

.problem .swiper-wrapper {
  width: 100% !important;
  flex-direction: row !important;
}

@media screen and (min-width: 768px) {
  .problem .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px;
  }
}

.problem .swiper-slide {
}

@media screen and (min-width: 768px) {
  .problem .swiper-slide {
    height: auto !important;
    margin: 0 !important;
  }
}

.problem__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 34px 54px;
  border-radius: var(--radius-lg);
}

@media screen and (max-width: 767px) {
  .problem__item {
    padding-inline: 22px;
  }
}

.problem__item-name {
  font-weight: 500;
  color: var(--color-accent);
}

@media screen and (max-width: 767px) {
  .problem__item-name {
    font-size: 20px;
  }
}

.problem__item-image-wrapper {
  display: flex;
  flex: 1 1;
  justify-content: center;
  align-items: center;
}