:root {
 
  --blue-100:     #428dff;
  --blue-70:      #5495f2;
  --blue-20:      #dae9ff;
  --blue-10:      #e9f2ff;
  --brand-yellow: #fcbd49;
  --brand-orange: #ffa23e;
  --brand-red:    #ff1010;
  --ink:          #141414;
  --dark-grey:    #6f6f6f;
  --grey:         #cacaca;
  --light-grey:   #f0f0f0;
  --grey-2:       #999;
  --white:        #fff;
  --fafafa:       #fafafa;
  --border-grey:  #e5e5e5;
  --radius:       0px;
}
.ehs-wf {
  --blue:      #428dff;
  --blue-70:   #5495f2;
  --blue-10:   #e9f2ff;
  --ink:       #141414;
  --dg:        #6f6f6f;
  --lg:        #f0f0f0;
  --bg:        #fafafa;
  --border:    #e5e5e5;
  --white:     #fff;
 
  --radius:    0px;

  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* { box-sizing: border-box; }

.ehs-g2 {
  background: var(--white);
  font-family: var(--body-font);
  border: 2px solid var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── MASTHEAD ── */
.ehs-g2-mast {
  background: var(--ink);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ehs-g2-mast-brand {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.ehs-g2-mast-brand span { color: var(--blue-100); }
.ehs-g2-mast-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ehs-g2-mast-tag {
  font-size: 10px;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.ehs-g2-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-100);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ehs-g2-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: g2pulse 1.3s infinite;
  flex-shrink: 0;
}
@keyframes g2pulse { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ── DATE BAR ── */
.ehs-g2-datebar {
  padding: 7px 48px;
  font-size: 10px;
  color: var(--dark-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border-grey);
  background: var(--fafafa);
}

/* ── BODY: 3-col desktop ── */
.ehs-g2-body {
  display: grid;
  grid-template-columns: 1fr 1px 1.5fr 1px 290px;
  padding: 0 48px;
  gap: 0;
  align-items: start;
}
.ehs-g2-col-rule { background: var(--border-grey); }
.ehs-g2-col1 { padding: 36px 28px 36px 0; }
.ehs-g2-col2 { padding: 36px 28px; }
.ehs-g2-col3 { padding: 36px 0 36px 28px; }

/* ── SECTION LABEL ── */
.ehs-g2-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-100);
  border-bottom: 2px solid var(--blue-100);
  padding-bottom: 7px;
  margin-bottom: 18px;
  display: block;
}

/* ── HEADLINE ── */
.ehs-g2-hl {
  font-family: var(--body-font);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.ehs-g2-hl em {
  font-style: italic;
  font-family: var(--span-font);
  font-weight: 400;
  color: var(--blue-100);
}

/* ── DECK ── */
.ehs-g2-deck {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark-grey);
  font-weight: 300;
  border-top: 1px solid var(--border-grey);
  padding-top: 16px;
  margin-bottom: 20px;
}
.ehs-g2-byline {
  font-size: 11px;
  color: var(--grey-2);
  margin-bottom: 24px;
  font-style: italic;
}

/* ── CTA ── */
.ehs-g2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background .15s;
}
.ehs-g2-cta:hover { background: var(--blue-100); }

/* ── IMAGE ── */
.ehs-g2-img-wrap {
  width: 100%;
 
  overflow: hidden;
  margin-bottom: 0px;
 
  position: relative;
}
.ehs-g2-img-wrap img {
  width: 100%;

}
.ehs-g2-img-ph {
 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ehs-g2-caption {
  font-size: 11px;
  color: var(--grey-2);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid var(--border-grey);
  padding-top: 10px;
}

/* ── ASIDE LABEL ── */
.ehs-g2-aside-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 7px;
  margin-bottom: 16px;
  display: block;
}

/* ── EVENT CARD ── */
.ehs-g2-event-card {
  background: var(--ink);
  padding: 22px;
  margin-bottom: 22px;
}
.ehs-g2-event-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 9px;
}
.ehs-g2-event-date {
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}
.ehs-g2-event-time {
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}
.ehs-g2-event-cta {
  display: block;
  text-align: center;
  background: var(--blue-100);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px;
  text-decoration: none;
  transition: background .15s;
}
.ehs-g2-event-cta:hover { background: var(--blue-70); }

