/* Hero featuring strip */
.event-hero__featuring {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 880px;
}
.event-hero__featuring-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.event-hero__featuring-avatars img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  background: #0f0c22;
  display: block;
}
.event-hero__featuring-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.event-hero__featuring-line {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--fg);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.event-hero__featuring-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--igl-blue-400);
}
.event-hero__featuring-line strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.event-hero__featuring-role {
  font-size: 14px;
  color: var(--fg-muted);
}
.event-hero__featuring-sub {
  margin: 0;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .event-hero__featuring-line { flex-direction: column; gap: 4px; }
  .event-hero__featuring-role { font-size: 13px; }
}

/* Speaker portrait — show photo full bleed if provided */
.event-speaker--photo .event-speaker__portrait {
  background: #0f0c22;
}

/* Static, fully visible agenda — kill the click affordance */
.event-agenda__row--static {
  cursor: default;
}
.event-agenda__row--static:hover { background: transparent; }

/* Site nav — light-on-dark logo sizing */
.sn-brand img { height: 22px; }

/* Footer brand column */
.sf-col--brand { display: flex; flex-direction: column; gap: 18px; }
.sf-brand { line-height: 0; }
.sf-brand img { height: 26px; width: auto; opacity: 0.9; }
.sf-byline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 32ch;
}
@media (max-width: 880px) {
  .sf-grid { grid-template-columns: 1fr; }
}
