/* ==========================================================================
   Typography scale & shared primitives
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--ase-font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(30px, 4.4vw, 54px); }
h2 { font-size: clamp(22px, 2.6vw, 32px); }
h3 { font-size: clamp(16px, 1.6vw, 19px); }
h4 { font-size: 14px; letter-spacing: 0.08em; }

p { margin: 0 0 1.3em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--ase-container);
  margin: 0 auto;
  padding: 0 var(--ase-gutter);
}

.rule {
  border: none;
  border-top: 1px solid var(--ase-rule);
  margin: 0;
}

/* Eyebrow — the recurring section label used everywhere a category is named */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ase-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow a { border-bottom: none; }

/* Section accent colors — the "rule of one" mapping. Red: Industry/Reviews/urgency. Gold: Spotlight/Notebook/Essays warmth. Interviews reads neutral (either voice, no fixed accent). */
.eyebrow--industry, .eyebrow--reviews, .eyebrow--newsroom { color: var(--ase-red); }
.eyebrow--spotlight, .eyebrow--filmmakers-notebook, .eyebrow--essays { color: var(--ase-gold); }
.eyebrow--interviews, .eyebrow--default { color: var(--ase-grey-dark); }

/* Dek / italic supporting text */
.dek {
  font-style: italic;
  font-weight: 400;
  color: var(--ase-grey-dark);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

/* Byline / metadata row */
.byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--ase-font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ase-grey-dark);
}
.byline a { border-bottom: 1px solid transparent; }
.byline a:hover { border-bottom-color: currentColor; }
.byline .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.byline__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ase-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1.5px solid var(--ase-fg);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--ase-fg); color: var(--ase-bg); }
.btn--solid { background: var(--ase-red); border-color: var(--ase-red); color: #fff; }
.btn--solid:hover { background: transparent; color: var(--ase-red); }
.btn--inverse { border-color: var(--ase-fg-inverse); color: var(--ase-fg-inverse); }
.btn--inverse:hover { background: var(--ase-fg-inverse); color: var(--ase-bg-inverse); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ase-ink);
  color: var(--ase-paper);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.skip-link:focus { left: 16px; top: 16px; }