/* ── STATS ── */
.ehs-g2-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border-grey);
  padding: 11px 0;
}
.ehs-g2-stat-item:last-child { border-bottom: none; }
.ehs-g2-stat-num {
  font-family: var(--body-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
}
.ehs-g2-stat-desc {
  font-size: 11px;
  color: var(--grey-2);
  text-align: right;
  max-width: 110px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.ehs-g2-footer-rule { height: 1px; background: var(--border-grey); margin: 0 48px; }
.ehs-g2-footer {
  padding: 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--fafafa);
}
.ehs-g2-footer-text {
  font-size: 10px;
  color: var(--grey-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ehs-g2-footer-spots {
  font-size: 10px;
  color: var(--blue-100);
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ehs-g2-footer-spots::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-100);
  animation: g2pulse 1.3s infinite;
}

.mob-view-hero {
    display: none;
}

/* ════════════════════════════════
   TABLET — 991px and below
   3-col → 2-col (copy + sidebar),
   image moves above copy
   ════════════════════════════════ */
@media (max-width: 991px) {

  .ehs-g2-mast { padding: 12px 32px; }
  .ehs-g2-mast-tag { display: none; }

  .ehs-g2-datebar { padding: 7px 32px; }

  /* Kill 3-col, go 2-col: copy left, sidebar right */
  .ehs-g2-body {
    grid-template-columns: 1fr 1px 260px;
    padding: 0 32px;
  }

  /* Hide the second col-rule (between image col and sidebar) */
  .ehs-g2-col2 {
    display: none;
  }
  /* The col-rule after col2 also hidden via sibling trick */
  .ehs-g2-col-rule:last-of-type {
    display: none;
  }

  /* Image moves above headline as a banner */
  .ehs-g2-col1 {
    padding: 28px 24px 28px 0;
    grid-column: 1;
  }
  .ehs-g2-col1::before {
    content: '';
    display: block;
    width: 100%;
    background: var(--light-grey) url('images/Frame-2147237549.avif') center top / cover no-repeat;
    aspect-ratio: 16/7;
    margin-bottom: 24px;
    border: 1px solid var(--border-grey);
  }

  .ehs-g2-col3 {
    padding: 28px 0 28px 24px;
  }

  .ehs-g2-footer-rule { margin: 0 32px; }
  .ehs-g2-footer { padding: 10px 32px; }
}

/* ════════════════════════════════
   MOBILE LANDSCAPE — 767px
   ════════════════════════════════ */
@media (max-width: 767px) {
   .web_view-hero{
    display: none;
   }
   .mob-view-hero{
    display: block;
   }
   .ehs-g2-img-wrap{
    padding: 15px;
    text-align: center;
   }
  .ehs-g2 { border-left: none; border-right: none; }

  .ehs-g2-mast { padding: 10px 20px; }
  .ehs-g2-mast-brand { font-size: 17px; }
  .ehs-g2-live { font-size: 9px; padding: 5px 10px; letter-spacing: 1px; }

  .ehs-g2-datebar {
    padding: 6px 20px;
    font-size: 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  /* Single column, stacked */
  .ehs-g2-body {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  /* All rules hidden */
  .ehs-g2-col-rule { display: none !important; }

  /* Image strip full width at top */
  .ehs-g2-col1 {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-grey);
    order: 2;
  }
  .ehs-g2-col1::before {
    aspect-ratio: 16/9;
    margin-bottom: 20px;
  }

  /* Sidebar goes below copy */
  .ehs-g2-col3 {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-grey);
    order: 3;
    background: var(--fafafa);
  }

  /* Show image col on mobile as its own block */
  .ehs-g2-col2 {
    display: block !important;
    padding: 0;
    order: 1;
  }
  .ehs-g2-col2 .ehs-g2-img-wrap {
    margin-bottom: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
 
  .ehs-g2-col2 .ehs-g2-img-ph {
    aspect-ratio: 4/3;
  }
  .ehs-g2-col2 .ehs-g2-caption {
    padding: 10px 20px 16px;
    border-top: 1px solid var(--border-grey);
  }

  /* Col1 no longer needs ::before image since col2 shows above */
  .ehs-g2-col1::before { display: none; }

  /* Make event card horizontal on landscape mobile */
  .ehs-g2-event-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0 20px;
    padding: 18px;
  }
  .ehs-g2-event-label { margin-bottom: 4px; }
  .ehs-g2-event-date { font-size: 18px; margin-bottom: 2px; }
  .ehs-g2-event-time { margin-bottom: 0; }
  .ehs-g2-event-cta {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  /* Stats in 2-col grid */
  .ehs-g2-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-grey);
    border: 1px solid var(--border-grey);
    margin-top: 4px;
  }
  .ehs-g2-stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--white);
    padding: 14px 14px;
    border-bottom: none !important;
  }
  .ehs-g2-stat-desc { text-align: left; max-width: none; }

  .ehs-g2-footer-rule { margin: 0 20px; }
  .ehs-g2-footer {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ════════════════════════════════
   MOBILE PORTRAIT — 479px
   ════════════════════════════════ */
@media (max-width: 479px) {

  .ehs-g2-mast { padding: 10px 16px; gap: 10px; }
  .ehs-g2-mast-brand { font-size: 15px; }
  .ehs-g2-live { letter-spacing: 0.5px; font-size: 8px; padding: 5px 8px; }

  .ehs-g2-datebar { padding: 6px 16px; }

  .ehs-g2-col1 { padding: 20px 16px; }
  .ehs-g2-col3 { padding: 20px 16px; }

  .ehs-g2-col2 .ehs-g2-caption { padding: 10px 16px 14px; }

  .ehs-g2-hl { font-size: clamp(22px, 6vw, 32px); }

  .ehs-g2-cta { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; }

  .ehs-g2-event-card { display: block; padding: 18px 16px; }
  .ehs-g2-event-time { margin-bottom: 16px; }

  .ehs-g2-stats-grid { grid-template-columns: 1fr 1fr; }

  .ehs-g2-footer-rule { margin: 0 16px; }
  .ehs-g2-footer { padding: 10px 16px; }
  .ehs-g2-footer-text { font-size: 9px; }
}



/* ── HEAD ── */
.ehs-wf-head {
  padding: 72px 72px 0;
  text-align: center;
}
.ehs-wf-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.ehs-wf-h2 {
  font-family: var(--body);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 56px;
}
.ehs-wf-h2 em {
  font-style: italic;
  font-family: var(--span-font);
  font-weight: 600;
  color: var(--blue);
}

/* ── GRID ── */
.ehs-wf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 72px;
}

