.widget-carousel-wrapper { position: relative; }
.widget-carousel { overflow: hidden; width: 100%; }

.widget-track {
    display: flex;
    gap: 16px;
}

.widget-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    white-space: nowrap;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.widget-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    border: none;
    background: none;
    cursor: pointer;
}

.widget-arrow.left { left: -40px; }
.widget-arrow.right { right: -40px; }