/* [project]/src/app/webinars/webinars.css [app-client] (css) */
.wb {
  --brand: #007c8a;
  --brand-dark: #005f6b;
  --brand-light: #e8f5f7;
  --text-900: #0a1628;
  --text-500: #546478;
  --text-300: #8a9bac;
  --surface: #fff;
  --surface-2: #f2f4f6;
  --nav-bg: #0a1628;
  --border: #0a162817;
  --f-serif: var(--font-playfair), "Playfair Display", Georgia, serif;
  --f-sans: var(--font-ibm-plex), "IBM Plex Sans", system-ui, sans-serif;
  --f-body: var(--font-lora), "Lora", Georgia, serif;
  --f-display: var(--font-dm-sans), "DM Sans", system-ui, sans-serif;
  --max-w: 1400px;
  --nav-h: 64px;
  --t: .2s ease;
  background: var(--surface);
  width: 100%;
}

body:has(.wb) {
  background: var(--surface);
}

body:has(.wb) .site-content {
  background: var(--surface);
}

.wb-masthead {
  background: var(--nav-bg);
  overflow: hidden;
}

.wb-masthead__inner {
  max-width: var(--max-w);
  align-items: flex-end;
  gap: 32px;
  margin: 0 auto;
  padding: 36px 24px 0;
  display: flex;
}

.wb-masthead__kicker {
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.wb-masthead__kicker-dot {
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.wb-masthead__kicker-text {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}

.wb-masthead__title {
  font-family: var(--f-display);
  letter-spacing: -.04em;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .88;
}

.wb-masthead__bar {
  max-width: var(--max-w);
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 0;
  padding: 14px 24px;
  display: flex;
}

.wb-masthead__tagline {
  font-size: 12px;
  font-style: italic;
  font-family: var(--f-body);
  color: #ffffff59;
}

.wb-masthead__date {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff4d;
  font-size: 11px;
  font-weight: 600;
}

.wb-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.wb-stats {
  border-bottom: 1px solid var(--border);
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  display: flex;
}

.wb-stat {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  display: flex;
}

.wb-stat__number {
  font-family: var(--f-display);
  color: var(--brand);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.wb-stat__label {
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 600;
}

.wb-section-label {
  align-items: center;
  gap: 12px;
  padding: 32px 0 20px;
  display: flex;
}

.wb-section-label__accent {
  background: var(--brand);
  flex: none;
  width: 40px;
  height: 2px;
}

.wb-section-label__text {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
}

.wb-section-label__line {
  background: var(--border);
  flex: 1;
  height: 1px;
}

.wb-empty {
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  padding: 64px 24px;
  display: flex;
}

.wb-empty__icon {
  color: var(--brand);
  opacity: .6;
  margin-bottom: 20px;
}

.wb-empty__title {
  font-family: var(--f-serif);
  color: var(--text-900);
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.wb-empty__text {
  color: var(--text-500);
  max-width: 480px;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

.wb-empty__cta {
  color: var(--brand);
  transition: color var(--t);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.wb-empty__cta:hover {
  color: var(--brand-dark);
}

.wb-cta {
  background: var(--nav-bg);
  color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.wb-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.wb-cta__title {
  font-family: var(--f-serif);
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.wb-cta__desc {
  color: #ffffff80;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.7;
}

.wb-cta__form {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.wb-cta__form-row {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

.wb-cta__input {
  color: #fff;
  width: 100%;
  transition: border-color var(--t), background var(--t);
  background: #ffffff12;
  border: 1px solid #ffffff1f;
  border-radius: 6px;
  outline: none;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
}

.wb-cta__input::placeholder {
  color: #ffffff4d;
}

.wb-cta__input:focus {
  border-color: var(--brand);
  background: #ffffff1a;
}

.wb-cta__btn {
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  transition: background var(--t);
  border: none;
  border-radius: 6px;
  align-self: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
}

.wb-cta__btn:hover {
  background: var(--brand-dark);
}

@media (max-width: 768px) {
  .wb-masthead__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wb-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .wb-stat__number {
    font-size: 2rem;
  }

  .wb-cta {
    padding: 28px 20px;
  }

  .wb-cta__form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wb-page {
    padding: 0 12px 48px;
  }

  .wb-stats {
    gap: 24px;
  }

  .wb-empty {
    padding: 40px 16px;
  }
}

/*# sourceMappingURL=src_app_webinars_webinars_d1c519ca.css.map*/