@charset "UTF-8";

/* ══════════════════════════════════════════════════════════════
   On-Demand Webinars — Variant 1: Card Grid
   Scoped to #body-webinars-v1 (class prefix wb1-)
   Light background, featured split card, 2-col hover-lift grid.
   Brand: gold #fbbb10, UTA green #00853e, dark #282e3e.
   Guards (PROJECT-CONTEXT §7): icon font-size set on the <i>
   itself; all body links get explicit colors (bootstrap a{green}).
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   HERO HEADER POSITION
   The chalkboard artwork in On_Demand_Webinars_Banner.jpg fills the
   top ~66% of the image with white chalk line-art; below that the
   board is clean and noticeably darker. company-why-new.css centres
   the header vertically, which drops white type straight onto the
   chalk. Move it into the clear lower band instead.

   Scoped to .wb1-hero (a modifier class on this page's slide only)
   so the shared company-why-new.css hero is untouched on every other
   page that uses it. Absolute positioning with a percentage `top` is
   deliberate: percentage top resolves against the hero's HEIGHT, so
   the header keeps the same relative position at every breakpoint
   (600px hero on desktop, 170px on phones).
   ══════════════════════════════════════════════════════════════ */

.wb1-hero .why-header-inner {
    position: absolute;
    top: 76%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

#body-webinars-v1 {
    background: #f5f6f4;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    padding: 70px 20px 80px;
}

#body-webinars-v1 a {
    color: #00853e;
    text-decoration: none;
}

/* ── Intro ── */
#body-webinars-v1 .wb1-intro {
    max-width: 860px;
    margin: 0 auto 60px;
    text-align: center;
}

#body-webinars-v1 .wb1-kicker {
    color: #026e35; /* darker green: ≥4.5:1 on #f5f6f4 (WCAG AA small text) */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#body-webinars-v1 .wb1-intro h1 {
    color: #282e3e;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 18px;
}

#body-webinars-v1 .wb1-rule {
    width: 70px;
    border: 0;
    border-top: 4px solid #fbbb10;
    margin: 0 auto 24px;
}

#body-webinars-v1 .wb1-intro p {
    color: #3f4451;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

/* ── Section titles ── */
#body-webinars-v1 .wb1-section-title {
    color: #282e3e;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 30px;
}

/* ── Featured card ── */
#body-webinars-v1 .wb1-featured-wrap {
    max-width: 1080px;
    margin: 0 auto 70px;
}

#body-webinars-v1 .wb1-featured {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(40, 46, 62, 0.12);
    border-top: 5px solid #fbbb10;
}

#body-webinars-v1 .wb1-featured-media {
    flex: 0 0 58%;
    position: relative;
    display: block;
}

#body-webinars-v1 .wb1-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#body-webinars-v1 .wb1-featured-body {
    flex: 1 1 42%;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#body-webinars-v1 .wb1-badge {
    background: #fbbb10;
    color: #282e3e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 20px;
}

#body-webinars-v1 .wb1-featured-body h3 {
    color: #282e3e;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 26px;
}

#body-webinars-v1 .wb1-btn {
    background: #00853e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 28px;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.25s;
}

#body-webinars-v1 .wb1-btn:hover,
#body-webinars-v1 .wb1-btn:focus {
    background: #026e35;
    color: #ffffff;
}

#body-webinars-v1 .wb1-btn i {
    font-size: 14px; /* guard: i.fa{font-size:36px} in style.css */
    margin-left: 6px;
}

/* ── Play badge overlay ── */
#body-webinars-v1 .wb1-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(40, 46, 62, 0.75);
    border: 3px solid #fbbb10;
    transition: background 0.25s;
}

#body-webinars-v1 .wb1-play i {
    /* guard: size the glyph on the <i> itself + flex-center it */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* style.css also sets `i.fa { min-width: 55px }`, which only bites once
       the <i> stops being display:inline. The small 52px circle has a 46px
       content box, so the 55px minimum overflowed it and shoved the glyph
       ~4.5px right of centre. Reset it. */
    min-width: 0;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    font-size: 24px;
    color: #fbbb10;
    /* No optical nudge: measured at 6x zoom, fa-play's ink is already
       centred within its own glyph box, so any padding here just pushes
       the triangle off-centre. */
    padding: 0;
}

#body-webinars-v1 .wb1-play-sm {
    width: 52px;
    height: 52px;
}

#body-webinars-v1 .wb1-play-sm i {
    font-size: 18px;
}

#body-webinars-v1 .wb1-featured-media:hover .wb1-play,
#body-webinars-v1 .wb1-thumb:hover .wb1-play {
    background: rgba(0, 133, 62, 0.85);
}

/* ── Grid ── */
#body-webinars-v1 .wb1-grid-wrap {
    max-width: 1080px;
    margin: 0 auto 60px;
}

#body-webinars-v1 .wb1-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

#body-webinars-v1 .wb1-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(40, 46, 62, 0.10);
    border-top: 5px solid #fbbb10;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

#body-webinars-v1 .wb1-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(40, 46, 62, 0.18);
}

#body-webinars-v1 .wb1-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#body-webinars-v1 .wb1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#body-webinars-v1 .wb1-card-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

#body-webinars-v1 .wb1-card-body h4 {
    color: #282e3e;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 18px;
    flex: 1 1 auto;
}

#body-webinars-v1 .wb1-link {
    color: #00853e;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    border-bottom: 2px solid #fbbb10;
    padding-bottom: 3px;
    transition: color 0.25s;
}

#body-webinars-v1 .wb1-link:hover,
#body-webinars-v1 .wb1-link:focus {
    color: #026e35;
}

#body-webinars-v1 .wb1-link i {
    font-size: 14px; /* guard */
    margin-left: 4px;
}

/* ── Contact ── */
#body-webinars-v1 .wb1-contact {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-left: 5px solid #00853e;
    border-radius: 6px;
    padding: 26px 30px;
    box-shadow: 0 4px 14px rgba(40, 46, 62, 0.08);
}

#body-webinars-v1 .wb1-contact p {
    color: #3f4451;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

#body-webinars-v1 .wb1-contact a {
    color: #00853e;
    font-weight: 700;
    text-decoration: underline;
}

#body-webinars-v1 .wb1-contact a:hover {
    color: #026e35;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    #body-webinars-v1 .wb1-featured {
        flex-direction: column;
    }
    #body-webinars-v1 .wb1-featured-media {
        flex: 0 0 auto;
        aspect-ratio: 16 / 9;
    }
    #body-webinars-v1 .wb1-featured-body {
        padding: 32px 30px;
    }
}

@media (max-width: 767px) {
    #body-webinars-v1 {
        padding: 50px 16px 60px;
    }
    #body-webinars-v1 .wb1-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #body-webinars-v1 .wb1-intro h1 {
        font-size: 30px;
    }
    #body-webinars-v1 .wb1-section-title {
        font-size: 21px;
    }
}
