.card-integration {
  grid-column: span 5;
  min-height: 300px;
  background: #fffaf0;
}

.card-integration p {
  color: #5e696f;
}

.integration-mark {
  display: flex;
  gap: 9px;
  margin-bottom: auto;
  align-items: center;
}

.integration-mark i {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  position: relative;
}

.integration-mark i::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.integration-mark i:nth-child(2) {
  transform: translateY(10px);
}

.card-photo {
  grid-column: span 7;
  min-height: 300px;
}

@media (max-width: 850px) {
  .card-integration,
  .card-photo {
    grid-column: span 12;
  }
}
