/* =============================================================================
 * webinars.css — static Webinars archive + single templates.
 * All rules are scoped under .webinars / .webinars-page so load order vs the
 * theme's general.css is irrelevant (unique classes + higher-specificity theme
 * overrides win regardless). Container matches the homepage (.hp26-container:
 * max-width 1440, gutter 20/40/70). Colours + type from the Figma mockup.
 * ========================================================================== */

/* -------------------------------------------------------------------------
 * Tokens + container
 * ---------------------------------------------------------------------- */
.webinars {
	--wb-primary: #1690D3;
	--wb-secondary: #1E5CFF;
	--wb-navy: #0A1E4D;
	--wb-cyan: #33B7FF;
	--wb-body: #5A6B8C;
	--wb-grey: #768297;
	--wb-surface: #FFFFFF;
	--wb-grey1: #F9FAFB;
	--wb-stroke: #E5E7EB;
	--wb-radius-lg: 28px;
	--wb-radius-md: 20px;
	--wb-radius-sm: 16px;
	--wb-maxw: 1440px;
	--wb-gutter: 20px;
	--wb-section-pad: 48px;
	font-family: 'Montserrat', 'Mont-fallback', Arial, sans-serif;
	color: var(--wb-navy);
	background: #fff;
	overflow-x: clip;
}
@media (min-width: 768px) { .webinars { --wb-gutter: 40px; --wb-section-pad: 64px; } }
@media (min-width: 1200px) { .webinars { --wb-gutter: 70px; --wb-section-pad: 80px; } }

.webinars__container {
	width: 100%;
	max-width: var(--wb-maxw);
	margin-inline: auto;
	padding-inline: var(--wb-gutter);
}
.webinars *, .webinars *::before, .webinars *::after { box-sizing: border-box; }
.webinars img { max-width: 100%; height: auto; }

/* -------------------------------------------------------------------------
 * Header override for the LIGHT hero (theme default assumes a dark hero:
 * a dark 100px .header:before bar + white logo at top). Force the scrolled
 * (light) look from the top; hand back to the theme once .is_fixed is added.
 * ---------------------------------------------------------------------- */
.webinars-page .header:not(.is_fixed)::before { background: transparent !important; }
.webinars-page .header:not(.is_fixed) .logo_white { display: none !important; }
.webinars-page .header:not(.is_fixed) .logo_dark { display: block !important; }
.webinars-page .header:not(.is_fixed) .navbar-nav .nav-link { color: #0A1E4D !important; }
.webinars-page .header:not(.is_fixed) .navbar-toggler-icon,
.webinars-page .header:not(.is_fixed) .navbar-toggler { color: #0A1E4D !important; }
/* Search icon: white in the theme svg (for dark headers). On our light hero,
 * invert it to dark so it's visible at the top. Once .is_fixed is added the
 * theme repaints the icon dark (general.css), so drop the invert then. */
.webinars-page .header:not(.is_fixed) .header-search-btn .search-open svg { filter: invert(1); }
.webinars-page .header.is_fixed .header-search-btn .search-open svg { filter: none; }

/* =========================================================================
 * ARCHIVE — hero
 * ====================================================================== */
.webinars-hero {
	position: relative;
	/* The whole hero band = the Figma background: a light gradient with the soft
	 * blue/lavender glow (self-hosted transparent asset) baked in top-right. Text
	 * is overlaid via .webinars-hero__inner. Same background desktop + mobile. */
	background-color: #F6F8FE;
	background-image:
		url('../../img/webinars/hero-illustration.webp'),
		linear-gradient(105deg, #FCFDFF 0%, #F2F5FD 52%, #E7EEFB 100%);
	background-repeat: no-repeat, no-repeat;
	background-position: right -40px center, center;
	background-size: auto 155%, cover;
	padding-top: 128px;
	padding-bottom: var(--wb-section-pad);
	overflow: hidden;
}
.webinars-hero__inner { position: relative; z-index: 2; }
.webinars-hero__content { max-width: 720px; }
.webinars-hero__eyebrow {
	margin: 0 0 14px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 1.68px;
	text-transform: uppercase;
	color: var(--wb-cyan);
}
.webinars-hero__title {
	margin: 0 0 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: clamp(38px, 5vw, 60px);
	line-height: 1.02;
	letter-spacing: -1.5px;
	color: var(--wb-navy);
}
.webinars-hero__lead {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: var(--wb-body);
	max-width: 620px;
}
/* (The hero glow is now part of .webinars-hero's background — no standalone element.) */

/* =========================================================================
 * ARCHIVE — filter bar
 * ====================================================================== */
.webinars-filters { background: #fff; }
.webinars-filters__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 48px;
	align-items: center;
	padding-top: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--wb-stroke);
}
.webinars-filters__group { display: flex; align-items: center; gap: 14px; }
.webinars-filters__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--wb-grey);
}
.webinars-filters__pills { display: flex; align-items: center; gap: 8px; }
.webinars-filters__pills--segmented {
	background: var(--wb-grey1);
	border-radius: var(--wb-radius-sm);
	padding: 4px;
}
.webinars-filters__pill {
	appearance: none;
	border: 0;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: var(--wb-grey);
	background: transparent;
	padding: 8px 16px;
	border-radius: 999px;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
	white-space: nowrap;
}
.webinars-filters__pills--segmented .webinars-filters__pill { border-radius: 12px; }
.webinars-filters__pills--rounded .webinars-filters__pill { border: 1px solid var(--wb-stroke); }
.webinars-filters__pill:hover { color: var(--wb-navy); }
.webinars-filters__pill.is-active {
	background: var(--wb-primary);
	color: #fff;
	box-shadow: 0 6px 16px rgba(22, 144, 211, 0.28);
	border-color: var(--wb-primary);
}

