/* ==========================================================================
   Broadsheet — centered serif masthead, hairline rules, dates right-aligned.
   (HANDOVER §3.2)
   ========================================================================== */

.theme-broadsheet .doc-masthead {
  text-align: center;
  padding-bottom: 1.1em;
  border-bottom: 0.5pt solid var(--rule-color);
  margin-bottom: 1.4em;
}

.theme-broadsheet .doc-name {
  font-size: 2.3em;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.theme-broadsheet .doc-contact {
  margin-top: 0.5em;
  font-size: 0.88em;
}

.theme-broadsheet .doc-section {
  margin-bottom: 1.35em;
}

.theme-broadsheet .doc-section-title {
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-heading);
  text-align: center;
  margin-bottom: 0.9em;
  display: flex;
  align-items: center;
  gap: 1em;
}
/* Flanking rules are flex items, so the gap around the text holds no matter
   how long the title is. */
.theme-broadsheet .doc-section-title::before,
.theme-broadsheet .doc-section-title::after {
  content: '';
  flex: 1 1 0;
  border-top: 0.5pt solid var(--rule-color);
}

.theme-broadsheet .doc-entry {
  margin-bottom: 0.9em;
}
.theme-broadsheet .doc-entry:last-child {
  margin-bottom: 0;
}

.theme-broadsheet .doc-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1em;
}
.theme-broadsheet .doc-entry-heading {
  font-weight: 700;
}
.theme-broadsheet .doc-entry-subheading {
  font-style: italic;
  font-size: 0.95em;
}
.theme-broadsheet .doc-entry-dates {
  font-size: 0.85em;
  font-variant-numeric: tabular-nums;
}

.theme-broadsheet .doc-bullets {
  margin-top: 0.35em;
}
.theme-broadsheet .doc-bullets li {
  margin-bottom: 0.15em;
}

.theme-broadsheet .doc-entry-prose {
  text-align: justify;
  hyphens: auto;
}
