/* ============================================================
   WEBINAR LANDING PAGE - extracted from style.css
   (css-reshape Phase 4, 2026-08-10)
   Loaded ONLY via extraCss front matter by: webinar-he layout,
   webinar-second-brain. The sitewide #webinar-banner promo strip
   stayed in style.css (it renders on every page via base-he).
   ============================================================ */

/* ── WEBINAR LANDING PAGE ── */
.webinar-hero {
  background: var(--black);
  color: var(--bg);
  padding: 72px 0 56px;
  text-align: center;
}
.webinar-badge { margin-bottom: 20px; }
.webinar-kicker {
  font-size: 15px;
  font-weight: 600;
  color: rgba(249,247,242,0.7);
  margin: 0 auto 14px;
  max-width: 700px;
}
.webinar-badge-label {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.webinar-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  max-width: 700px;
  margin: 0 auto 24px;
}
.webinar-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.webinar-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: rgba(249,247,242,0.75);
}
.webinar-meta-free {
  background: rgba(255,255,255,0.12);
  padding: 3px 12px;
  border-radius: 12px;
  color: var(--bg);
  font-weight: 600;
}

.webinar-body { padding: 64px 0 96px; }
.webinar-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.webinar-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 48px;
}
.webinar-intro p { margin-bottom: 16px; }
.webinar-section-title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.webinar-agenda-list {
  list-style: none;
  margin-bottom: 48px;
}
.webinar-agenda-item {
  padding: 14px 24px 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--black);
  position: relative;
}
.webinar-agenda-item::before {
  content: '';
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
}
.webinar-host {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.webinar-host-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.webinar-host-name { font-weight: 600; font-size: 17px; color: var(--black); }
.webinar-host-role { font-size: 15px; color: var(--light); margin-top: 2px; }

/* Form card */
.webinar-form-col { position: sticky; top: 24px; }
.webinar-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.webinar-form-title {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.webinar-form-sub {
  font-size: 15px;
  color: var(--light);
  margin-bottom: 28px;
}
.webinar-field { margin-bottom: 18px; }
.webinar-field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.webinar-field-optional {
  font-weight: 400;
  color: #78716C;
}
.webinar-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 17px;
  font-family: inherit;
  background: var(--bg);
  color: var(--black);
  transition: border-color 0.18s;
  direction: rtl;
}
.webinar-field input:focus {
  outline: none;
  border-color: var(--black);
}
.webinar-field-note {
  font-size: 13px;
  color: var(--light);
  margin-top: 7px;
}
.webinar-submit-btn {
  width: 100%;
  background: var(--black);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.18s;
  margin-top: 4px;
}
.webinar-submit-btn:hover { opacity: 0.85; }
.webinar-form-note {
  text-align: center;
  font-size: 13px;
  color: var(--light);
  margin-top: 12px;
}

@media (max-width: 860px) {
  .webinar-layout {
    grid-template-columns: 1fr;
  }
  .webinar-form-col { position: static; }
  .webinar-form-card { margin-top: 0; }
  .webinar-body { padding: 48px 0 72px; }
}
@media (max-width: 540px) {
  .webinar-hero { padding: 56px 0 44px; }
  .webinar-form-card { padding: 28px 20px; }
}