/* =========================================================================
 * CARD GRID + CARD (shared: archive + related)
 * ====================================================================== */
.webinars-grid { padding-top: 40px; padding-bottom: var(--wb-section-pad); background: #fff; }
.webinars-grid__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.webinars-grid__empty {
	padding: 72px 20px;
	text-align: center;
}
.webinars-grid__empty-text { margin: 0; font-size: 20px; color: var(--wb-body); }

.webinar-card { display: flex; }
.webinar-card__link {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border: 1px solid var(--wb-stroke);
	border-radius: var(--wb-radius-md);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.webinar-card__link:hover {
	box-shadow: 0 18px 40px rgba(10, 30, 77, 0.12);
	transform: translateY(-3px);
	border-color: transparent;
}
/* Fixed 16:9 media so EVERY card image is the same height regardless of the
 * source aspect. The img is absolutely positioned so it can't drive the
 * parent's height (which would otherwise fall back to the image's natural
 * aspect); object-fit: cover crops to fill. */
.webinar-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #0A1E4D; }
.webinar-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.webinar-card__badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; gap: 8px; }
.webinar-card__badge {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2px;
	padding: 5px 10px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
	white-space: nowrap;
}
.webinar-card__badge--status { background: rgba(10, 30, 77, 0.82); color: #fff; }
.webinar-card__badge--status.webinar-card__badge--on-demand { background: rgba(22, 144, 211, 0.92); }
.webinar-card__badge--topic { background: rgba(255, 255, 255, 0.9); color: var(--wb-navy); margin-left: auto; }
.webinar-card__body { display: block; padding: 20px 20px 8px; flex: 1 1 auto; }
.webinar-card__title { margin: 0 0 10px; font-size: 18px; font-weight: 700; line-height: 1.32; color: var(--wb-navy); }
.webinar-card__desc {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.55;
	color: var(--wb-body);
}
.webinar-card__footer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	padding: 14px 20px 20px;
	border-top: 1px solid var(--wb-stroke);
	margin-top: 14px;
}
.webinar-card__meta { display: flex; flex-direction: row; flex-wrap: wrap; gap: 4px 16px; font-size: 13px; color: var(--wb-grey); }
.webinar-card__time { color: var(--wb-body); font-weight: 600; }
.webinar-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px 17px;
	border: 1px solid var(--wb-primary);
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--wb-primary);
	white-space: nowrap;
	transition: background-color .2s ease;
}
.webinar-card__cta-icon { transition: transform .2s ease; }
.webinar-card__link:hover .webinar-card__cta { background: rgba(22, 144, 211, 0.08); }
.webinar-card__link:hover .webinar-card__cta-icon { transform: translateX(3px); }

