.gallery-layout {
  grid-template-rows: minmax(0, 1fr);
  align-content: center;
  align-items: center;
  overflow: hidden;
}

.gallery-coming-soon {
  display: grid;
  gap: clamp(0.75rem, 1.8cqh, 1.25rem);
  place-items: center;
  align-content: center;
  width: min(100%, 44rem);
  max-width: 100%;
  min-height: clamp(15rem, 46cqh, 28rem);
  margin-inline: auto;
  padding: clamp(1.1rem, 3cqw, 2.4rem);
  border: 1px solid rgba(17, 17, 17, 0.14);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.92);
  background-size: 34px 34px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.gallery-coming-soon h2 {
  font-size: clamp(2.1rem, min(5.4cqw, 7cqh), 4.6rem);
}

.gallery-coming-soon p {
  max-width: 24rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.95rem, 1.55cqw, 1.16rem);
  font-weight: 800;
}

.gallery-instagram-link {
  width: min(100%, 18rem);
}

@media (max-width: 760px) {
  .gallery-layout {
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gallery-layout::-webkit-scrollbar {
    display: none;
  }

  .gallery-coming-soon {
    min-height: clamp(13rem, 48cqh, 24rem);
    padding: clamp(0.9rem, 5cqw, 1.4rem);
  }
}
