.ehc-wrap {
  --font: 'Raleway', sans-serif;
  --hero-bg: #EE3924;
  --hero-text: #ffffff;
  box-sizing: border-box;
}

.ehc-wrap *,
.ehc-wrap *::before,
.ehc-wrap *::after {
  box-sizing: border-box;
}

.ehc-wrap .ehc-hero *,
.ehc-wrap .ehc-nav *,
.ehc-wrap .ehc-stats * {
  margin: 0;
  padding: 0;
}

/* ═══ HERO ═══ */
.ehc-wrap .ehc-hero {
  position: relative;
  background-color: var(--hero-bg);
  color: var(--hero-text);
  overflow: hidden;
  padding: 0;
}

.ehc-wrap .ehc-hero__inner {
  position: relative;
  z-index: 5;
  max-width: var(--content-max, 1440px);
  margin: 0 auto;
  padding: 24px 20px 40px;
}

/* TOP BAR */
.ehc-wrap .ehc-hero__topbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
  margin-top: 80px;
}

.ehc-wrap .ehc-hero__decor {
  display: flex;
  align-items: flex-start;
  justify-content: var(--logo-align, flex-start);
}

.ehc-wrap .ehc-hero__logo {
  max-width: var(--logo-w-mobile, 200px);
  height: auto;
  display: block;
  margin-top: var(--logo-mt, 30px);
  margin-bottom: var(--logo-mb, 0px);
}

/* COUNTDOWN */
.ehc-wrap .ehc-hero__countdown {
  display: inline-flex;
  align-items: baseline;
  gap: var(--cd-box-gap, 14px);
  flex-wrap: wrap;
  justify-content: var(--cd-align-mobile, flex-start);
  background: var(--cd-box-bg, transparent);
  border: var(--cd-box-border-w, 0px) solid var(--cd-box-border-color, transparent);
  border-radius: var(--cd-box-radius-mobile, 0px);
  padding: var(--cd-box-pad-y-mobile, 0px) var(--cd-box-pad-x-mobile, 0px);
  max-width: 100%;
}

.ehc-wrap .ehc-cd__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 44px;
}

.ehc-wrap .ehc-cd__number {
  font-family: var(--font);
  font-size: var(--cd-number-size-mobile, 36px);
  font-weight: 400;
  line-height: 22px;
  color: var(--cd-number-color, #fff);
}

.ehc-wrap .ehc-cd__number[data-days] {
  font-weight: 700;
}

.ehc-wrap .ehc-cd__label {
  font-family: var(--font);
  font-size: var(--cd-label-size-mobile, 10px);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--cd-label-color, rgba(255,255,255,0.65));
  margin-top: 22px;
  text-transform: uppercase;
}

.ehc-wrap .ehc-cd__sep {
  font-family: var(--font);
  font-size: var(--cd-sep-size, 28px);
  font-weight: 400;
  color: var(--cd-sep-color, rgba(255,255,255,0.7));
  line-height: 100%;
  align-self: flex-start;
  margin-top: 2px;
}

