.hs-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Sticky viewport */
.hs-sticky {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hs-sticky {
        position: relative;
    }
}

/* Scrollbar container */
.hs-track-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
    /* space for scrollbar */
}

/* Horizontal track */
.hs-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

/* Individual cards */
.hs-card {
    flex: 0 0 549px;
    width: 549px;
    height: 627px;
}

@media (max-width: 767px) {
    .hs-card {
        width: 100%;
    }
}

/* Scroll snap */
.hs-wrapper[data-snap="true"] .hs-track {
    scroll-snap-type: x mandatory;
}

.hs-wrapper[data-snap="true"] .hs-card {
    scroll-snap-align: start;
}

/* Custom scrollbar (WebKit) */
.hs-track-wrapper::-webkit-scrollbar {
    height: 8px;
}

.hs-track-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.hs-track-wrapper::-webkit-scrollbar-thumb {
    background: #F0B033;
    border-radius: 10px;
}

/* Firefox */
.hs-track-wrapper {
    scrollbar-color: #F0B033 rgba(255, 255, 255, 0.15);
    scrollbar-width: thin;
}

/* Mobile stacking */
@media (max-width: 768px) {

    .hs-wrapper[data-mobile="stack"] {
        height: auto !important;
    }

    .hs-wrapper[data-mobile="stack"] .hs-track-wrapper {
        position: relative;
        height: auto;
    }

    .hs-wrapper[data-mobile="stack"] .hs-track-wrapper {
        overflow: visible;
    }

    .hs-wrapper[data-mobile="stack"] .hs-track {
        flex-direction: column;
        transform: none !important;
    }
}

.hs-card-inner {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.hs-card-content {
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hs-card-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hs-card-title {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
}

.hs-card-desc {
    color: #F1F2F4;
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.4;
}

.hs-card-link a,.hs-card-link span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F0B033;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.hs-card-arrow {
    width: 15px;
    height: 15px;
}