/* ==========================================================================
   BizWest Event Page Design System
   Base tokens from Chris redesign · Event-layer overrides per microsite
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Global tokens ---------- */
:root {
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 17px;
  --text-lg: 19px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 40px;
  --text-4xl: 48px;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* BizWest palette — matches Chris redesign (index/article/category.html) */
  --red: #b5533c;
  --red-dark: #8f3f2c;
  --sky: #3f7fab;
  --sky-text: #1f4d6b;
  --forest: #2f5233;
  --forest-text: #2f6b3f;
  --tan: #c9a877;
  --tan-text: #7a5c2e;
  --tan-bg: #f2e8d5;
  --ink: #201c19;
  --ink-soft: #4a4540;
  --ink-mute: #837c73;
  --paper: #faf8f4;
  --paper-raised: #ffffff;
  --line: #e4dfd6;
  --line-strong: #cdc5b6;
  --gold: #a97625;
  --gold-bg: #f6ecd9;

  /* Aliases for component CSS */
  --bw-red: var(--red);
  --bw-red-dark: var(--red-dark);
  --bw-sky: var(--sky);
  --bw-sky-text: var(--sky-text);
  --bw-forest: var(--forest);
  --bw-forest-text: var(--forest-text);
  --bw-tan: var(--tan);
  --bw-tan-text: var(--tan-text);
  --bw-tan-bg: var(--tan-bg);
  --bw-ink: var(--ink);
  --bw-ink-soft: var(--ink-soft);
  --bw-ink-mute: var(--ink-mute);
  --bw-paper: var(--paper);
  --bw-paper-raised: var(--paper-raised);
  --bw-line: var(--line);
  --bw-line-strong: var(--line-strong);
  --bw-gold: var(--gold);
  --bw-gold-bg: var(--gold-bg);
  --sans: var(--font-sans);
  --serif: var(--font-serif);
  --maxw: var(--max-width);

  /* Semantic (default = BizWest editorial) */
  --color-text: var(--ink);
  --color-text-soft: var(--ink-soft);
  --color-text-mute: var(--ink-mute);
  --color-bg: var(--paper);
  --color-bg-raised: var(--paper-raised);
  --color-line: var(--line);
  --color-line-strong: var(--line-strong);
  --color-accent: var(--red);
  --color-accent-dark: var(--red-dark);
  --color-accent-text: #ffffff;
  --color-bizwest-hero-overlay: rgba(32, 28, 25, 0.55);
  --color-highlight: var(--gold);
  --color-highlight-bg: var(--gold-bg);

  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Layout */
  --max-width: 1180px;
  --max-width-narrow: 960px;
  --gutter: 24px;
  --header-height: 88px;
  --header-height-mobile: 64px;
  --bizwest-hero-min-height: 320px;
  --bizwest-hero-min-height-mobile: 280px;

  /* Breakpoints (reference — use in media queries) */
  /* sm: 480px · md: 768px · lg: 1024px · xl: 1180px */

  /* Component sizing */
  --btn-radius: 4px;
  --card-radius: 2px;
  --sponsor-title-max-h: 56px;   /* TBD — confirm with client */
  --sponsor-support-max-h: 40px; /* TBD */
  --sponsor-recognition-max-h: 28px; /* TBD */

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(32, 28, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(32, 28, 25, 0.1);
}

/* ---------- Event theme: Women of Distinction (lists/awards — red + gold) ---------- */
[data-event-theme="wod"] {
  --color-accent: var(--red);
  --color-accent-dark: var(--red-dark);
  --color-accent-soft: var(--tan-bg);
  --color-bizwest-hero-overlay: rgba(32, 28, 25, 0.58);
  --color-highlight: var(--gold);
  --color-highlight-bg: var(--gold-bg);
}

/* ---------- Event theme: Contextual conference (civic/econ — sky + forest) ---------- */
[data-event-theme="conference"] {
  --color-accent: var(--sky);
  --color-accent-dark: var(--sky-text);
  --color-accent-soft: var(--tan-bg);
  --color-bizwest-hero-overlay: rgba(31, 77, 107, 0.62);
  --color-highlight: var(--forest-text);
  --color-highlight-bg: var(--gold-bg);
}

/* ---------- Eyebrow variants (Chris redesign) ---------- */
.bizwest-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
}
.bizwest-eyebrow-realestate { color: var(--red); }
.bizwest-eyebrow-civic { color: var(--sky-text); }
.bizwest-eyebrow-econ { color: var(--forest-text); }
.bizwest-eyebrow-lists { color: var(--tan-text); }

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; cursor: pointer; }

