/* ==================================================================
   Webinars on demand — light paper section after the dark AI block.
   ================================================================== */

.wb {
  background: var(--surface-page, #f6f3ec);
  padding: 100px 80px 104px; font-family: var(--font-sans);
  color: var(--ink-900, #0d0f0f);
}
.wb-inner { max-width: 1280px; margin: 0 auto; }

.wb-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-800, #23282a); font-weight: 500;
}
.wb-headrow {
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.wb-title {
  margin: 18px 0 0; font-size: 46px; font-weight: 900; line-height: 1.06;
  letter-spacing: -0.025em; text-wrap: balance; max-width: 620px;
}
.wb-title mark {
  background: var(--gradient-signature, linear-gradient(90deg, #ff43a4, #ffa63e));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.wb-sub {
  margin: 0; font-size: 16.5px; line-height: 1.65; font-weight: 500;
  color: var(--text-secondary, #4c5252); max-width: 520px; text-wrap: pretty;
}

.wb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
}
.wb-card {
  background: var(--surface-card, #fff);
  border: 1px solid var(--border-subtle, #eae5d9);
  border-radius: var(--radius-lg, 14px); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.05));
  transition: box-shadow 200ms var(--ease-out, ease), transform 200ms var(--ease-out, ease);
}
.wb-card:hover {
  box-shadow: var(--shadow-lg, 0 14px 40px rgba(0,0,0,0.14));
  transform: translateY(-4px);
}
.wb-thumb {
  position: relative; aspect-ratio: 16 / 9;
  background: var(--surface-sunken, #ece7db);
}
.wb-thumb image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.wb-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.wb-embed {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; display: block;
}
.wb-play {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  width: 52px; height: 52px; margin: -26px 0 0 -26px;
  display: grid; place-items: center;
  border: none; border-radius: 50%; cursor: pointer;
  background: var(--fbf-green, #28dc9a); color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3), var(--glow-accent, 0 6px 20px rgba(40,220,154,0.35));
  transition: transform 160ms var(--ease-out, ease);
}
.wb-play svg, .wb-play [data-lucide] { width: 18px; height: 18px; margin-left: 2px; fill: currentColor; }
.wb-card:hover .wb-play { transform: scale(1.08); }
.wb-play:active { transform: scale(0.99); }
.wb-card-title {
  margin: 20px 24px 0; font-size: 19px; font-weight: 800; line-height: 1.3;
  letter-spacing: -0.01em; flex: 1; text-wrap: pretty;
}
.wb-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: 16px 24px 22px;
}
.wb-date {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--text-muted, #8a908f);
}
.wb-replay {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--ink-900, #0d0f0f);
  text-decoration: none; background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-sans);
}
.wb-replay svg, .wb-replay [data-lucide] { width: 15px; height: 15px; }
.wb-replay:hover { text-decoration: none; opacity: 0.85; }

.wb-ctas { display: flex; justify-content: center; margin-top: 44px; }

/* Press strip — bare logos, no boxes ---------------------------------- */
.wb-media { margin-top: 76px; text-align: center; }
.wb-media-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted, #8a908f); font-weight: 500;
}
.wb-media-logos {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  margin-top: 30px; flex-wrap: wrap;
}
.wb-media-logo { display: block; text-decoration: none; }
.wb-media-logo img {
  max-height: 28px; max-width: 170px; width: auto; height: auto; display: block;
  filter: grayscale(1); opacity: 0.6;
  transition: filter 200ms var(--ease-out, ease), opacity 200ms var(--ease-out, ease);
}
a.wb-media-logo:hover img { filter: none; opacity: 1; }
