/* ---------------------------------------------------------------
   One Sky Ally — manifesto long-form reading layout
   --------------------------------------------------------------- */

.manifesto-header {
  padding-block: 1.1rem;
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.manifesto-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.manifesto-header a:hover {
  color: var(--gold);
}

.essay {
  width: min(100% - 2.75rem, 42rem);
  margin-inline: auto;
  padding-block: clamp(4rem, 9vw, 7rem) 5rem;
}

.essay__kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.essay__title {
  margin-top: 1.3rem;
  font-size: clamp(2.3rem, 6vw, 3.9rem);
  font-weight: 480;
  text-align: center;
}

.essay__byline {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.essay__byline a {
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-strong);
}

.essay__byline a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Star divider stands in for horizontal rules */

.star-divider {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-block: clamp(2.6rem, 6vw, 3.8rem);
  color: var(--gold);
  font-size: 0.85rem;
  border: none;
}

.star-divider::before,
.star-divider::after {
  content: '✦';
  opacity: 0.45;
}

.star-divider span::before {
  content: '✦';
}

.essay-body {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.essay-body > p + p {
  margin-top: 1.35rem;
}

.essay-body > p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--text);
}

.essay-body h2 {
  margin-top: 3.2rem;
  margin-bottom: 1.3rem;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  color: var(--text);
}

.essay-body strong {
  color: var(--text);
}

.essay-body em {
  font-style: italic;
}

.essay-body ul {
  margin-top: 1.35rem;
  padding-left: 0;
  list-style: none;
}

.essay-body ul li {
  position: relative;
  padding-left: 1.7rem;
  margin-top: 0.85rem;
}

.essay-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.8rem;
  color: var(--gold);
}

.essay__outro {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-muted);
}

.essay__outro a {
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-strong);
}

.essay__outro a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.essay-footer {
  border-top: 1px solid var(--border);
  padding-block: 2.6rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.essay-footer a {
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-strong);
}

.essay-footer a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