.bizwest-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Block annotation labels (mockup only) ---------- */
.bizwest-block-label {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: var(--color-accent-soft, var(--tan-bg));
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: var(--space-3);
}

/* ==========================================================================
   COMPONENT: bizwest-event-header
   Deeper header — event logo + BizWest logo always visible (never cropped)
   ========================================================================== */
.bizwest-event-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-raised);
  border-bottom: 2px solid var(--color-text);
}
.bizwest-event-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-6);
  min-height: var(--header-height);
  padding: var(--space-3) 0;
}
.bizwest-event-header__brand {
  display: flex;
  align-items: center;
  justify-self: start;
  grid-column: 1;
  flex-shrink: 0;
}
.bizwest-event-header__event-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.bizwest-event-header__publisher {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-self: end;
  grid-column: 3;
  flex-shrink: 0;
}
.bizwest-event-header__bizwest-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.bizwest-event-header__bizwest-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.bizwest-event-header__bizwest-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bizwest-event-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
  gap: var(--space-6);
}
.bizwest-event-header__nav a {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-soft);
  white-space: nowrap;
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
}
.bizwest-event-header__nav a:hover,
.bizwest-event-header__nav a.bizwest-is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.bizwest-event-header__nav .bizwest-register-cta {
  color: #fff;
  border-bottom: none;
  padding: 10px 20px;
  font-size: var(--text-sm);
}
.bizwest-event-header__nav .bizwest-register-cta:hover {
  color: #fff;
  background: var(--color-accent-dark);
  border-bottom-color: transparent;
}
.bizwest-event-header__menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--btn-radius);
  padding: var(--space-2);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .bizwest-event-header__inner {
    min-height: var(--header-height-mobile);
    grid-template-columns: 1fr auto;
  }
  .bizwest-event-header__event-logo { height: 36px; }
  .bizwest-event-header__publisher { grid-column: 2; }
  .bizwest-event-header__bizwest-logo img { height: 28px; }
  .bizwest-event-header__nav { display: none; }
  .bizwest-event-header__menu-btn { display: flex; }
}

/* ==========================================================================
   COMPONENT: bizwest-hero
   ========================================================================== */
.bizwest-hero {
  position: relative;
  min-height: var(--bizwest-hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bizwest-hero--focus {
  min-height: var(--bizwest-hero-min-height);
}
.bizwest-hero--focus .bizwest-hero__content {
  max-width: 720px;
}
.bizwest-hero--focus .bizwest-hero__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-5);
}
.bizwest-hero--focus .bizwest-hero__meta {
  margin-bottom: var(--space-5);
}
.bizwest-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bizwest-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-bizwest-hero-overlay, rgba(32, 28, 25, 0.5));
}
.bizwest-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-16) 0;
  max-width: 640px;
}
.bizwest-hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-3);
}
.bizwest-hero .bizwest-eyebrow { color: rgba(255, 255, 255, 0.85); }
.bizwest-hero__title {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  color: #fff;
  margin: 0 0 var(--space-4);
}
.bizwest-hero__meta {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  line-height: var(--leading-snug);
}
.bizwest-hero__meta strong { font-weight: var(--weight-semibold); }

@media (max-width: 768px) {
  .bizwest-hero { min-height: var(--bizwest-hero-min-height-mobile); }
  .bizwest-hero--focus { min-height: var(--bizwest-hero-min-height-mobile); }
  .bizwest-hero--focus .bizwest-hero__title { font-size: var(--text-2xl); }
  .bizwest-hero__title { font-size: var(--text-2xl); }
  .bizwest-hero__content { padding: var(--space-10) 0; }
}

/* ==========================================================================
   COMPONENT: bizwest-event-countdown (PR Week–style reference)
   Single focal element in bizwest-hero — date urgency + register
   ========================================================================== */
