#section-06 .section-heading-media {
  margin-bottom: 28px;
}

#section-06 .section06-collage-shell {
  position: relative;
  margin-top: 40px;
  margin-bottom: 52px;
}

#section-06 .collage-container {
  position: relative;
  width: min(100%, 980px);
  height: 760px;
  margin: 0 auto;
}

#section-06 .collage-piece {
  position: absolute;
  margin: 0;
  border: 3px solid #fff;
  background: #f4e7e0;
  box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

#section-06 .collage-piece:hover {
  transform: scale(1.02) rotate(0deg) translateY(-2px);
  box-shadow: 10px 18px 30px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

#section-06 .collage-piece img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#section-06 .collage-piece--hero {
  left: 4%;
  top: 7%;
  width: min(34vw, 340px);
  aspect-ratio: 4 / 5;
  transform: rotate(4deg);
  z-index: 1;
}

#section-06 .collage-piece--one {
  left: 60%;
  top: 6%;
  width: min(24vw, 248px);
  aspect-ratio: 4 / 5;
  transform: rotate(-5deg);
  z-index: 3;
}

#section-06 .collage-piece--two {
  left: 73%;
  top: 46%;
  width: min(20vw, 206px);
  aspect-ratio: 4 / 5;
  transform: rotate(6deg);
  z-index: 2;
}

#section-06 .collage-piece--three {
  left: 8%;
  top: 52%;
  width: min(22vw, 212px);
  aspect-ratio: 1 / 1.08;
  transform: rotate(-4deg);
  z-index: 4;
}

#section-06 .collage-piece--four {
  left: 58%;
  top: 67%;
  width: min(19vw, 190px);
  aspect-ratio: 4 / 5;
  transform: rotate(-7deg);
  z-index: 5;
}

#section-06 .collage-piece--five {
  left: 31%;
  top: 71%;
  width: min(18vw, 176px);
  aspect-ratio: 4 / 5;
  transform: rotate(5deg);
  z-index: 6;
}

#section-06 .collage-piece--six {
  left: 25%;
  top: 20%;
  width: min(38vw, 400px);
  aspect-ratio: 4 / 5;
  transform: rotate(2deg);
  z-index: 9;
}

#section-06 .kalshi-hotspot {
  position: absolute;
  right: 10%;
  bottom: 14%;
  width: clamp(44px, 5vw, 58px);
  height: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(4, 186, 117, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 0 rgba(4, 186, 117, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#section-06 .kalshi-hotspot img {
  display: none;
}

#section-06 .kalshi-hotspot span {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  color: #04BA75;
  letter-spacing: 0.01em;
}

#section-06 .kalshi-hotspot:hover {
  transform: scale(1.06);
  border-color: rgba(4, 186, 117, 0.8);
  box-shadow: 0 0 18px rgba(4, 186, 117, 0.25);
}

#section-06 .section06-mobile-hint {
  display: none;
}

#section-06 .section06-overlay {
  position: absolute;
  width: min(600px, 88%);
  top: 12%;
  left: 50%;
  transform: translateX(-50%) rotate(1.2deg) scale(0.95);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px 10px 16px 12px;
  padding: 36px;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.15);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
}

#section-06 .section06-static-text {
  max-width: min(1000px, 75vw);
  margin: 24px auto 0;
  padding: 0;
}

#section-06 .section06-overlay.is-open {
  animation: section06OverlayIn 300ms ease-out forwards;
  pointer-events: auto;
}

#section-06 .section06-overlay.is-closing {
  animation: section06OverlayOut 200ms ease-in forwards;
}

#section-06 .section06-overlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

#section-06 .section06-overlay p {
  margin: 0;
  color: #333;
  font-size: 15.5px;
  line-height: 1.8;
  font-family: var(--font-primary);
}

#section-06 .section06-overlay p + p {
  margin-top: 22px;
}

#section-06 .section06-overlay em {
  font-style: italic;
  font-weight: 600;
}

@keyframes section06OverlayIn {
  from {
    opacity: 0;
    transform: translateX(-50%) rotate(1.2deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) rotate(1.2deg) scale(1);
  }
}

@keyframes section06OverlayOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  #section-06 .collage-container {
    height: 700px;
  }

  #section-06 .collage-piece--hero {
    width: min(44vw, 410px);
    transform: rotate(2deg);
  }

  #section-06 .collage-piece--one,
  #section-06 .collage-piece--two,
  #section-06 .collage-piece--three,
  #section-06 .collage-piece--four,
  #section-06 .collage-piece--five,
  #section-06 .collage-piece--six {
    transform: rotate(2deg);
  }

  #section-06 .section06-overlay {
    width: min(680px, 80%);
  }
}

@media (max-width: 768px) {
  #section-06 .section06-collage-shell {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  #section-06 .collage-container {
    width: 100%;
    height: 480px;
  }

  #section-06 .collage-piece {
    border-width: 2px;
    box-shadow: 3px 6px 14px rgba(0, 0, 0, 0.12);
  }

  #section-06 .collage-piece--hero {
    left: 2%;
    top: 4%;
    width: 42vw;
    transform: rotate(3deg);
  }

  #section-06 .collage-piece--one {
    left: 56%;
    top: 3%;
    width: 30vw;
    transform: rotate(-4deg);
  }

  #section-06 .collage-piece--two {
    left: 68%;
    top: 44%;
    width: 26vw;
    transform: rotate(5deg);
  }

  #section-06 .collage-piece--three {
    left: 4%;
    top: 50%;
    width: 28vw;
    transform: rotate(-3deg);
  }

  #section-06 .collage-piece--four {
    left: 54%;
    top: 64%;
    width: 24vw;
    transform: rotate(-6deg);
  }

  #section-06 .collage-piece--five {
    left: 28%;
    top: 68%;
    width: 22vw;
    transform: rotate(4deg);
  }

  #section-06 .collage-piece--six {
    left: 22%;
    top: 16%;
    width: 44vw;
    transform: rotate(1.5deg);
  }

  #section-06 .section06-static-text {
    max-width: 100%;
  }

  #section-06 .section06-overlay {
    position: fixed;
    top: 12%;
    left: 50%;
    width: min(94vw, 560px);
    max-height: 76vh;
    overflow-y: auto;
    transform: translateX(-50%) rotate(0.3deg) scale(0.95);
    padding: 24px 20px;
  }
}
