/* ======================================================================
   Cordibly — Disclosures  |  disclosures.css
   Page-specific styles. Extends styles.css — does not redefine tokens.
   ====================================================================== */


/* ======================================================================
   HERO
   Gold top-rule + eyebrow + h1 + lead + meta
   ====================================================================== */

.disclosures-hero {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Thin gold rule above */
.disclosures-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-border) 100%);
}

.disclosures-hero .container {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

@media (min-width: 960px) {
  .disclosures-hero .container {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
}

.disclosures-hero-inner {
  max-width: 640px;
}

.disclosures-hero .eyebrow--accent {
  margin-bottom: var(--space-3);
  letter-spacing: 0.14em;
}

.disclosures-hero h1 {
  font-size: var(--font-size-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-obsidian);
  line-height: 1.05;
  margin-bottom: var(--space-5);
}

.disclosures-hero .hero-lead {
  font-size: 1.0625rem;
  max-width: 54ch;
  margin-bottom: 0;
  color: var(--color-text-muted);
  line-height: 1.72;
}

.disclosures-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

.disclosures-hero .hero-meta a {
  color: var(--color-royal);
  font-weight: 600;
  text-decoration: none;
}
.disclosures-hero .hero-meta a:hover {
  color: var(--color-royal-hover);
  text-decoration: underline;
}

/* Section lead */

.section-lead {
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

/* ======================================================================
   DISCLOSURE CARDS
   Stacked single column. Eyebrow + h2 + body copy inside each card.
   ====================================================================== */

.disclosures-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Scroll offset so sticky header doesn't overlap anchor targets */
.disclosures-cards .card[id] {
  scroll-margin-top: 96px;
}

.disclosures-cards .card .eyebrow {
  margin-bottom: var(--space-2);
}

.disclosures-cards .card h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* Last paragraph in a card should have no trailing margin */
.disclosures-cards .card p:last-child { margin-bottom: 0; }

/* Lists inside disclosure cards */
.disclosures-cards .card .bullet-list {
  margin-top: var(--space-2);
  margin-bottom: 0;
}

.disclosures-cards .card code {
  font-size: var(--font-size-xs);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1px 5px;
}