.bizwest-event-countdown {
  margin: var(--space-5) 0;
}
.bizwest-event-countdown__heading {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-3);
  text-align: center;
}
.bizwest-event-countdown__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-bizwest-wrap: bizwest-wrap;
}
.bizwest-event-countdown__unit {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--btn-radius);
  padding: var(--space-3) var(--space-4);
  min-width: 72px;
  text-align: center;
}
.bizwest-event-countdown__num {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.bizwest-event-countdown__label {
  display: block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}
.bizwest-hero__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}
.bizwest-hero__panel .bizwest-event-countdown { width: 100%; }
.bizwest-hero__panel .bizwest-event-countdown__grid { justify-content: flex-start; }

/* ==========================================================================
   COMPONENT: bizwest-register-cta
   Prominent above fold · repeated every 1–2 scroll sections
   ========================================================================== */
.bizwest-register-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  border: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.bizwest-register-cta:hover { background: var(--color-accent-dark); }
.bizwest-register-cta--lg {
  font-size: var(--text-md);
  padding: 16px 36px;
}
.bizwest-register-cta--ghost {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.bizwest-register-cta--ghost:hover {
  background: var(--color-accent);
  color: var(--color-accent-text);
}
.bizwest-register-cta--inverse {
  background: #fff;
  color: var(--color-accent);
}
.bizwest-register-cta--inverse:hover {
  background: var(--color-accent-soft, var(--tan-bg));
}

.bizwest-register-cta-band {
  background: var(--color-accent-soft, var(--gold-bg));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-6) 0;
}
.bizwest-register-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-bizwest-wrap: bizwest-wrap;
}
.bizwest-register-cta-band__text {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin: 0;
}

/* ==========================================================================
   COMPONENT: title-sponsors / supporting-sponsors
   Title directly under bizwest-hero · supporting lower · never same row · no boxes
   ========================================================================== */
.bizwest-sponsor-section {
  padding: var(--space-8) 0;
}
.bizwest-sponsor-section--title {
  background: var(--color-bg-raised);
  border-bottom: 1px solid var(--color-line);
}
.bizwest-sponsor-section--supporting {
  padding: var(--space-10) 0;
}
.bizwest-sponsor-section__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-mute);
  text-align: center;
  margin: 0 0 var(--space-5);
}
.bizwest-sponsor-row {
  display: flex;
  flex-bizwest-wrap: bizwest-wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8) var(--space-10);
}
.bizwest-sponsor-row--title .bizwest-sponsor-logo { max-height: var(--sponsor-title-max-h); }
.bizwest-sponsor-row--supporting .bizwest-sponsor-logo { max-height: var(--sponsor-support-max-h); }
.bizwest-sponsor-row--recognition .bizwest-sponsor-logo { max-height: var(--sponsor-recognition-max-h); }

.bizwest-sponsor-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.bizwest-sponsor-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.bizwest-sponsor-logo {
  width: auto;
  object-fit: contain;
  filter: none; /* freestanding — no box, no background */
  opacity: 0.92;
  transition: opacity 0.15s;
}
.bizwest-sponsor-logo:hover { opacity: 1; }

.bizwest-sponsor-note {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  text-align: center;
  margin-top: var(--space-4);
  font-style: italic;
}

/* ==========================================================================
   COMPONENT: bizwest-honoree-dropdown + bizwest-honoree-highlight
   Same-tab links · year dropdown includes all years
   ========================================================================== */
.bizwest-honoree-nav {
  background: var(--color-bg-raised);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-4) 0;
}
.bizwest-honoree-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-bizwest-wrap: bizwest-wrap;
}
.bizwest-honoree-nav__label {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin: 0;
}
.bizwest-honoree-dropdown {
  position: relative;
}
.bizwest-honoree-dropdown__select {
  appearance: none;
  background: var(--color-bg);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--btn-radius);
  padding: 10px 36px 10px 14px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23837c73' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.bizwest-honoree-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8) var(--space-5);
  padding: var(--space-8) 0;
}
.bizwest-honoree-grid--ribbon {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10) var(--space-6);
}

