* {
  box-sizing: border-box;
}
.business-section {
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.visible {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.visible.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.business-gallery {
  background: transparent;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff62ea;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-section h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: #fafafa;
}

.business-section > p {
  max-width: 660px;
  margin: 22px auto 0;
  color: #f5f5f5;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
  margin-top: 46px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  display: block;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

@media (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }
}
