/* Brand values from gospelambition.org. Original theme CSS is in source/. */
:root {
  --brand-red: #bd1218;
  --brand-white: #fff;
  --brand-charcoal: #333;
  --brand-light-gray: #ededed;
  --brand-dark: #1f1f1f;
}

body.placeholder-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  border-top: 6px solid var(--brand-red);
  background: var(--brand-white);
  color: var(--brand-charcoal);
}

.placeholder {
  width: min(100%, 520px);
  text-align: center;
}

.placeholder-logo {
  display: block;
  width: 100%;
  height: auto;
}

.placeholder-rule {
  width: 48px;
  height: 3px;
  margin: 40px auto 24px;
  background: var(--brand-red);
}

.placeholder h1 {
  margin: 0;
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--brand-charcoal);
}