.bizwest-honoree-card {
  display: block;
  text-align: center;
  color: inherit;
}
.bizwest-honoree-card--ribbon .bizwest-honoree-card__visual {
  position: relative;
  max-width: 200px;
  margin: 0 auto var(--space-2);
  padding-bottom: 14px;
}
.bizwest-honoree-card--ribbon .bizwest-honoree-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--color-line);
  box-shadow: var(--shadow-sm);
}
.bizwest-honoree-card--ribbon .bizwest-honoree-card__ribbon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 108%;
  max-width: 216px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(32, 28, 25, 0.15));
}
.bizwest-honoree-card__photo {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  max-width: 140px;
  margin: 0 auto var(--space-3);
  background: var(--color-line);
}
.bizwest-honoree-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  margin: var(--space-3) 0 var(--space-1);
  line-height: var(--leading-snug);
}
.bizwest-honoree-card__title {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin: 0;
  line-height: var(--leading-snug);
}
.bizwest-honoree-card:hover .bizwest-honoree-card__name { color: var(--color-accent); }

@media (max-width: 1024px) {
  .bizwest-honoree-grid--ribbon { grid-template-columns: repeat(3, 1fr); }
}

.bizwest-honoree-highlight {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) 0;
}
.bizwest-honoree-highlight__photo {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--card-radius);
  background: var(--color-line);
}
.bizwest-honoree-highlight__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.bizwest-honoree-highlight__name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin: var(--space-2) 0;
}
.bizwest-honoree-highlight__role {
  font-size: var(--text-md);
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}
.bizwest-honoree-highlight__bio {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.bizwest-honoree-spotlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-4) 0 var(--space-6);
}
.bizwest-honoree-spotlight-card {
  display: block;
  background: var(--color-bg-raised);
  border: 1px solid var(--color-line);
  border-radius: var(--card-radius);
  overflow: hidden;
  color: inherit;
}
.bizwest-honoree-spotlight-card:hover .bizwest-honoree-card__name { color: var(--color-accent); }
.bizwest-honoree-spotlight-card__photo {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.bizwest-honoree-spotlight-card__body { padding: var(--space-5); }

@media (max-width: 768px) {
  .bizwest-honoree-grid,
  .bizwest-honoree-grid--ribbon { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .bizwest-honoree-highlight { grid-template-columns: 1fr; }
  .bizwest-honoree-spotlight-row { grid-template-columns: 1fr; }
  .bizwest-event-countdown__unit { min-width: 64px; padding: var(--space-2) var(--space-3); }
  .bizwest-event-countdown__num { font-size: var(--text-xl); }
}

/* ==========================================================================
   COMPONENT: editorial-bizwest-content-deck (image + copy + CTA)
   ========================================================================== */
.bizwest-content-deck {
  padding: var(--space-12) 0;
}
.bizwest-content-deck--alt { background: var(--color-bg-raised); }
.bizwest-content-deck__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.bizwest-content-deck__grid--reverse .bizwest-content-deck__media { order: 2; }
.bizwest-content-deck__grid--reverse .bizwest-content-deck__copy { order: 1; }
.bizwest-content-deck__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  border-radius: var(--card-radius);
  background: var(--color-line);
}
.bizwest-content-deck__eyebrow {
  margin-bottom: var(--space-2);
}
.bizwest-content-deck .bizwest-eyebrow {
  margin-bottom: var(--space-2);
}
.bizwest-content-deck__title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-4);
}
.bizwest-content-deck__body {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-6);
}

@media (max-width: 768px) {
  .bizwest-content-deck__grid,
  .bizwest-content-deck__grid--reverse {
    grid-template-columns: 1fr;
  }
  .bizwest-content-deck__grid--reverse .bizwest-content-deck__media,
  .bizwest-content-deck__grid--reverse .bizwest-content-deck__copy { order: unset; }
}

/* ==========================================================================
   COMPONENT: bizwest-photo-carousel
   ========================================================================== */
.bizwest-photo-carousel {
  padding: var(--space-10) 0;
  overflow: hidden;
}
.bizwest-photo-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}
.bizwest-photo-carousel__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin: 0;
}
.bizwest-photo-carousel__track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}
.bizwest-photo-carousel__slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.bizwest-photo-carousel__slide img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  border-radius: var(--card-radius);
  background: var(--color-line);
}
.bizwest-photo-carousel__caption {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  margin-top: var(--space-2);
}

