.ss-page {
  max-width: 52rem;
  margin: 0 auto 5rem;
}

.ss-page-header {
  padding: 0.4rem 0 2.2rem;
  border-bottom: 1px solid rgba(127, 127, 127, 0.28);
}

.ss-page-header h1 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.ss-page-deck {
  max-width: 44rem;
  margin: 1rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.ss-page-body {
  max-width: 44rem;
  margin: 2.4rem auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.ss-page-body > p:first-child {
  font-size: 1.18rem;
}

.ss-page-body h2 {
  margin-top: 2.6rem;
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3.6vw, 2.65rem);
  line-height: 1.06;
}

.ss-page-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.55rem;
  font-size: 1.4rem;
  line-height: 1.15;
}

.ss-page-body img,
.ss-page-body video,
.ss-page-body iframe {
  max-width: 100%;
}

.ss-page-body img {
  height: auto;
}

.ss-page-body blockquote {
  margin: 1.8rem 0;
  padding: 0.2rem 0 0.2rem 1.25rem;
  border-left: 4px solid #f4c430;
  font-size: 1.16rem;
  line-height: 1.62;
}

.ss-page-body ul,
.ss-page-body ol {
  padding-left: 1.3rem;
}

.ss-page-body li + li {
  margin-top: 0.45rem;
}

.ss-page-body hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid rgba(127, 127, 127, 0.28);
}

/* Search / subscribe forms rendered inside Micro.blog pages */
.ss-page-body form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 1.5rem;
}

.ss-page-body form input[type="search"],
.ss-page-body form input[type="text"],
.ss-page-body form input[type="email"] {
  flex: 1 1 18rem;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(127, 127, 127, 0.45);
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.ss-page-body form input[type="submit"],
.ss-page-body form button {
  padding: 0.65rem 0.9rem;
  border: 1px solid #c99a0a;
  border-radius: 0;
  background: #f4c430;
  color: #111;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ss-page-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.75fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(127, 127, 127, 0.28);
  border-bottom: 1px solid rgba(127, 127, 127, 0.28);
}

.ss-page-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.8rem;
  font-weight: 700;
}

.ss-page-footer-note {
  align-self: center;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.78;
}

.ss-page-footer-note p {
  margin: 0;
}

.ss-page-footer-note p + p {
  margin-top: 0.45rem;
}

.ss-site-credits {
  max-width: 52rem;
  margin: 1.25rem auto 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(127, 127, 127, 0.18);
  font-size: 0.72rem;
  line-height: 1.45;
  opacity: 0.56;
}

.ss-site-credits p {
  margin: 0;
}

.ss-site-credits a {
  color: inherit;
  text-decoration-color: currentColor;
}

.ss-site-credits span {
  display: inline-block;
  margin: 0 0.35rem;
}

@media (max-width: 700px) {
  .ss-page-header h1 {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }

  .ss-page-body {
    font-size: 1.04rem;
    line-height: 1.72;
  }

  .ss-page-body form {
    align-items: stretch;
  }

  .ss-page-body form input[type="submit"],
  .ss-page-body form button {
    width: 100%;
  }

  .ss-page-footer {
    grid-template-columns: 1fr;
  }

  .ss-site-credits {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
}}}