/* Allow clicks ONLY on active slides */
.swiper-slide {
    pointer-events: none;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
    pointer-events: auto;
}

/* Inner card always clickable */
.hoc-cw-card,
.hoc-cw-card * {
    pointer-events: auto;
}
.page-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}.layout { width: 100%; max-width: 1300px; display: flex; gap: 40px; flex-wrap: wrap; } /* Left column: scrollable text sections */ .left-column { flex: 1; padding-right: 10px; width: 100%; } .panel { min-height: 50vh; padding: 60px 20px 60px 0; border-bottom: 1px solid rgba(148,163,184,0.2); margin-bottom: 15px; display: flex; flex-direction: column; justify-content: center; gap: 20px; box-shadow: -5px 10px 10px 0 rgba(0, 0, 0, 0.1); padding: 20px; opacity: 0.5; transition: opacity 0.6s ease-in-out; } .panel.active { opacity: 1; } .panel-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #a5b4fc; } .panel-title { font-size: 32px; font-weight: 700; color: #002B5B; } .panel-desc { font-size: 16px; line-height: 1.7; color: black; max-width: 520px; } .button { background: #FFD700; color: #002B5B; padding: 10px 20px; border-radius: 5px; border: none; cursor: pointer; font-weight: 400; } .button:hover { background: #FFD700; color: #002B5B; padding: 10px 20px; border-radius: 5px; border: none; cursor: pointer; font-weight: 400; } /* Right column: sticky images */ .right-column { flex: 1; position: relative; width: 100%; margin-top: 20px; } .sticky-wrapper { position: sticky; top: 0; height: 100vh; border-radius: 24px; overflow: hidden; background: #020617; } .image-stack { position: relative; width: 100%; height: 100%; overflow: hidden; } .image-stack img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease-in-out; } .image-stack img.active { opacity: 1; } .image-overlay { position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(59,130,246,0.45), transparent 55%), radial-gradient(circle at bottom, rgba(236,72,153,0.35), transparent 60%); mix-blend-mode: screen; pointer-events: none; } .image-label { position: absolute; left: 20px; bottom: 20px; padding: 6px 14px; border-radius: 999px; background: rgba(15,23,42,0.8); color: #e5e7eb; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; backdrop-filter: blur(10px); } .panel:last-of-type { margin-bottom: 50vh; } /* Responsive Styles */ @media (max-width: 1200px) { .layout { flex-direction: column; align-items: center; } .left-column { padding-right: 0; } .panel-title { font-size: 28px; } .panel-desc { font-size: 14px; max-width: 450px; } .button { padding: 8px 16px; } } @media (max-width: 768px) { .panel-title { font-size: 24px; } .panel-desc { font-size: 13px; max-width: 400px; } .button { padding: 6px 14px; } .right-column { margin-top: 0; order: -1; } .sticky-wrapper { height: auto; } } @media (max-width: 480px) { .panel-title { font-size: 20px; } .panel-desc { font-size: 12px; max-width: 350px; } .button { width: 100%; padding: 10px 20px; font-size: 14px; } .image-label { font-size: 10px; padding: 4px 10px; } .panel:last-of-type { margin-bottom: 0vh; } .page-wrapper{ padding: 0px; margin: 0px; } }