/* ==========================================================================
   COMPONENT: speaker-cards
   ========================================================================== */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-8) 0;
}
.speaker-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-line);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.speaker-card__photo {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: var(--color-line);
}
.speaker-card__body { padding: var(--space-5); }
.speaker-card__eyebrow { margin-bottom: 0; }
.speaker-card .bizwest-eyebrow { margin-bottom: 0; }
.speaker-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin: var(--space-2) 0 var(--space-1);
}
.speaker-card__role {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}
.speaker-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: var(--leading-normal);
}

@media (max-width: 768px) {
  .speaker-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COMPONENT: bizwest-agenda-summary + bizwest-agenda-page
   ========================================================================== */
.bizwest-agenda-summary {
  padding: var(--space-10) 0;
  background: var(--color-bg-raised);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.bizwest-agenda-summary__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
}
.bizwest-agenda-summary__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin: 0;
}
.bizwest-agenda-summary__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
}
.bizwest-agenda-timeline { list-style: none; margin: 0; padding: 0; }
.bizwest-agenda-timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-5);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-line);
}
.bizwest-agenda-timeline__item:last-child { border-bottom: none; }
.bizwest-agenda-timeline__time {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
}
.bizwest-agenda-timeline__session {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  margin: 0 0 var(--space-1);
}
.bizwest-agenda-timeline__desc {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin: 0;
}
.bizwest-agenda-session {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.bizwest-agenda-session__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-line);
}
.bizwest-agenda-timeline__item--speaker .bizwest-agenda-timeline__session {
  margin-top: 0;
}

/* Full agenda page */
.bizwest-agenda-page { padding: var(--space-10) 0 var(--space-16); }
.bizwest-agenda-page__title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  margin: 0 0 var(--space-2);
}
.bizwest-agenda-page__intro {
  font-size: var(--text-md);
  color: var(--color-text-soft);
  margin-bottom: var(--space-8);
  max-width: 640px;
}
.bizwest-agenda-track {
  margin-bottom: var(--space-10);
}
.bizwest-agenda-track__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-mute);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* ==========================================================================
   COMPONENT: section-label (editorial pattern from Chris redesign)
   ========================================================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-5);
}
.section-label h2 {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin: 0;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-line-strong);
}

/* ==========================================================================
   COMPONENT: bizwest-event-footer
   Event nav links + register — sits above bizwest-footer-slim (Aug 17)
   ========================================================================== */
.bizwest-event-footer {
  background: var(--color-bg-raised);
  border-top: 1px solid var(--color-line);
  padding: var(--space-8) 0;
}
.bizwest-event-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-bizwest-wrap: bizwest-wrap;
}
.bizwest-event-footer__nav {
  display: flex;
  flex-bizwest-wrap: bizwest-wrap;
  gap: var(--space-4) var(--space-6);
}
.bizwest-event-footer__nav a {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-soft);
}
.bizwest-event-footer__nav a:hover,
.bizwest-event-footer__nav a.bizwest-is-active { color: var(--color-accent); }

@media (max-width: 768px) {
  .bizwest-event-footer__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .bizwest-event-footer__nav { justify-content: center; }
}

/* ==========================================================================
   COMPONENT: bizwest-footer-slim
   Logo · copyright · BizWest Media · More events — NOT giant footer
   ========================================================================== */
.bizwest-footer-slim {
  background: var(--ink);
  color: #a8a29a;
  padding: var(--space-5) 0;
  font-size: var(--text-sm);
}
.bizwest-footer-slim__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-bizwest-wrap: bizwest-wrap;
}
.bizwest-footer-slim__brand {
  display: block;
  flex-shrink: 0;
}
.bizwest-footer-slim__brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: grayscale(1) brightness(5);
}
.bizwest-footer-slim__copy {
  font-size: var(--text-xs);
  color: #6f6a62;
}
.bizwest-footer-slim__links {
  display: flex;
  gap: var(--space-6);
}
.bizwest-footer-slim__links a {
  color: #a8a29a;
  font-size: var(--text-sm);
}
.bizwest-footer-slim__links a:hover { color: #fff; }

@media (max-width: 768px) {
  .bizwest-footer-slim__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Utility: event details strip
   ========================================================================== */
.bizwest-event-details-strip {
  background: var(--color-highlight-bg, var(--gold-bg));
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-line);
}
.bizwest-event-details-strip__grid {
  display: flex;
  flex-bizwest-wrap: bizwest-wrap;
  gap: var(--space-6) var(--space-10);
  justify-content: center;
  text-align: center;
}
.bizwest-event-details-strip__item {
  font-size: var(--text-sm);
}
.bizwest-event-details-strip__item strong {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-mute);
  margin-bottom: var(--space-1);
}

