.layout__private_events {
  display: flow-root;
}
.layout__private_events .private__panel {
  width: 100%;
  background: #f3dfce;
  color: #30121a;
  padding: clamp(56px, 5.2083333333vw, 100px) 7.292% clamp(90px, 13.5vw, 210px);
}
.layout__private_events .private__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0909090909rem;
  max-width: 45.4545454545rem;
  margin: 0 auto clamp(48px, 4.1666666667vw, 80px);
}
.layout__private_events .private__heading {
  color: #30121a;
}
.layout__private_events .private__copy {
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.5;
  max-width: 60ch;
}
.layout__private_events .private__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.0833333333vw, 40px);
}
@media (max-width: 800px) {
  .layout__private_events .private__gallery {
    grid-template-columns: 1fr;
  }
}
.layout__private_events .private__gallery-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.layout__private_events .private__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.layout__private_events .private__gallery-item:hover img {
  transform: scale(1.04);
}