.showcase-wrapper-e43e412f {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out, background-size 0.5s ease, background-position 0.5s ease;
    overflow: hidden;
    padding: 2rem;
    box-sizing: border-box;
}

.showcase-wrapper-e43e412f::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.3); /* Default slight overlay */
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.3s;
}

.showcase-items-container-e43e412f {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column; /* Changed to column for vertical layout */
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.showcase-item-e43e412f {
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
}

.showcase-item-e43e412f:hover {
    transform: scale(1.05);
}

.showcase-trigger-img-e43e412f {
    display: block;
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.showcase-trigger-text-e43e412f {
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}