.info-icon-grid-section {
  background: var(--info-icon-grid-bg, rgb(var(--color-background)));
}

.info-icon-grid-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.info-icon-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 60px;
}

.info-icon-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-icon-grid-item__icon {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon-grid-item__icon img,
.info-icon-grid-item__icon svg {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
}

.info-icon-grid-item__title {
  margin-top: 20px;
  color: white;
}

.info-icon-grid-section__right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-icon-grid-section__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.info-icon-grid-section__image img,
.info-icon-grid-section__image svg {
  width: 100%;
  height: auto;
  display: block;
}

.info-icon-grid-section__button {
  margin-top: 32px;
}

.info-icon-grid-item__placeholder {
  background: rgb(var(--color-image-background));
}

@media (max-width: 959px) {
  .info-icon-grid-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .info-icon-grid-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
