.layout-header-desk .right,
.header-mobile .right {
  display: none !important;
}

.hero-section-v1 {
  padding-top: 96px !important;
  padding-bottom: 64px !important;


  @media (min-width: 1024px) {
    padding-top: 120px !important;
  }
}

.hero-section-v1__content {
  margin-bottom: 0 !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.hero-section-v1__heading {
  margin-bottom: 0 !important;

  @media (min-width: 1024px) {
    max-width: inherit !important;
    margin-left: inherit !important;
    margin-bottom: 0 !important;
  }

  & * {
    font-family: 'Serrif', sans-serif !important;
    font-size: 64px !important;
    font-weight: 500 !important;
    letter-spacing: -.2px !important;
    line-height: 1 !important;
    color: #0d0d0d !important;
    text-align: left !important;
  }
}

.page-builder {
  padding-bottom: 96px !important;

  @media (min-width: 1024px) {
    padding-bottom: 120px !important;
  }
}





/* Event Agenda Cards - Figma Design */
.spark-event-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.spark-event-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  box-sizing: border-box;
}

.spark-event-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 44%;
  min-height: 268px;
  justify-content: space-between;
}

.spark-event-card__date {
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.14px;
  color: #0e1017;
  margin: 0;
}

.spark-event-card__text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spark-event-card__title {
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.52px;
  color: #1f212b!important;
  margin: 0 0 12px 0;
}

.spark-event-card__description {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.14px;
  color: #1f212b;
  margin: 0;
}

.spark-event-card__tags {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.spark-event-card__tag {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.14px;
  color: #1f212b;
  background: #f2f3f7;
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.spark-event-card__image-wrapper {
  flex-shrink: 0;
    flex-basis: 56%;
    width: 56%;
    max-width: 56%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    min-height: 300px;
}

.spark-event-card__image-wrapper[onclick] {
  cursor: pointer;
}

.spark-event-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.spark-event-card__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #D4C4A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.spark-event-card__play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.spark-event-card__image-wrapper:hover .spark-event-card__play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.spark-event-card__image-wrapper:hover .spark-event-card__play-button::before {
  transform: scale(1.1);
}

/* Vimeo Modal Overlay */
.spark-vimeo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spark-vimeo-modal.active {
  display: flex;
  opacity: 1;
}

.spark-vimeo-modal__container {
  position: relative;
  width: 90%;
  max-width: 1280px;
  /* height: 90%; */
  height: calc(90vw * 218 / 387);
  max-height: 720px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .spark-vimeo-modal__container {
    height: calc(90vw * 218 / 387);
  }
}

.spark-vimeo-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.spark-vimeo-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.3s ease, transform 0.3s ease;
}

.spark-vimeo-modal__close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.spark-vimeo-modal__close::before,
.spark-vimeo-modal__close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 1px;
}

.spark-vimeo-modal__close::before {
  transform: rotate(45deg);
}

.spark-vimeo-modal__close::after {
  transform: rotate(-45deg);
}

/* Tablet Responsive - Image goes full width with container padding */
@media (max-width: 1024px) {
  .spark-event-card {
      flex-direction: column;
      padding: 48px;
      gap: 24px;
  }
  
  .spark-event-card__content {
      max-width: 100%;
      min-height: auto;
      width: 100%;
  }
  
  .spark-event-card__image-wrapper {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
    min-height: auto;
    order: -1;/
  }
  
  .spark-event-card__image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .spark-event-card {
      padding: 24px;
      gap: 16px;
  }
  
  .spark-event-card__content {
      gap: 12px;
  }
  
  .spark-event-card__date {
      font-size: 14px;
  }
  
  .spark-event-card__title {
      font-size: 22px;
      letter-spacing: -0.44px;
  }
  
  .spark-event-card__description {
      font-size: 16px;
      letter-spacing: -0.16px;
  }
  
  .spark-event-card__image-wrapper {
    min-height: auto;
  }
  
  .spark-event-card__tag {
      font-size: 12px;
      padding: 3px 6px;
  }
}

/* Event Schedule Cards - New Figma Design (Schedule/Timeline Layout) */
.spark-schedule-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.spark-schedule-row {
  display: flex;
  gap: 30px; /* Adjusted from 16px to 30px for desktop gap */
  align-items: stretch; /* Ensures time column matches content height */
  width: 100%;
}

