.we-can-offer__wrapper {
  display: grid;
  justify-content: space-between;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.we-can-offer__img {
  width: 255px;
  height: 233px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.we-can-offer__img img {
  width: 100%;
  object-fit: cover;
}
.we-can-offer__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
}

.we-can-offer-price {
  display: flex;
  gap: 10px;
}
.we-can-offer-price__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}
.we-can-offer-price__price {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}
@media (max-width: 1024px) {
  .we-can-offer__item {
    min-width: 30%;
  }
  .we-can-offer__wrapper {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
  }
}
@media (max-width: 768px) {
  .we-can-offer__item {
    min-width: 40%;
  }
}
@media (max-width: 576px) {
  .we-can-offer__item {
    min-width: 80%;
  }
}
