body.page-crowdfunding-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-crowdfunding {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px) 28px clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line2);
}

.page-crowdfunding__inner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.page-crowdfunding__title {
  font-family: "Helvetica Neue", Helvetica, Ordina, Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 28px;
  text-wrap: balance;
}

.page-crowdfunding__frame {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-crowdfunding__iframe {
  display: block;
  width: 100%;
  min-height: min(720px, calc(100vh - 280px));
  height: min(720px, calc(100vh - 280px));
  border: 0;
  background: #fff;
}

.page-crowdfunding__fallback {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.page-crowdfunding__fallback a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
