.hsc-4067183e-showcase-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
    --hsc-card-gap: 20px;
    --hsc-visible-cards-desktop: 3;
    --hsc-visible-cards-tablet: 2;
    --hsc-visible-cards-mobile: 1;
}

.hsc-4067183e-cards-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--hsc-card-gap);
    padding: 10px 40px;
    -webkit-overflow-scrolling: touch;
}

.hsc-4067183e-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.hsc-4067183e-card {
    flex: 0 0 calc((100% - (var(--hsc-visible-cards-desktop) * var(--hsc-card-gap))) / (var(--hsc-visible-cards-desktop) + 0.333));
    height: 480px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 400ms ease;
}

@media(max-width: 1024px) {
    .hsc-4067183e-card {
        flex: 0 0 calc((100% - (var(--hsc-visible-cards-tablet) * var(--hsc-card-gap))) / (var(--hsc-visible-cards-tablet) + 0.333));
    }
}

@media(max-width: 767px) {
    .hsc-4067183e-card {
        flex: 0 0 calc((100% - (var(--hsc-visible-cards-mobile) * var(--hsc-card-gap))) / (var(--hsc-visible-cards-mobile) + 0.333));
    }
}

.hsc-4067183e-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 400ms ease;
}

.hsc-4067183e-card:hover .hsc-4067183e-card-image {
    transform: scale(1.05);
}

.hsc-4067183e-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: background 400ms ease;
}

.hsc-4067183e-card-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px 0;
    text-shadow: none !important;
    transition: color 400ms ease;
}

.hsc-4067183e-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hsc-4067183e-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #191919;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 400ms ease;
}

/* Controls style */
.hsc-4067183e-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 0 40px;
    gap: 20px;
}

.hsc-4067183e-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: all 400ms ease;
}

.hsc-4067183e-progress-track {
    flex-grow: 1;
    height: 4px;
    background: #E5E5E5;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.hsc-4067183e-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10%;
    border-radius: 2px;
    cursor: grab;
    transform-origin: left center;
}

.hsc-4067183e-progress-bar:active {
    cursor: grabbing;
}
