/* Webinar registration page + AzureData teaser */
.wb-page {
    --wb-ink: #0f1f4d;
    --wb-muted: #5a6478;
    --wb-green: #72bb44;
    --wb-green-dark: #3d7a1f;
    background: #f4f6f8;
}

.wb-hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 5vw, 56px);
    background:
        radial-gradient(ellipse 70% 80% at 15% 20%, rgba(114, 187, 68, 0.18), transparent 55%),
        linear-gradient(135deg, #0f1f4d 0%, #1a3366 55%, #243d5c 100%);
    color: #fff;
}

.wb-hero__inner { max-width: 760px; }

.wb-hero__eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(114, 187, 68, 0.22);
    color: #c8ecab;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wb-hero h1 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.15;
    font-weight: 600;
    color: #fff;
}

.wb-hero__lead {
    margin: 0 0 22px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 58ch;
}

.wb-hero__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.wb-hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.wb-hero__meta i { color: var(--wb-green); }

.wb-body {
    padding: clamp(32px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
}

.wb-body__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}

.wb-agenda h2,
.wb-form h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    color: var(--wb-ink);
    font-weight: 600;
}

.wb-agenda ul {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.wb-agenda li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
    color: #2d3648;
}

.wb-agenda li i {
    color: var(--wb-green);
    margin-top: 3px;
    flex: 0 0 auto;
}

.wb-speaker {
    padding: 20px 22px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 31, 77, 0.08);
}

.wb-speaker h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--wb-ink);
}

.wb-speaker p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--wb-muted);
}

.wb-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wb-green-dark);
    text-decoration: none;
}

.wb-back-link:hover { text-decoration: underline; }

.wb-register { position: sticky; top: 88px; }

.wb-form {
    padding: clamp(22px, 2.5vw, 28px);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 31, 77, 0.08);
    box-shadow: 0 18px 48px rgba(15, 31, 77, 0.08);
    display: grid;
    gap: 12px;
}

.wb-form__intro {
    margin: -6px 0 4px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--wb-muted);
}

.wb-form__intro,
.wb-form__note {
    /* shared muted helper text */
}

.wb-sessions {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 10px;
}

.wb-sessions legend {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #3d4660;
}

.wb-session {
    display: block;
    cursor: pointer;
    position: relative;
}

.wb-session input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wb-session__card {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(15, 31, 77, 0.12);
    background: #f7f9f5;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.wb-session__card strong { font-size: 14.5px; color: var(--wb-ink); }
.wb-session__card span { font-size: 13.5px; color: #2d3648; }
.wb-session__card em { font-style: normal; font-size: 12px; color: var(--wb-muted); }

.wb-session input:checked + .wb-session__card {
    border-color: rgba(114, 187, 68, 0.75);
    background: rgba(114, 187, 68, 0.1);
    box-shadow: 0 0 0 3px rgba(114, 187, 68, 0.16);
}

.wb-session:hover .wb-session__card {
    border-color: rgba(114, 187, 68, 0.45);
}

.wb-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wb-form__field {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #3d4660;
}

.wb-form__field input,
.wb-form__field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid rgba(15, 31, 77, 0.14);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--wb-ink);
    outline: none;
    font-family: inherit;
}

.wb-form__field textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.45;
}

.wb-form__field input:focus,
.wb-form__field textarea:focus {
    border-color: rgba(114, 187, 68, 0.65);
    box-shadow: 0 0 0 3px rgba(114, 187, 68, 0.18);
}

.wb-form__btn {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
}

.wb-form__note {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--wb-muted);
    text-align: center;
}

.wb-form__status {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
}

.wb-form__status.is-ok { color: #2f6b14; }
.wb-form__status.is-err { color: #a11f2c; }

@media (max-width: 900px) {
    .wb-body__grid { grid-template-columns: 1fr; }
    .wb-register { position: static; }
    .wb-form__row { grid-template-columns: 1fr; }
}

/* AzureData teaser (matches _ServiceConversionOffer webinar mode) */
.sv-offer--webinar .sv-offer__panel {
    background: linear-gradient(160deg, #f4f6fb, #e8ecf4);
}

.sv-offer-webinar {
    display: grid;
    gap: 14px;
}

.sv-offer-webinar__heading {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f1f4d;
}

.sv-offer-webinar__sessions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.sv-offer-webinar__sessions li {
    display: grid;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 31, 77, 0.1);
    font-size: 13.5px;
    color: #2d3648;
}

.sv-offer-webinar__sessions strong {
    font-size: 13px;
    color: #0f1f4d;
}

.sv-offer-webinar__sessions span {
    color: #5a6478;
    font-size: 12.5px;
}

.sv-offer-webinar__btn {
    justify-content: center;
    width: 100%;
    text-align: center;
    text-decoration: none;
}