.spark-schedule-time {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 278px;
  width: 278px;
  flex-shrink: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.24px;
  color: #0e1017;
  text-align: center;
  align-self: stretch; /* Ensures time column stretches to content height */
}

.spark-schedule-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spark-schedule-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0 0 0 40px; /* Removed right padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px; /* Space between text content and image on desktop */
  width: 100%;
  box-sizing: border-box;
  min-height: 265px;
  overflow: hidden; /* Added to contain image border-radius */
}

.spark-schedule-card--simple {
  padding: 26px 40px; /* Keep padding for simple cards */
  min-height: auto;
  overflow: visible;
}

.spark-schedule-card--simple .spark-schedule-card__content {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.spark-schedule-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 1 608px;
  min-width: 0;
  padding: 0;
  justify-content: flex-start;
}

.spark-schedule-card__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spark-schedule-card__time {
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.14px;
  color: #0e1017;
  margin: 0 0 0 0;
  white-space: pre-wrap;
}

.spark-schedule-card__title {
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.56px;
  color: #1f212b;
  margin: 0;
  text-align: left;
}

.spark-schedule-card__description {
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: #1f212b;
  margin: 0;
}

.spark-schedule-card__tags {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.spark-schedule-card__tag {
  font-family: 'Helvetica Now Text', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.14px;
  color: #1f212b;
  background: #f2f3f7;
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
  text-transform: uppercase;
}

.spark-schedule-card__image-wrapper {
  flex-shrink: 0;
  width: 376px;
  height: 265px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}

.spark-schedule-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spark-schedule-card__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #D4C4A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.spark-schedule-card__play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.spark-schedule-card__image-wrapper:hover .spark-schedule-card__play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.spark-schedule-card__image-wrapper:hover .spark-schedule-card__play-button::before {
  transform: scale(1.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .spark-schedule-row {
      flex-direction: row; /* Keep sidebar on left */
      gap: 16px;
  }
  .spark-schedule-time {
      min-width: 200px;
      width: 200px;
      padding: 16px;
      font-size: 20px;
      align-self: stretch; /* Maintain full height */
  }
  .spark-schedule-content {
      width: 100%;
  }
  .spark-schedule-card {
      flex-direction: column;
      padding: 0;
      gap: 0; /* Remove gap when stacked */
  }
  .spark-schedule-card--simple {
  }
  .spark-schedule-card--simple .spark-schedule-card__content {
      flex-direction: column;
      align-items: flex-start;
  }
  .spark-schedule-card__content {
      flex: 1;
      max-width: 100%;
      padding: 24px 24px 10px 24px;
      width: 100%;
  }
  .spark-schedule-card__image-wrapper {
      width: 100%;
      height: 265px;
      order: -1; /* Move image above text */
      border-radius: 16px 16px 0 0; /* Rounded top corners for image when stacked */
  }
  .spark-schedule-card__image-wrapper img {
      border-radius: 16px 16px 0 0;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .spark-schedule-cards {
      gap: 16px;
      width: 100%;
  }
  
  .spark-schedule-row {
      flex-direction: row; /* Keep sidebar on left */
      gap: 12px;
      width: 100%;
  }
  
  .spark-schedule-time {
      min-width: 120px;
      width: 120px;
      padding: 16px 10px;
      font-size: 12px;
      align-self: stretch;
  }
  
  .spark-schedule-content {
      flex: 1;
      width: 100%;
  }
  
  .spark-schedule-card {
      min-height: auto;
      width: 100%;
  }
  
  .spark-schedule-card--simple .spark-schedule-card__content {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .spark-schedule-card__content {
      padding: 24px 20px;
      gap: 16px;
      width: 100%;
  }
  
  .spark-schedule-card__time {
      font-size: 14px;
  }
  
  .spark-schedule-card__title {
      font-size: 17px;
      letter-spacing: -0.48px;
      text-align: left;
  }
  
  .spark-schedule-card__description {
      font-size: 13px;
      letter-spacing: -0.16px;
  }
  
  .spark-schedule-card__image-wrapper {
      width: 100%;
      height: 200px;
  }
  
  .spark-schedule-card__tag {
      font-size: 12px;
      padding: 3px 6px;
  }
}

main {
  background:#f7f7f7;
}

main .container {
  max-width: calc(1124px + 64px) !important;
}

main:has(.spark-vimeo-modal.active) {
  z-index: 9999;
}