.the-art-gallery-onboarding,
.the-art-gallery-form,
.the-art-gallery-form * {
  box-sizing: border-box;
}

.the-art-gallery-form {
  display: grid;
  gap: 14px;
  margin: 0;
}

.the-art-gallery-form small {
  color: var(--art-muted, #6d7470);
}

.the-art-gallery-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--art-ink, #111);
  font-size: 14px;
}

.the-art-gallery-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.the-art-gallery-grid,
.the-art-gallery-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.the-art-gallery-plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.the-art-gallery-plans article {
  padding: 22px;
  border: 1px solid rgba(16, 20, 20, 0.14);
  border-radius: 18px;
  background: #f8f8f6;
}

.the-art-gallery-plans form {
  display: grid;
  gap: 12px;
  margin: 0;
}

.the-art-gallery-plans h3,
.the-art-gallery-plans p {
  margin: 0;
}

@media (max-width: 780px) {
  .the-art-gallery-grid,
  .the-art-gallery-plans {
    grid-template-columns: 1fr;
  }

  .the-art-gallery-form .art-primary-btn,
  .the-art-gallery-plans .art-primary-btn {
    width: 100%;
  }
}