.ehc-wrap .ehc-cd__expired {
  font-family: var(--font);
  font-size: var(--cd-expired-size, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cd-expired-color, #fff);
}

/* BODY */
.ehc-wrap .ehc-hero__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ehc-wrap .ehc-hero__copy {
  max-width: 100%;
  position: relative;
  z-index: 5;
}

.ehc-wrap .ehc-hero__heading {
  font-family: var(--font);
  font-size: var(--heading-size-mobile, 26px);
  font-weight: var(--heading-weight, 700);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--heading-color, #fff);
}

.ehc-wrap .ehc-hero__subheading,
.ehc-wrap .ehc-hero__subheading p {
  font-family: var(--font);
  font-size: var(--sub-size, 16px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--sub-color, rgba(255,255,255,0.85));
}

.ehc-wrap .ehc-hero__subheading {
  margin-bottom: 20px;
}

.ehc-wrap .ehc-hero__subheading p {
  margin-bottom: 12px;
}

.ehc-wrap .ehc-hero__subheading p:last-child {
  margin-bottom: 0;
}

.ehc-wrap .ehc-hero__date,
.ehc-wrap .ehc-hero__attendees {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: var(--meta-size, 14px);
  color: var(--meta-color, rgba(255,255,255,0.85));
  margin-bottom: 8px;
}

.ehc-wrap .ehc-hero__date strong,
.ehc-wrap .ehc-hero__attendees strong {
  font-weight: 700;
  color: var(--meta-strong-color, #fff);
}

.ehc-wrap .ehc-hero__icon {
  flex-shrink: 0;
  color: var(--meta-icon-color, rgba(255,255,255,0.65));
}

/* CTA */
.ehc-wrap .ehc-hero__cta {
  margin-top: 24px;
}

.ehc-wrap .ehc-hero__btn {
  display: inline-block;
  background: var(--btn-bg, #1A3B69);
  color: var(--btn-color, #fff);
  font-family: var(--font);
  font-size: var(--btn-size, 14px);
  font-weight: 700;
  text-decoration: none;
  padding: var(--btn-pad-y, 15px) var(--btn-pad-x, 36px);
  border-radius: var(--btn-radius, 100px);
  border: var(--btn-border-w, 0px) solid var(--btn-border-color, transparent);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
  width: 100%;
  text-align: center;
}

.ehc-wrap .ehc-hero__btn:hover,
.ehc-wrap .ehc-hero__btn:focus-visible {
  background: var(--btn-bg-hover, #0f2a52);
  transform: translateY(-1px);
}

/* VISUAL */
.ehc-wrap .ehc-hero__visual {
  position: relative;
  min-height: 280px;
  z-index: 4;
}

/* SPEAKERS CARD */
.ehc-wrap .ehc-hero__speakers-card {
  position: relative;
  z-index: 6;
  border-radius: 20px;
  padding-top: 0;
  width: 100%;
}

.ehc-wrap .ehc-sp__heading {
  font-family: var(--font);
  font-size: var(--sp-heading-size, 15px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--sp-heading-color, rgba(255,255,255,0.7));
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ehc-wrap .ehc-sp__row {
  display: flex;
  align-items: center;
  gap: 14px;
  border: var(--sp-row-border-w, 1px) solid var(--sp-row-border, #fff);
  background: var(--sp-row-bg, rgba(255,255,255,0.4));
  padding: var(--sp-row-pad-y, 17px) var(--sp-row-pad-x, 19px);
  margin-bottom: var(--sp-row-gap, 8px);
  transition: background 0.2s;
}

.ehc-wrap .ehc-sp__row:first-of-type {
  border-top-left-radius: var(--sp-row-radius, 50px);
}

.ehc-wrap .ehc-sp__row:last-child {
  border-bottom-right-radius: var(--sp-row-radius, 50px);
  margin-bottom: 0;
}

.ehc-wrap .ehc-sp__row:hover {
  background: var(--sp-row-bg-hover, rgba(255,210,190,0.35));
}

.ehc-wrap .ehc-sp__avatar {
  width: var(--sp-avatar, 50px);
  height: var(--sp-avatar, 50px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sp-avatar-bg, rgba(255,255,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.ehc-wrap .ehc-sp__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ehc-wrap .ehc-sp__placeholder {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--sp-placeholder-color, rgba(255,255,255,0.7));
  text-transform: uppercase;
}

.ehc-wrap .ehc-sp__info {
  flex: 1;
  min-width: 0;
}

.ehc-wrap .ehc-sp__name {
  display: block;
  font-family: var(--font);
  font-size: var(--sp-name-size, 16px);
  font-weight: 800;
  color: var(--sp-name-color, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ehc-wrap .ehc-sp__title {
  display: block;
  font-family: var(--font);
  font-size: var(--sp-title-size, 13px);
  font-weight: 600;
  color: var(--sp-title-color, rgba(255,255,255,0.7));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.ehc-wrap .ehc-sp__tag {
  flex-shrink: 0;
  background: var(--sp-tag-bg, #EE3924);
  color: var(--sp-tag-color, #fff);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--sp-tag-radius, 4px);
  text-transform: uppercase;
}

/* ILLUSTRATION */
@keyframes slideInFromRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.ehc-wrap .ehc-hero__illustration {
  bottom: -40px;
  right: -2px;
  left: auto;
  height: auto;
  max-width: 450px;
  margin-left: auto;
  pointer-events: none;
  position: absolute;
  width: 70%;
  z-index: 1;
  animation: slideInFromRight 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* LOCATION PILL */
.ehc-wrap .ehc-hero__location {
  align-items: center;
  background: var(--loc-bg, #1A3B69);
  border-radius: var(--loc-radius, 100px) 0 0 var(--loc-radius, 100px);
  bottom: 25px;
  color: var(--loc-color, rgba(255,255,255,0.9));
  display: flex;
  font-family: var(--font);
  font-size: var(--loc-size, 14px);
  font-weight: 600;
  gap: 8px;
  padding: var(--loc-pad-y, 10px) 81px var(--loc-pad-y, 10px) 24px;
  position: absolute;
  right: -70px;
  z-index: 8;
}

.ehc-wrap .ehc-hero__location svg {
  color: var(--loc-icon-color, rgba(255,255,255,0.8));
}

/* DECORATIVE */
.ehc-wrap .ehc-hero__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ehc-wrap .ehc-decor-buildings {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 80%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* ═══ NAV BAR ═══ */
.ehc-wrap .ehc-nav {
  background: var(--nav-bg, #1A3B69);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ehc-wrap .ehc-nav::-webkit-scrollbar {
  display: none;
}

.ehc-wrap .ehc-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
  justify-content: var(--nav-align, center);
}

.ehc-wrap .ehc-nav__item {
  flex: none;
  position: relative;
}

.ehc-wrap .ehc-nav__item + .ehc-nav__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28%;
  height: 44%;
  width: 1px;
  background: var(--nav-divider, rgba(255,255,255,0.2));
}

.ehc-wrap .ehc-nav__link {
  display: block;
  padding: var(--nav-pad-y, 16px) var(--nav-pad-x, 20px);
  font-family: var(--font);
  font-size: var(--nav-size, 11px);
  font-weight: 600;
  letter-spacing: var(--nav-spacing, 0.8px);
  color: var(--nav-link, rgba(255,255,255,0.75));
  text-decoration: none;
  text-transform: var(--nav-transform, uppercase);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.ehc-wrap .ehc-nav__link:hover,
.ehc-wrap .ehc-nav__link:focus-visible {
  color: var(--nav-link-hover, #fff);
  background: var(--nav-link-hover-bg, rgba(255,255,255,0.06));
}

/* ═══ STATS ═══ */
.ehc-wrap .ehc-stats {
  background: var(--stats-bg, #F4F7FB);
  padding: var(--stats-pad-y, 32px) 20px;
}

.ehc-wrap .ehc-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--stats-gap, 24px);
  text-align: center;
}

.ehc-wrap .ehc-stats__item + .ehc-stats__item {
  border-left: 1px solid var(--stat-divider-color, transparent);
}

.ehc-wrap .ehc-stats__value {
  display: block;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  color: var(--stat-value-color, #1A3B69);
  line-height: 1.1;
  margin-bottom: 4px;
}

.ehc-wrap .ehc-stats__label {
  display: block;
  font-family: var(--font);
  font-size: var(--stat-label-size, 13px);
  font-weight: 500;
  color: var(--stat-label-color, #7A8A9D);
}

/* ═══ RESPONSIVE ═══ */
@media (min-width: 600px) {
  .ehc-wrap .ehc-hero__inner {
    padding: 32px 40px 46px;
  }
  .ehc-wrap .ehc-hero__topbar {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 55px;
    margin-top: 20px;
  }
  .ehc-wrap .ehc-hero__logo {
    max-width: var(--logo-w-tablet, 240px);
  }
  .ehc-wrap .ehc-stats__grid {
    grid-template-columns: repeat(var(--stats-columns, 4), 1fr);
    max-width: 1296px;
    width: 100%;
  }
  .ehc-wrap .ehc-stats {
    padding: var(--stats-pad-y, 36px) 0 22px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .ehc-wrap .ehc-stats__value {
    font-size: var(--stat-value-size, 40px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ehc-wrap .ehc-hero__logo {
    max-width: var(--logo-w-tablet, 400px);
  }
  .ehc-wrap .ehc-hero__topbar {
    margin-bottom: 50px;
  }
  .ehc-wrap .ehc-hero__location {
    right: -20px;
  }
  .ehc-wrap .ehc-hero__cta {
    max-width: 180px;
  }
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .ehc-wrap .ehc-hero__copy {
    flex: 0 1 460px;
  }
  .ehc-wrap .ehc-hero__visual {
    right: 0;
  }
  .ehc-wrap .ehc-hero__logo {
    max-width: var(--logo-w-tablet, 400px);
  }
  .ehc-wrap .ehc-hero__topbar {
    margin-bottom: 45px;
  }
}

@media (min-width: 1024px) {
  .ehc-wrap .ehc-hero__inner {
    padding: var(--hero-pad-top, 40px) var(--hero-pad-x, 56px) var(--hero-pad-bottom, 46px);
  }
  .ehc-wrap .ehc-hero__logo {
    max-width: var(--logo-w, 450px);
    margin-top: var(--logo-mt, 30px);
  }
  .ehc-wrap .ehc-hero__countdown {
    position: absolute;
    top: 50px;
    right: 75px;
    justify-content: var(--cd-align-desktop, flex-end);
    border-radius: var(--cd-box-radius, 0px);
    padding: var(--cd-box-pad-y, 0px) var(--cd-box-pad-x, 0px);
    gap: var(--cd-box-gap, 18px);
  }
  .ehc-wrap .ehc-cd__unit {
    max-width: 68px;
  }
  .ehc-wrap .ehc-cd__number {
    font-size: var(--cd-number-size, 56px);
  }
  .ehc-wrap .ehc-cd__label {
    font-size: var(--cd-label-size, 11px);
  }
  .ehc-wrap .ehc-hero__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-top: 70px;
  }
  .ehc-wrap .ehc-hero__copy {
    flex: 0 1 800px;
    padding-top: 16px;
    max-width: 800px;
  }
  .ehc-wrap .ehc-hero__heading {
    font-size: var(--heading-size, 40px);
  }
  .ehc-wrap .ehc-hero__btn {
    width: var(--btn-width, auto);
  }
  .ehc-wrap .ehc-hero__location {
    bottom: 45px;
    right: 0;
  }
  .ehc-wrap .ehc-hero__visual {
    display: flex;
    flex: 1;
    flex-direction: row;
    position: absolute;
    justify-content: end;
    right: 184px;
    min-height: 400px;
  }
  .ehc-wrap .ehc-hero__speakers-card {
    max-width: 460px;
    margin-left: 0;
    left: -9.7%;
    top: 10px;
  }
  .ehc-wrap .ehc-hero__illustration {
    bottom: -75px;
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .ehc-wrap .ehc-hero__illustration {
    max-width: 420px !important;
    width: auto !important;
    right: -15px;
  }
  
  .ehc-wrap .ehc-hero__location {
    bottom: 25px;
  }
}

@media (max-width: 1024px) {
  .ehc-wrap .ehc-hero__countdown {
    margin-top: 15px;
  }
}

@media (max-width: 1100px) and (min-width: 1023px) {
  .ehc-wrap .ehc-hero__illustration {
    right: -95px;
  }
}
.ehc-wrap .ehc-hero__countdown {
padding: 20px !important;
border-radius: 20px 0px 20px 0px;
}
@media (max-width: 1024px) {
    .ehc-wrap .ehc-hero__countdown {
        margin-top: 15px;
        justify-content: center;
    }
}
@media (min-width: 1024px) {
    .ehc-wrap .ehc-hero__copy {
        max-width: 60%;
    } 