.sticky-image-scroll-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex: none !important;
}

.sticky-image-scroll-center {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.sticky-image-scroll-center img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.1);
  display: block;
}

.sticky-image-scroll-title {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
}

.sticky-image-scroll-left,
.sticky-image-scroll-right {
  position: absolute;
  top: 100vh;
  /* Start precisely at bottom edge of screen */
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20vh;
  z-index: 1;
}

.sticky-image-scroll-left {
  left: calc(50% - 225px - 10px - 320px);
}

.sticky-image-scroll-right {
  left: calc(50% + 225px + 10px);
  right: auto;
  padding-top: 100px;
  /* Offset the right column slightly */
}

.sticky-image-scroll-col-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Wide image first (odd), Small image second (even) */
.sticky-image-scroll-left .sticky-image-scroll-col-img:nth-child(even) {
  width: 65%;
  align-self: flex-end;
}

.sticky-image-scroll-right .sticky-image-scroll-col-img:nth-child(odd) {
  width: 65%;
  align-self: flex-start;
}

/* --- Mobile Responsiveness and Staggered Event Images --- */

.sticky-image-scroll-wrapper {
  width: 100%;
}

.sticky-image-scroll-desktop {
  display: block;
}

.sticky-image-scroll-mobile {
  display: none;
}

@media (max-width: 768px) {
  .sticky-image-scroll-desktop {
    display: none !important;
  }

  .sticky-image-scroll-mobile {
    display: block !important;
  }
}

/* Staggered Event Images mobile styles */
.staggered-event-images {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.staggered-event-title-container {
  margin-bottom: 30px;
  /* 30px gap between title and list */
  text-align: center;
  width: 100%;
}

.staggered-event-title {
  font-size: 1.8rem !important;
  /* Smaller font size for mobile */
  font-family: 'Mona Sans', sans-serif;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}

/* 2 column vertical list */
.staggered-event-grid {
  column-count: 2;
  column-gap: 15px;
  width: 100%;
  padding-bottom: 200px;
}

.staggered-event-img {
  width: 100%;
  height: auto;
  /* Dynamic height */
  border-radius: 15px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  break-inside: avoid;
}