.expo-landing .sectionTag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: inherit;
}

.expo-landing section h2,
.expo-landing section h3,
.expo-landing section h4,
.expo-landing section .display-5,
.expo-landing section .display-6,
.expo-landing section .display-7 {
  font-weight: 800;
}

/* expo-hero-mf: marketing-style hero with centered content and stat cards */
.expo-landing .expo-hero-mf {
  min-height: 0;
}

.expo-landing .expo-hero-mf__title {
  font-size: clamp(1.75rem, 5vw + 1.25rem, 4.5rem);
  line-height: 1.2;
}

@media (min-width: 992px) {
  .expo-landing .expo-hero-mf__title {
    font-size: clamp(3rem, 4vw + 1.5rem, 4.75rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.expo-landing .expo-hero-mf__content {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .expo-landing .expo-hero-mf__content {
    gap: 2rem;
  }
}

.expo-landing .expo-hero-cards,
.expo-landing .expo-hero-cards__row {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.expo-landing .expo-hero-cards__row {
  margin-top: 5rem;
}

.expo-landing .expo-hero-card {
  height: 100%;
  min-height: 140px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.expo-landing .expo-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.expo-landing .expo-hero-card--image {
  min-height: 160px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expo-landing .expo-hero-card--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.expo-landing .expo-hero-card--dark,
.expo-landing .expo-hero-card--accent {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.expo-landing .expo-hero-card--light {
  background: rgba(255, 255, 255, 0.06);
}

.expo-landing .expo-hero-card--tall {
  min-height: 280px;
}

.expo-landing .expo-hero-card--image.expo-hero-card--tall {
  min-height: 280px;
}

.expo-landing .expo-hero-card--image.expo-hero-card--tall img {
  min-height: 280px;
}

.expo-landing .expo-hero-card--center {
  min-height: 160px;
  height: 160px;
}

/* Keep page visible even if animation observer fails */
.expo-landing .webQ_ani,
.expo-landing div.webQ_ani,
.expo-landing section.webQ_ani {
  opacity: 1;
}

/* Scroll-triggered section animations: fade in + zoom in */
.expo-landing .expo-scroll-animate {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.55s cubic-bezier(0.39, 0.575, 0.565, 1),
    transform 0.55s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.expo-landing .expo-scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hero animations - run on load (above-fold, observer may not fire in time) */
.expo-landing .expo-hero-mf__content .sectionTag {
  animation: expo-hero-fade-up 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.expo-landing .expo-hero-mf__content .expo-hero-mf__title {
  animation: expo-hero-fade-up 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.05s
    both;
}

.expo-landing .expo-hero-mf__content .md-font.mx-auto {
  animation: expo-hero-fade-up 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s
    both;
}

.expo-landing .expo-hero-mf__content .expo-hero-mf__ctas {
  animation: expo-hero-fade-up 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.15s
    both;
}

.expo-landing .expo-hero-mf__content .expo-hero-mf__event-info {
  animation: expo-hero-fade-up 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s
    both;
}

.expo-landing .expo-hero-cards__row .col:nth-child(1) .expo-hero-card {
  animation: expo-hero-slide-left 0.35s cubic-bezier(0.39, 0.575, 0.565, 1)
    0.25s both;
}

.expo-landing .expo-hero-cards__row .col:nth-child(2) .expo-hero-card {
  animation: expo-hero-slide-left 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s
    both;
}

.expo-landing .expo-hero-cards__row .col:nth-child(3) .expo-hero-card {
  animation: expo-hero-fade-in 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) 0.35s
    both;
}

.expo-landing .expo-hero-cards__row .col:nth-child(4) .expo-hero-card {
  animation: expo-hero-slide-right 0.35s cubic-bezier(0.39, 0.575, 0.565, 1)
    0.4s both;
}

@keyframes expo-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expo-hero-slide-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expo-hero-slide-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expo-hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.expo-landing .expo-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.expo-landing .hero-image,
.expo-landing .section-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.expo-landing .hero-image img,
.expo-landing .section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expo-landing .hero-image {
  min-height: 24rem;
}

.expo-landing .hero-image img {
  animation: expo-hero-float 6s ease-in-out infinite;
}

.expo-landing .stat-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  margin: 0.2rem;
  display: inline-flex;
  backdrop-filter: blur(10px);
}

.expo-landing .expo-info-card {
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1rem;
  height: 100%;
}

/* Why Attend section - animate when scrolled into view */
.expo-landing .expo-why-attend .expo-why-attend__header .sectionTag,
.expo-landing .expo-why-attend .expo-why-attend__header .display-6 {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1),
    transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.expo-landing .expo-why-attend .expo-why-attend__header .display-6 {
  transition-delay: 0.1s;
}

.expo-landing .expo-why-attend.in-view .expo-why-attend__header .sectionTag,
.expo-landing .expo-why-attend.in-view .expo-why-attend__header .display-6 {
  opacity: 1;
  transform: translateY(0);
}

/* Cards hidden until section is in view */
.expo-landing .expo-why-attend .expo-why-attend__cards .col .expo-info-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.expo-landing
  .expo-why-attend
  .expo-why-attend__cards
  .col:nth-child(1)
  .expo-info-card {
  transition-delay: 0.05s;
}

.expo-landing
  .expo-why-attend
  .expo-why-attend__cards
  .col:nth-child(2)
  .expo-info-card {
  transition-delay: 0.15s;
}

.expo-landing
  .expo-why-attend
  .expo-why-attend__cards
  .col:nth-child(3)
  .expo-info-card {
  transition-delay: 0.25s;
}

.expo-landing
  .expo-why-attend
  .expo-why-attend__cards
  .col:nth-child(4)
  .expo-info-card {
  transition-delay: 0.35s;
}

.expo-landing
  .expo-why-attend
  .expo-why-attend__cards
  .col:nth-child(5)
  .expo-info-card {
  transition-delay: 0.45s;
}

.expo-landing
  .expo-why-attend
  .expo-why-attend__cards
  .col:nth-child(6)
  .expo-info-card {
  transition-delay: 0.55s;
}

/* Animate when section scrolls into view */
.expo-landing
  .expo-why-attend.in-view
  .expo-why-attend__cards
  .col
  .expo-info-card {
  opacity: 1;
  transform: translateY(0);
}

.expo-landing .expo-info-card i {
  color: #d7d7d7;
}

.expo-landing .feature-list,
.expo-landing .reason-list,
.expo-landing .faq-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.expo-landing .feature-list li,
.expo-landing .reason-list li,
.expo-landing .faq-list li {
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 0.75rem 0.95rem;
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ section - white background, black dropdown pills, chevron icon */
.expo-landing .expo-faq--light {
  background: #ffffff;
  color: #1a1a1a;
  min-height: 60vh;
}

.expo-landing .expo-faq--light .sectionTag {
  color: #1a1a1a;
}

.expo-landing .expo-faq__title {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  margin-bottom: 0.5rem;
  color: inherit;
}

.expo-landing .expo-faq__subtitle {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.expo-landing .expo-faq__accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-transition: 0.2s ease-in-out;
}

.expo-landing .expo-faq__item {
  background: #1a1a1a;
  border: none;
  border-radius: 0.6rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.expo-landing .expo-faq__item:last-child {
  margin-bottom: 0;
}

.expo-landing .expo-faq__trigger {
  background: #1a1a1a !important;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 1.25rem 1rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.expo-landing .expo-faq__trigger::after {
  display: none;
}

.expo-landing .expo-faq__chevron {
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.expo-landing .expo-faq__trigger:not(.collapsed) .expo-faq__chevron {
  transform: rotate(180deg);
}

.expo-landing .expo-faq__trigger:not(.collapsed) {
  background: #252525 !important;
}

.expo-landing .expo-faq__body {
  background: #252525;
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.expo-landing .audience-card,
.expo-landing .ticket-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.expo-landing .ticket-card ul {
  padding-left: 1rem;
}

.expo-landing .ticket-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.expo-landing .ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 240, 196, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.expo-landing .ticket-card--featured {
  border-color: rgba(116, 240, 196, 0.5);
  transform: translateY(-4px);
}

.expo-landing .count-pill {
  min-width: 95px;
  text-align: center;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Countdown section - larger fonts, font weight & dark metallic background */
.expo-landing .expo-countdown {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expo-landing .expo-countdown .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.expo-landing .expo-countdown .sectionTag {
  font-size: 0.9rem;
  font-weight: 700;
}

.expo-landing .expo-countdown .display-5 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 800;
}

.expo-landing .expo-countdown__subtitle {
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
}

.expo-landing .expo-countdown__pills .count-pill {
  min-width: 120px;
  padding: 1.25rem 1.5rem !important;
}

.expo-landing .expo-countdown__pills .count-pill h5 {
  font-size: 2rem;
  font-weight: 800;
}

.expo-landing .expo-countdown__pills .count-pill small {
  font-size: 0.95rem;
  font-weight: 600;
}

.expo-landing .cta-band {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.expo-landing .btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.expo-landing .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.expo-landing .partners-strip {
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.expo-landing .partners-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.expo-landing .partners-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: partners-marquee 28s linear infinite;
}

.expo-landing .partner-logo-item {
  white-space: nowrap;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.expo-landing .partner-logo-item .mini-mark {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.expo-landing .partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

/* scroller styles */
.logo-container,
span.logo-container {
  width: 200px;
  padding: 15px;
  display: flex;
  flex-shrink: 0;
}

.logo-container img {
  filter: invert(1);
  -webkit-filter: invert(1);
  max-height: 50px;
  object-fit: contain;
}

/* Partners logo sizing - desktop & tablet */
.expo-landing .expo-partners .grid-item img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

/* Social Proof section - mobile responsiveness */
.expo-landing .expo-social-proof {
  overflow: hidden;
}

/* Faces grid: CSS Grid so all 5 cards (including last) have equal width */
.expo-landing .expo-faces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .expo-landing .expo-faces-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .expo-landing .expo-faces-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.expo-landing .expo-faces-grid > * {
  min-width: 0;
}

.expo-landing .expo-face-card {
  aspect-ratio: 1;
  min-height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .expo-landing .expo-face-card {
    min-height: 180px;
  }
}

@media (min-width: 992px) {
  .expo-landing .expo-face-card {
    min-height: 220px;
  }
}

.expo-landing .expo-face-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(116, 240, 196, 0.35);
  border-color: rgba(116, 240, 196, 0.5);
  z-index: 2;
}

.expo-landing .expo-face-card img {
  display: block;
  object-position: center;
}

.expo-landing .expo-social-proof .scroller {
  width: 100%;
}

@media (max-width: 767.98px) {
  .expo-landing .expo-social-proof {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .expo-landing .expo-social-proof .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .expo-landing .expo-social-proof__text {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: 0.75rem !important;
    margin-bottom: 1rem;
  }

  .expo-landing .expo-social-proof__text .sectionTag {
    font-size: 0.75rem;
  }

  .expo-landing .expo-social-proof__text .display-6 {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .expo-landing .expo-social-proof__text .md-font {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .expo-landing .expo-social-proof__scroller {
    max-width: 100%;
    margin: 0 -0.75rem;
    padding: 0.5rem 0;
  }

  .expo-landing .expo-social-proof__scroller .scroller__inner {
    padding-block: 0.75rem;
    gap: 0.75rem;
  }

  .expo-landing .expo-social-proof .logo-container,
  .expo-landing .expo-social-proof span.logo-container {
    width: 120px;
    padding: 10px;
    min-height: 50px;
  }

  .expo-landing .expo-social-proof .logo-container img {
    max-height: 36px;
  }

  .expo-landing .expo-social-proof__scroller[data-animated="true"] {
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0%,
      white 15%,
      white 85%,
      transparent 100%
    );
    mask: linear-gradient(
      90deg,
      transparent 0%,
      white 15%,
      white 85%,
      transparent 100%
    );
  }

  .expo-landing
    .expo-social-proof__scroller[data-animated="true"]
    .scroller__inner {
    --_animation-duration: 35s;
  }

  /* Speakers section - mobile */
  .expo-landing .expo-speakers__scroller {
    max-width: 100%;
    margin: 0 -0.75rem;
    padding: 0.5rem 0;
  }

  .expo-landing .expo-speakers__scroller .scroller__inner {
    padding-block: 0.75rem;
    gap: 0.75rem;
  }

  .expo-landing .expo-speakers__card {
    width: 140px;
    min-width: 140px;
    min-height: 200px;
    height: 200px;
  }
}

/* Speakers section - desktop */
.expo-landing .expo-speakers {
  overflow: hidden;
  background-color: #000;
}

.expo-landing .expo-speakers .scroller {
  width: 100%;
}

.expo-landing .expo-speakers .sectionTag {
  font-weight: 600;
}

.expo-speakers__card,
.expo-landing .expo-speakers span.expo-speakers__card {
  width: 260px;
  min-width: 260px;
  min-height: 360px;
  height: 360px;
  flex-shrink: 0;
  display: inline-flex;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.expo-speakers__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  -webkit-filter: none;
}

.expo-landing .expo-speakers__scroller .scroller__inner {
  gap: 1.25rem;
}

.expo-landing .expo-speakers__scroller[data-animated="true"] {
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
  mask: linear-gradient(
    90deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
}

.expo-landing .expo-speakers__scroller[data-animated="true"] .scroller__inner {
  --_animation-duration: 45s;
}

@media (min-width: 768px) {
  .expo-landing .expo-speakers__card,
  .expo-landing .expo-speakers span.expo-speakers__card {
    width: 280px;
    min-width: 280px;
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 767.98px) {
  /* Partners section - mobile responsiveness */
  .expo-landing .expo-partners {
    min-height: auto !important;
    height: auto !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .expo-landing .expo-partners .container {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .expo-landing .expo-partners__content {
    gap: 1rem !important;
    padding: 0 0.25rem;
  }

  .expo-landing .expo-partners__content .sectionTag {
    font-size: 0.75rem;
  }

  .expo-landing .expo-partners__content .display-6 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .expo-landing .expo-partners__text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .expo-landing .expo-partners .col_3by3 {
    gap: 1rem;
    margin-top: 0.5rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .expo-landing .expo-partners .grid-item {
    max-width: 80px;
    margin: 0 auto;
  }

  .expo-landing .expo-partners .grid-item img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
  }

  .expo-landing .expo-partners__bg {
    opacity: 0.85;
  }

  .expo-landing .expo-partners__bg img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes expo-hero-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .expo-landing .expo-hero-mf {
    min-height: auto;
    padding-top: 80px !important;
  }

  .expo-landing .expo-hero-mf .container {
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
  }

  .expo-landing .expo-hero-mf__content {
    margin-bottom: 2rem !important;
    gap: 1rem;
  }

  .expo-landing .expo-hero-cards__row {
    margin-top: 2rem !important;
  }

  .expo-landing .hero-image {
    min-height: 16rem;
  }

  .expo-landing .ticket-card--featured {
    transform: none;
  }

  .expo-landing .partner-logo-item {
    font-size: 0.88rem;
  }

  .expo-landing .partners-track {
    gap: 1.3rem;
  }

  .expo-landing .expo-hero-mf__title {
    font-size: clamp(1.5rem, 5.5vw + 0.75rem, 2.5rem);
  }

  .expo-landing .expo-hero-card {
    min-height: 110px;
  }

  .expo-landing .expo-hero-card--image {
    min-height: 140px;
  }

  .expo-landing .expo-hero-card--image img {
    min-height: 140px;
  }

  .expo-landing .expo-hero-card--tall {
    min-height: 200px;
  }

  .expo-landing .expo-hero-card--image.expo-hero-card--tall,
  .expo-landing .expo-hero-card--image.expo-hero-card--tall img {
    min-height: 200px;
  }

  .expo-landing .expo-hero-card--center {
    min-height: 120px;
    height: 120px;
  }

  .expo-landing .expo-hero-card:hover {
    transform: none;
  }

  .expo-landing .expo-hero-mf .btn {
    width: 100%;
    min-width: 350px;
  }

  /* Sponsor & Exhibit section - mobile */
  .expo-landing .expo-sponsor-exhibit {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .expo-landing .expo-sponsor-exhibit .container {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    gap: 2rem;
  }

  .expo-landing .expo-sponsor-exhibit .col_2by2 {
    gap: 1.5rem;
  }

  .expo-landing .expo-sponsor-exhibit__content {
    text-align: center;
    align-items: center;
  }

  .expo-landing .expo-sponsor-exhibit__content .sectionTag {
    font-size: 0.75rem;
  }

  .expo-landing .expo-sponsor-exhibit__title {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
  }

  .expo-landing .expo-sponsor-exhibit__intro {
    font-size: 1rem !important;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1rem;
  }

  .expo-landing .expo-sponsor-exhibit__cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .expo-landing .expo-sponsor-exhibit__subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .expo-landing .expo-sponsor-exhibit__reasons .reason-list {
    padding-left: 1rem;
  }

  .expo-landing .expo-sponsor-exhibit__reasons .reason-list li {
    font-size: 0.95rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.5rem;
  }
}