/* ── CARD ── */
.ehs-wf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-top-color .25s, border-color .25s;
  border-radius: var(--radius);
}
.ehs-wf-card:hover {
  border-top-color: var(--blue);
  border-color: #d0daff;
}

/* bottom sweep line */
.ehs-wf-card-sweep {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.ehs-wf-card:hover .ehs-wf-card-sweep {
  transform: scaleX(1);
}

/* ghost number */
.ehs-wf-num {
  font-family: var(--body);
  font-size: 56px;
  font-weight: 700;
  color: var(--lg);
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 20px;
  transition: color .25s;
  user-select: none;
}
.ehs-wf-card:hover .ehs-wf-num {
  color: var(--blue-10);
}

/* icon */
.ehs-wf-icon {
  width: 44px;
  height: 44px;
  background: var(--lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  transition: background .25s;
  flex-shrink: 0;
}
.ehs-wf-card:hover .ehs-wf-icon {
  background: var(--blue);
}
.ehs-wf-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--dg);
  transition: stroke .25s;
}
.ehs-wf-card:hover .ehs-wf-icon svg {
  stroke: #fff;
}

/* title */
.ehs-wf-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color .25s;
}
.ehs-wf-card:hover .ehs-wf-title {
  color: var(--ink);
}

/* description — slides up on hover */
.ehs-wf-desc {
  font-size: 13px;
  color: var(--dg);
  line-height: 1.7;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s;
}
.ehs-wf-card:hover .ehs-wf-desc {
  max-height: 100px;
  opacity: 1;
}

/* tag + arrow row */
.ehs-wf-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  transition: border-color .25s;
}
.ehs-wf-card:hover .ehs-wf-card-foot {
  border-color: #d0daff;
}
.ehs-wf-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--border);
  transition: color .25s;
}
.ehs-wf-card:hover .ehs-wf-tag {
  color: var(--blue);
}
.ehs-wf-arrow {
  font-size: 16px;
  color: var(--border);
  transition: color .25s, transform .3s;
  line-height: 1;
}
.ehs-wf-card:hover .ehs-wf-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* ── FOOTER BAR ── */
.ehs-wf-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 72px 72px;
  margin-top: 32px;
}
.ehs-wf-foot-txt {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ehs-wf-foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background .15s;
}
.ehs-wf-foot-cta:hover {
  background: var(--blue);
}
.ehs-wf-foot-cta svg {
  width: 14px;
  height: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .ehs-wf-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
  .ehs-wf-head { padding: 56px 40px 0; }
  .ehs-wf-foot { padding: 20px 40px 56px; }
}
@media (max-width: 600px) {
  .ehs-wf-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .ehs-wf-head { padding: 48px 24px 0; }
  .ehs-wf-foot { flex-direction: column; gap: 20px; align-items: flex-start; padding: 16px 24px 48px; }
}