/* =========================================================================
 * ARCHIVE — subscribe CTA
 * ====================================================================== */
.webinars-subscribe { padding-bottom: var(--wb-section-pad); background: #fff; }
.webinars-subscribe__card {
	position: relative;
	overflow: hidden;
	border-radius: var(--wb-radius-lg);
	/* Background exported from Figma (node 4263:7140): gradient + blur orbs baked
	 * in, no text. background-color is the navy fallback. */
	background-color: #0A1E4D;
	background-image: url('../../img/webinars/subscribe-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	padding: 64px clamp(24px, 5vw, 72px);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
}
.webinars-subscribe__content { position: relative; z-index: 1; max-width: 640px; }
.webinars-subscribe__eyebrow {
	margin: 0 0 12px;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
}
.webinars-subscribe__title { margin: 0 0 12px; font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; line-height: 1.15; }
.webinars-subscribe__lead { margin: 0; font-family: 'Montserrat', sans-serif; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.75); }
.webinars-subscribe__form { position: relative; z-index: 1; flex: 0 0 auto; width: min(100%, 502px); margin: 0 auto; }

/* =========================================================================
 * SINGLE — sub-header bar (back link + title + Register)
 * ====================================================================== */
.webinar-subheader { border-bottom: 1px solid var(--wb-stroke); background: #fff; }
.webinar-subheader__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 120px;
	padding-bottom: 18px;
}
.webinar-subheader__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--wb-navy);
	text-decoration: none;
	white-space: nowrap;
}
.webinar-subheader__back:hover { color: var(--wb-primary); }
.webinar-subheader__back svg { flex: none; }

/* =========================================================================
 * SINGLE — hero (2-col)
 * ====================================================================== */
