.scrolling-wrapper-778552ee {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.scrolling-container-778552ee {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.scrolling-track-778552ee {
    display: flex;
    /* remove overflow and snap properties since JS handles it all now */
    gap: 20px;
    padding: 10px;
    width: 100%;
    transition: transform 0.3s ease-out;
    will-change: transform;
}
.scw-is-constant .scrolling-track-778552ee {
    transition: none;
}
.scrolling-card-778552ee {
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Shadow Control */
.scw-shadow-yes .scrolling-card-778552ee {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.scw-shadow-no .scrolling-card-778552ee {
    box-shadow: none;
}
/* Outline Control */
.scw-outline-yes .scrolling-card-778552ee {
    border-style: solid;
}
.scrolling-card-img-778552ee {
    width: 100%;
    background-size: cover;
    background-position: center;
}
.scrolling-card-content-778552ee {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.scrolling-card-type-778552ee {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 8px;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}
.scrolling-card-link-778552ee {
    position: absolute;
    inset: 0;
    z-index: 10;
}
.scrolling-nav-group-778552ee {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    pointer-events: none;
}
.scrolling-nav-778552ee {
    pointer-events: auto;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    transition: background 0.3s;
    z-index: 20;
}
.scrolling-nav-778552ee:hover {
    background: rgba(0,0,0,0.9);
}
.scrolling-nav-778552ee svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Nav Group Overlay Positions */
/* Vertical */
.scw-arrows-v-top .scrolling-nav-778552ee { top: 10px; }
.scw-arrows-v-middle .scrolling-nav-778552ee { top: 50%; transform: translateY(-50%); }
.scw-arrows-v-bottom .scrolling-nav-778552ee { bottom: 10px; }

/* Horizontal (Over Cards) */
.scw-arrows-h-between .scrolling-nav-778552ee.prev { left: 10px; }
.scw-arrows-h-between .scrolling-nav-778552ee.next { right: 10px; }

.scw-arrows-h-left .scrolling-nav-778552ee.prev { left: 10px; }
.scw-arrows-h-left .scrolling-nav-778552ee.next { left: 60px; }

.scw-arrows-h-right .scrolling-nav-778552ee.prev { right: 60px; }
.scw-arrows-h-right .scrolling-nav-778552ee.next { right: 10px; }

.scw-arrows-h-center .scrolling-nav-group-778552ee {
    justify-content: center;
}
.scw-arrows-h-center .scrolling-nav-778552ee {
    position: static;
    margin: 0 5px;
    transform: none; /* override middle transform */
}
.scw-arrows-v-middle.scw-arrows-h-center .scrolling-nav-group-778552ee {
    align-items: center;
}
.scw-arrows-v-top.scw-arrows-h-center .scrolling-nav-group-778552ee {
    align-items: flex-start;
    padding-top: 10px;
}
.scw-arrows-v-bottom.scw-arrows-h-center .scrolling-nav-group-778552ee {
    align-items: flex-end;
    padding-bottom: 10px;
}

/* Nav Below Cards */
.scw-nav-below .scrolling-nav-group-below-778552ee {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}
.scw-nav-below .scrolling-nav-778552ee {
    position: static;
    transform: none;
}
.scw-arrows-h-below-left .scrolling-nav-group-below-778552ee {
    justify-content: flex-start;
}
.scw-arrows-h-below-center .scrolling-nav-group-below-778552ee {
    justify-content: center;
}
.scw-arrows-h-below-right .scrolling-nav-group-below-778552ee {
    justify-content: flex-end;
}
