.operations-gallery {
  padding: 0 0 110px;
  background: white;
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.72fr 0.88fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.operations-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  min-height: 410px;
}

.operations-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.operations-photo-tall img {
  object-position: center 47%;
}

.operations-copy {
  background: var(--paper);
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.operations-copy h2 {
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -1.9px;
  margin: 0 0 24px;
}

.operations-copy > p:not(.section-kicker) {
  color: var(--muted);
  margin: 0;
}

.operations-copy small {
  display: block;
  margin-top: 32px;
  color: #7d8998;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 10px;
}

.category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.line-icon.toys {
  border-radius: 10px 50% 10px 50%;
  transform: rotate(45deg) scale(0.88);
}

.legal-name {
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

@media (max-width: 900px) {
  .operations-gallery {
    padding-bottom: 80px;
  }

  .operations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .operations-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 42px;
  }

  .operations-photo {
    min-height: 330px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .operations-gallery {
    padding-bottom: 65px;
  }

  .operations-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .operations-copy {
    grid-column: auto;
    grid-row: auto;
    padding: 34px 26px;
  }

  .operations-photo {
    min-height: 270px;
  }

  .operations-photo-tall {
    display: none;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    border-right: 0;
  }
}
