/* =========================================================
   WP Page Widgets — Sticky Container
   ========================================================= */

.wpw-sticky-container {
    position: relative;
    width: 100%;
}

.wpw-sticky-container__inner {
    width: 100%;
    box-sizing: border-box;
    padding: var(--wpw-sticky-padding, 24px);
    border-radius: var(--wpw-sticky-radius, 16px);
    background: var(--wpw-sticky-bg, transparent);
    will-change: transform;
    z-index: 10;
}

.wpw-sticky-container__inner > :first-child {
    margin-top: 0;
}

.wpw-sticky-container__inner > :last-child {
    margin-bottom: 0;
}

/* ── Placeholder (WPBakery editor) ──────────────── */

.wpw-sticky-container__placeholder {
    padding: 24px;
    border: 2px dashed #c9c9c9;
    border-radius: inherit;
    text-align: center;
    color: #777777;
    background: rgba(0, 0, 0, 0.03);
}