.webinar-single { background: #fff; }
.webinar-hero { padding-top: 40px; padding-bottom: var(--wb-section-pad); }
.webinar-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.webinar-hero__media { position: relative; border-radius: var(--wb-radius-md); overflow: hidden; background: #0A1E4D; }
.webinar-hero__img { width: 100%; height: auto; display: block; }
.webinar-hero__subtitle { margin: 24px 0 16px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; line-height: 1.22; letter-spacing: -0.5px; color: var(--wb-navy); }
.webinar-hero__desc { display: grid; gap: 14px; }
.webinar-hero__desc p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--wb-body); }
.webinar-hero__tags { position: absolute; top: 18px; left: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.webinar-hero__tag { font-size: 12px; font-weight: 600; color: #fff; background: rgba(10,30,77,0.7); border-radius: 999px; padding: 6px 12px; backdrop-filter: blur(4px); }
.webinar-hero__eyebrow { margin: 0 0 12px; font-weight: 600; font-size: 12px; letter-spacing: 1.68px; text-transform: uppercase; color: var(--wb-cyan); }
.webinar-hero__title { margin: 0 0 16px; font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; line-height: 1.08; letter-spacing: -0.8px; color: var(--wb-navy); }
.webinar-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin: 0 0 22px; padding: 0; font-size: 14px; color: var(--wb-body); }
.webinar-hero__meta-item { list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.webinar-hero__meta-item:not(:first-child)::before { content: ''; flex: none; width: 4px; height: 4px; border-radius: 50%; background: #cdd6e6; margin-right: 4px; }
.webinar-hero__meta-icon { display: inline-flex; }
.webinar-hero__meta-icon svg { width: 16px; height: 16px; display: block; }

/* Countdown — single "Registration closes in: 00d 07h 46m 47s" line. */
.webinar-countdown { display: block; margin: 0; font-size: 12px; color: var(--wb-body); }
.webinar-countdown__value { font-weight: 700; color: var(--wb-navy); font-variant-numeric: tabular-nums; }
/* Desktop: the hero right column is a flex column so the countdown can sit
 * BELOW the form card (Figma). Mobile order is handled separately below. */
@media (min-width: 992px) {
	.webinar-hero__aside { display: flex; flex-direction: column; }
	.webinar-hero__aside .webinar-countdown { order: 1; margin: 19px 0 0; text-align: center; }
}

/* Form shell: form + success panel occupy the same slot */
.webinar-form-shell { position: relative; }

/* =========================================================================
 * SINGLE — spec bar
 * ====================================================================== */
.webinar-spec { padding-bottom: var(--wb-section-pad); }
.webinar-spec__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.webinar-spec__item { display: flex; align-items: center; gap: 16px; padding: 19px 24px; background: #fff; border: 1px solid var(--wb-stroke); border-radius: 16px; }
.webinar-spec__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: #eaf1ff; }
.webinar-spec__icon svg { width: 22px; height: 22px; display: block; }
.webinar-spec__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.webinar-spec__k { font-size: 12px; color: var(--wb-grey); }
.webinar-spec__v { font-size: 14px; font-weight: 600; color: var(--wb-navy); }

/* =========================================================================
 * SINGLE — generic content blocks (value / description / agenda / speakers / numbers)
 * ====================================================================== */
.webinar-block { padding-bottom: var(--wb-section-pad); }
.webinar-block__eyebrow { margin: 0 0 12px; font-size: 12px; font-weight: 600; letter-spacing: 1.68px; text-transform: uppercase; color: var(--wb-primary); }
.webinar-block__title { margin: 0 0 32px; font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; color: var(--wb-navy); letter-spacing: -0.9px; line-height: 1.12; }

/* Value cards: icon circle → title → desc */
.webinar-value__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0; margin: 0; }
.webinar-value__item { list-style: none; display: flex; flex-direction: column; gap: 16px; padding: 24px; background: #fff; border: 1px solid #d0e9f6; border-radius: 16px; }
.webinar-value__icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 40px; background: #eff6ff; }
.webinar-value__icon svg { width: 24px; height: 24px; display: block; }
.webinar-value__h { font-size: 18px; font-weight: 600; color: #374151; }
.webinar-value__p { font-size: 16px; line-height: 1.45; color: #374151; }

/* Description + Agenda: 2 columns (left text, right bordered card) */
.webinar-desc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.webinar-desc__text { margin: 0; font-size: 16px; line-height: 1.62; color: var(--wb-body); }
.webinar-desc__col .webinar-block__title { margin-bottom: 16px; }
.webinar-agenda__card { background: #fff; border: 1px solid var(--wb-stroke); border-radius: 16px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.webinar-agenda__label { margin: 0 0 20px; font-size: 18px; font-weight: 600; color: var(--wb-primary); }
.webinar-agenda__list { margin: 0; padding: 0; display: grid; gap: 16px; }
.webinar-agenda__item { list-style: none; display: flex; gap: 8px; align-items: center; font-size: 14px; line-height: 1.4; color: var(--wb-navy); }
.webinar-agenda__check { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #eaf1ff; }
.webinar-agenda__check svg { width: 12px; height: 12px; display: block; }

/* Speakers: taller cards, 160px avatar, LinkedIn tile at the end */
.webinar-speakers__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.webinar-speaker { display: flex; gap: 24px; align-items: flex-start; padding: 24px; border: 1px solid var(--wb-stroke); border-radius: 16px; background: #fff; }
.webinar-speaker__photo { flex: none; width: 160px; height: 160px; border-radius: 50%; object-fit: cover; background: var(--wb-grey1); }
.webinar-speaker__info { display: flex; flex-direction: column; min-width: 0; align-self: stretch; }
.webinar-speaker__name { margin: 0 0 4px; font-size: 24px; font-weight: 700; color: var(--wb-navy); }
.webinar-speaker__role { margin: 0 0 10px; font-size: 14px; color: var(--wb-body); }
.webinar-speaker__bio { margin: 0 0 16px; font-size: 14px; line-height: 1.62; color: var(--wb-body); }
.webinar-speaker__linkedin { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: #eaf1ff; margin-top: auto; }
.webinar-speaker__linkedin svg { width: 16px; height: 16px; display: block; }

.webinar-numbers { padding-bottom: var(--wb-section-pad); }
.webinar-numbers__card { background: linear-gradient(134deg, #0A1E4D 0%, #1E5CFF 100%); color: #fff; border-radius: var(--wb-radius-lg); padding: 56px clamp(24px,4vw,56px); text-align: center; }
.webinar-numbers__eyebrow { margin: 0 0 14px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.webinar-numbers__title { margin: 0 0 40px; font-size: clamp(26px,3.4vw,40px); font-weight: 800; line-height: 1.15; color: #fff; }
.webinar-numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.webinar-numbers__item { text-align: center; }
.webinar-numbers__num { font-size: clamp(30px,4vw,44px); font-weight: 800; line-height: 1; }
.webinar-numbers__label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.8); }

/* Secondary CTA — a rounded #F7F9FC panel with a centered white form card. */
.webinar-cta { padding-top: var(--wb-section-pad); padding-bottom: var(--wb-section-pad); }
.webinar-cta__panel { background: #F7F9FC; border-radius: 28px; padding: clamp(40px,5vw,64px) clamp(24px,4vw,48px); text-align: center; }
.webinar-cta__eyebrow { margin: 0 0 12px; font-size: 12px; font-weight: 600; letter-spacing: 1.68px; text-transform: uppercase; color: var(--wb-primary); }
.webinar-cta__title { margin: 0 0 12px; font-size: clamp(26px,3.4vw,36px); font-weight: 700; line-height: 1.12; color: var(--wb-navy); letter-spacing: -0.9px; }
.webinar-cta__lead { margin: 0 auto 32px; max-width: 620px; font-size: 14px; line-height: 1.55; color: var(--wb-body); }
.webinar-cta__shell { max-width: 521px; margin: 0 auto; text-align: left; }

/* =========================================================================
 * SINGLE — "You might also be interested in"
 * ====================================================================== */
.webinars-related { padding-top: 8px; padding-bottom: var(--wb-section-pad); }
.webinars-related__title { margin: 0 0 24px; font-size: clamp(24px,3vw,32px); font-weight: 800; color: var(--wb-navy); letter-spacing: -0.4px; }
.webinars-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* =========================================================================
 * FORM (LL_Forms) styled for webinars — hero + secondary CTA
 * ====================================================================== */
.webinars .ll-form { margin: 0; }
.webinar-form-shell .ll-form,
.webinar-form { background: #fff; border: 1px solid #E3E8F2; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px -4px rgba(16,24,48,0.06); transition: opacity .3s ease, transform .3s ease; }
.webinars .ll-form__fields { display: grid; gap: 16px; margin-bottom: 24px; }
.webinars .ll-form__row { position: relative; }
.webinars .ll-form__label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 600; line-height: 16px; color: var(--wb-grey); }
.webinars .ll-form__control {
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: var(--wb-navy);
	background: #fff;
	border: 1px solid #E3E8F2;
	/* !important beats the theme's global `input{border-radius:0!important}` (general.css). */
	border-radius: 16px !important;
	padding: 14px 15px;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.webinars .ll-form__control::placeholder { color: rgba(90,107,140,0.65); }
.webinars .ll-form__control:focus { outline: none; border-color: var(--wb-primary); box-shadow: 0 0 0 3px rgba(22,144,211,0.15); }
.webinars .ll-form__row.has-error .ll-form__control { border-color: #E5484D; box-shadow: 0 0 0 3px rgba(229,72,77,0.12); }
.webinars .ll-form__error { display: block; margin-top: 6px; font-size: 12.5px; color: #E5484D; }
/* Consent: custom checkbox on the LEFT (Figma: 15px, 1px #767676 border, 2.5px radius). */
.webinars .ll-form__consent { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; line-height: 1.62; color: var(--wb-body); cursor: pointer; flex-wrap: wrap; }
.webinars .ll-form__consent input {
	order: -1; flex: none; -webkit-appearance: none; appearance: none;
	width: 15px; height: 15px; margin-top: 2px; position: relative;
	background: #fff; border: 1px solid #767676; border-radius: 2.5px; cursor: pointer;
}
.webinars .ll-form__consent input:checked { background: var(--wb-primary); border-color: var(--wb-primary); }
.webinars .ll-form__consent input:checked::after { content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.webinars .ll-form__consent-text { flex: 1 1 0; min-width: 0; }
.webinars .ll-form__consent a { color: var(--wb-primary); }
.webinars .ll-form__consent .ll-form__error { flex-basis: 100%; }
.webinars .ll-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--wb-primary);
	border: 0;
	border-radius: 20px;
	padding: 14px 24px;
	cursor: pointer;
	transition: background-color .18s ease, transform .1s ease;
}
.webinars .ll-form__submit:hover { background: #127bb8; }
.webinars .ll-form__submit:active { transform: translateY(1px); }
.webinars .ll-form__submit:disabled { opacity: 0.7; cursor: default; }
.webinars .ll-form__spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.5); border-top-color: #fff; border-radius: 50%; animation: wb-spin .7s linear infinite; }
.webinars .ll-form.is-loading .ll-form__spinner { display: inline-block; }
.webinars .ll-form.is-loading .ll-form__submit-icon { display: none; }
/* Registration form button: uppercase, no arrow (matches mockup). Inline
 * subscribe keeps its "Subscribe →" arrow. */
/* All webinar form buttons: uppercase, no arrow icon (matches mockups). */
.webinars .ll-form__submit { text-transform: uppercase; letter-spacing: 0.35px; }
.webinars .ll-form__submit-icon { display: none; }
@keyframes wb-spin { to { transform: rotate(360deg); } }
.webinars .ll-form__message { margin-top: 12px; font-size: 14px; }
.webinars .ll-form__message.is-error { color: #E5484D; }
.webinars .ll-form__message.is-success { color: #178A50; }
.webinars .ll-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.webinars .ll-form__turnstile { margin-bottom: 12px; }

/* leaving animation */
.webinars .ll-form--leaving { opacity: 0; transform: translateY(10px); pointer-events: none; }

/* inline (subscribe) variant */
.webinars .ll-form--inline { position: relative; border: 0; box-shadow: none; padding: 0; background: transparent; display: flex; gap: 12px; align-items: center; flex-wrap: nowrap; }
.webinars .ll-form--inline .ll-form__fields { position: relative; flex: 1 1 auto; min-width: 0; margin-bottom: 0; }
.webinars .ll-form--inline .ll-form__row { position: static; }
.webinars .ll-form--inline .ll-form__control { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px !important; color: #fff; padding: 16px 17px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.webinars .ll-form--inline .ll-form__control::placeholder { color: rgba(255,255,255,0.6); }
.webinars .ll-form--inline .ll-form__control:focus { border-color: rgba(255,255,255,0.9); box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
.webinars .ll-form--inline .ll-form__submit { width: auto; flex: 0 0 auto; margin-top: 0; padding: 14px 22px; border-radius: 20px; color: var(--wb-navy); background: #fff; box-shadow: none; }
.webinars .ll-form--inline .ll-form__submit:hover { background: #eef2ff; }
/* Field error is pulled OUT of the input+button row (absolute) so showing it
 * never shifts the input or button. */
.webinars .ll-form--inline .ll-form__error { position: absolute; left: 0; top: 100%; margin-top: 8px; text-align: left; }
.webinars .ll-form--inline .ll-form__message { position: absolute; left: 0; right: 0; top: 100%; margin-top: 10px; text-align: center; color: #fff; }

/* =========================================================================
 * SUCCESS PANEL (swapped in by ll-forms.js)
 * ====================================================================== */
.webinar-success {
	background: #fff;
	border: 1px solid var(--wb-stroke);
	border-radius: var(--wb-radius-md);
	padding: 40px 28px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(10,30,77,0.06);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .4s ease, transform .4s ease;
}
.webinar-success.is-visible { opacity: 1; transform: none; }
.webinar-success[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
	.webinars .ll-form, .webinar-success, .webinar-card__link, .webinar-card__cta-icon { transition: none !important; }
}
.webinar-success__icon { width: 64px; height: 64px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(22,144,211,0.12); color: var(--wb-primary); }
.webinar-success__icon svg { width: 32px; height: 32px; }
.webinar-success__eyebrow { margin: 0 0 8px; font-weight: 600; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--wb-cyan); }
.webinar-success__title { margin: 0 0 10px; font-size: 26px; font-weight: 800; color: var(--wb-navy); }
.webinar-success__text { margin: 0 0 18px; font-size: 15px; line-height: 1.55; color: var(--wb-body); }
.webinar-success__action {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; font-size: 15px; color: #fff; background: var(--wb-primary);
	border: 0; border-radius: 999px; padding: 13px 26px; cursor: pointer; text-decoration: none;
}
.webinar-success__link { color: var(--wb-primary); font-weight: 600; text-decoration: none; }
.webinar-success__link:hover { text-decoration: underline; }

/* =========================================================================
 * RESPONSIVE  (mobile matched to the 390px Figma frames, node 4332:22010)
 * ====================================================================== */
@media (max-width: 991px) {
	.webinars-grid__list, .webinars-related__grid { grid-template-columns: repeat(2, 1fr); }
	.webinar-value__list { grid-template-columns: 1fr; }
	.webinar-speakers__grid { grid-template-columns: 1fr; }
	.webinar-spec__grid { grid-template-columns: repeat(2, 1fr); }
	.webinar-numbers__grid { grid-template-columns: repeat(2, 1fr); }
	.webinar-desc__grid { grid-template-columns: 1fr; gap: 28px; }

	/* Single hero: desktop 2-col collapses to ONE stacked column in the Figma
	 * mobile order — poster → eyebrow → h1 → meta → description → form → countdown.
	 * display:contents dissolves the two column wrappers so all pieces become
	 * flex siblings and `order` can interleave them; the duplicate left-title (h2)
	 * is hidden (the h1 is the single title on mobile). */
	.webinar-hero__grid { display: flex; flex-direction: column; gap: 20px; }
	.webinar-hero__media-col, .webinar-hero__aside { display: contents; }
	.webinar-hero__media { order: 1; }
	.webinar-hero__eyebrow { order: 2; }
	.webinar-hero__title { order: 3; }
	.webinar-hero__meta { order: 4; }
	.webinar-hero__desc { order: 5; }
	.webinar-form-shell { order: 6; }
	.webinar-countdown { order: 7; justify-content: center; }
	.webinar-hero__subtitle { display: none; }
}
@media (max-width: 767px) {
	.webinars-hero { padding-top: 104px; background-position: right -30px top -10px, center; background-size: auto 90%, cover; }
	.webinars-hero__title { font-size: 28px; letter-spacing: -1px; }
	.webinars-hero__lead { font-size: 15px; }
	.webinars-filters__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
	.webinars-filters__group { width: 100%; flex-direction: column; align-items: flex-start; gap: 10px; }
	.webinars-filters__pills { flex-wrap: nowrap; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.webinars-filters__pills::-webkit-scrollbar { display: none; }
	.webinars-filters__pill { flex: none; }
	/* Archive list stacks to 1 column… */
	.webinars-grid__list { grid-template-columns: 1fr; }
	/* …but the single-page "You might also be interested in" is a horizontal
	 * scroll carousel on mobile (Figma 4332:18042). */
	.webinars-related__grid { display: flex; grid-template-columns: none; flex-wrap: nowrap; overflow-x: auto; gap: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.webinars-related__grid::-webkit-scrollbar { display: none; }
	.webinars-related .webinar-card { min-width: 300px; scroll-snap-align: start; }
	.webinars-subscribe__card { padding: 40px 24px; }
	.webinars-subscribe__form { width: 100%; flex-basis: auto; }
	.webinars .ll-form--inline { flex-direction: column; width: 100%; }
	.webinars .ll-form--inline .ll-form__fields { width: 100%; }
	.webinars .ll-form--inline .ll-form__submit { width: 100%; }
	.webinar-subheader__inner { padding-top: 104px; flex-wrap: wrap; gap: 12px; }
	.webinar-hero__title { font-size: 28px; letter-spacing: -0.6px; }
	.webinar-spec__grid { grid-template-columns: 1fr 1fr; }
	.webinar-numbers__grid { grid-template-columns: 1fr 1fr; }
	.webinar-speaker { flex-direction: column; gap: 16px; }
	.webinar-speaker__photo { width: 120px; height: 120px; }
	.webinar-block__title { font-size: 26px; }
}
