.parallax-showcase-wrapper-38690ddc {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background-color: #111;
}

.showcase-pin-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-hero-title-wrap {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 10;
}

.showcase-hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
}

.showcase-scroll-container {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 10vh;
}

.showcase-track {
    display: flex;
    gap: 5vw;
    padding: 0 10vw;
    align-items: center;
    height: 100%;
}

.showcase-item {
    flex: 0 0 auto;
    width: 40vw;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-image-wrap {
    width: 100%;
    height: 80%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.project-img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Offset for parallax */
    transform: translateX(-15%); 
}

.project-title {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .showcase-item {
        width: 75vw;
    }
}