/* ==========================================================================
   Utility: intro sales copy block
   ========================================================================== */
.bizwest-sales-intro {
  padding: var(--space-12) 0;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.bizwest-sales-intro__title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin: 0 0 var(--space-4);
}
.bizwest-sales-intro__body {
  font-size: var(--text-md);
  color: var(--color-text-soft);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ==========================================================================
   Mockup navigation bar (index only)
   ========================================================================== */
.bizwest-mockup-nav {
  background: #1a1714;
  color: #cfc9bf;
  padding: var(--space-3) var(--gutter);
  font-size: var(--text-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}
.bizwest-mockup-nav a {
  color: #fff;
  margin-right: var(--space-5);
  font-weight: var(--weight-medium);
}
.bizwest-mockup-nav a:hover { color: var(--red); }

/* ==========================================================================
   Featured honorees row (Aug 24 — ~2× standard card size)
   ========================================================================== */
.bizwest-honoree-grid--featured {
  display: flex;
  flex-bizwest-wrap: bizwest-wrap;
  justify-content: center;
  gap: var(--space-10) var(--space-8);
  padding: var(--space-6) 0 var(--space-4);
  max-width: 720px;
  margin: 0 auto;
}
.bizwest-honoree-grid--featured .bizwest-honoree-card {
  flex: 0 1 calc(50% - var(--space-4));
  min-width: 220px;
  max-width: 320px;
}
.bizwest-honoree-card--featured .bizwest-honoree-card__visual {
  max-width: 280px;
}
.bizwest-honoree-card--featured .bizwest-honoree-card__name {
  font-size: var(--text-xl);
}
.bizwest-honoree-card--featured .bizwest-honoree-card__title {
  font-size: var(--text-base);
}

/* Standard grid: flex bizwest-wrap centers incomplete last row */
.bizwest-honoree-grid--ribbon.bizwest-honoree-grid--center-last {
  display: flex;
  flex-bizwest-wrap: bizwest-wrap;
  justify-content: center;
  gap: var(--space-10) var(--space-6);
}
.bizwest-honoree-grid--ribbon.bizwest-honoree-grid--center-last .bizwest-honoree-card {
  flex: 0 1 calc(25% - var(--space-6));
  min-width: 160px;
  max-width: 240px;
}
@media (max-width: 1024px) {
  .bizwest-honoree-grid--ribbon.bizwest-honoree-grid--center-last .bizwest-honoree-card {
    flex: 0 1 calc(33.333% - var(--space-6));
  }
}
@media (max-width: 768px) {
  .bizwest-honoree-grid--featured .bizwest-honoree-card {
    flex: 0 1 100%;
    max-width: 280px;
  }
  .bizwest-honoree-grid--ribbon.bizwest-honoree-grid--center-last .bizwest-honoree-card {
    flex: 0 1 calc(50% - var(--space-4));
  }
}

/* Mobile nav drawer */
.bizwest-event-header__nav.bizwest-is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg-raised);
  border-bottom: 2px solid var(--color-text);
  padding: var(--space-4) var(--gutter);
  gap: var(--space-3);
  z-index: 99;
}
@media (max-width: 768px) {
  .bizwest-event-header { position: sticky; }
  .bizwest-event-header__inner { position: relative; }
  .bizwest-event-header__nav.bizwest-is-open a { padding: var(--space-2) 0; }
}

/* Photo carousel stub */
.bizwest-photo-carousel--stub .bizwest-photo-carousel__track {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--color-line);
  border-radius: var(--card-radius);
  padding: var(--space-8);
}
.bizwest-photo-carousel__stub-message {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  text-align: center;
  margin: 0;
}

/* Hide mockup-only labels in production */
.bizwest-block-label { display: none; }
.bizwest-sponsor-note { display: none; }

/* Editor preview wrapper — full width inside block editor */
.bizwest-block-preview-wrap {
	max-width: none;
	margin: 0;
}
.editor-styles-wrapper .bizwest-block-preview-wrap .bizwest-wrap {
	max-width: var(--max-width, 1180px);
}

.bizwest-screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
