.sellementor-layout-render {
    position: relative;
    color: var(--sellementor-text, #e2e8f0);
    font-family: var(--sellementor-body-font, Inter, sans-serif);
}

.sellementor-layout-header {
    margin-bottom: 20px;
}

.sellementor-layout-title {
    margin: 0;
    font-family: var(--sellementor-heading-font, Inter, sans-serif);
    color: var(--sellementor-surface, #0f172a);
}

.sellementor-layout-root {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-inline: 32px;
}

.sellementor-node {
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sellementor-node-section {
    position: relative;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(91, 91, 214, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.96) 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.sellementor-section-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}

.sellementor-node-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.sellementor-node-container.sellementor-inline-row-wrapper {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.sellementor-node-container.sellementor-inline-stack-wrapper {
    gap: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.sellementor-node-container.sellementor-inline-row-wrapper > .sellementor-node {
    flex: 0 0 auto;
    min-width: 0;
}

.sellementor-node-children {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.sellementor-node-children.is-row-layout {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sellementor-row-gap, 0);
    align-items: flex-start;
}

.sellementor-node-children.is-row-layout > .sellementor-node {
    flex: 0 0 auto;
    min-width: 0;
}

.sellementor-background-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}

.sellementor-background-overlay {
    position: absolute;
    inset: 0;
}

.sellementor-background-video,
.sellementor-background-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sellementor-background-video {
    display: block;
}

.sellementor-background-media-slideshow .sellementor-background-slide {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: sellementorSlideshowFade 16s infinite;
}

@keyframes sellementorSlideshowFade {
    0% { opacity: 0; }
    6% { opacity: 1; }
    25% { opacity: 1; }
    31% { opacity: 0; }
    100% { opacity: 0; }
}

.sellementor-section-inner,
.sellementor-node-container > * {
    position: relative;
    z-index: 1;
}

[data-sellementor-wrapper-link] {
    cursor: pointer;
}

.sellementor-heading {
    margin: 0;
    font-family: var(--sellementor-heading-font, Inter, sans-serif);
    color: #ffffff;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.05;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.sellementor-text {
    margin: 0;
    color: rgba(226, 232, 240, 0.94);
    font-size: 1rem;
    line-height: 1.75;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.sellementor-node-image {
    margin: 0;
    overflow: hidden;
}

.sellementor-button,
.sellementor-popup-trigger,
.sellementor-floating-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--sellementor-primary, #5b5bd6) 0%, var(--sellementor-accent, #10b981) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 32px rgba(91, 91, 214, 0.22);
    transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}

.sellementor-button:hover,
.sellementor-popup-trigger:hover,
.sellementor-floating-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 38px rgba(91, 91, 214, 0.28);
    opacity: 0.96;
}

.sellementor-form {
    display: grid;
    gap: 14px;
}

.sellementor-form label {
    display: grid;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
}

.sellementor-form input {
    width: 100%;
    border: 1px solid rgba(226, 232, 240, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.sellementor-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    border: 1px dashed rgba(226, 232, 240, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(91, 91, 214, 0.18) 0%, rgba(16, 185, 129, 0.18) 100%);
    color: #ffffff;
    font-weight: 600;
}

.sellementor-image-link {
    display: block;
    overflow: hidden;
    border-radius: inherit;
    text-decoration: none;
}

.sellementor-image {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center center;
    transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.sellementor-video-widget {
    width: 100%;
}

.sellementor-video-shell {
    position: relative;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    border: 0 solid transparent;
    border-radius: inherit;
    background: #020617;
}

.sellementor-video-widget.ratio-1-1 .sellementor-video-shell {
    aspect-ratio: 1 / 1;
}

.sellementor-video-widget.ratio-3-2 .sellementor-video-shell {
    aspect-ratio: 3 / 2;
}

.sellementor-video-widget.ratio-4-3 .sellementor-video-shell {
    aspect-ratio: 4 / 3;
}

.sellementor-video-widget.ratio-16-9 .sellementor-video-shell {
    aspect-ratio: 16 / 9;
}

.sellementor-video-widget.ratio-21-9 .sellementor-video-shell {
    aspect-ratio: 21 / 9;
}

.sellementor-video-widget.ratio-9-16 .sellementor-video-shell {
    aspect-ratio: 9 / 16;
}

.sellementor-video-widget.has-custom-height .sellementor-video-shell {
    aspect-ratio: auto;
    min-height: 0;
}

.sellementor-video-media,
.sellementor-video-overlay-preview,
.sellementor-video-overlay-image,
.sellementor-video-overlay-backdrop {
    display: block;
    width: 100%;
    height: 100%;
}

.sellementor-video-media {
    position: absolute;
    inset: 0;
    border: 0;
    background: #020617;
    object-fit: var(--sellementor-video-object-fit, fill);
}

.sellementor-video-overlay-preview {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sellementor-video-overlay-image {
    object-fit: var(--sellementor-video-object-fit, cover);
}

.sellementor-video-overlay-backdrop {
    background:
        linear-gradient(135deg, rgba(91, 91, 214, 0.25) 0%, rgba(16, 185, 129, 0.2) 100%),
        #0f172a;
}

.sellementor-video-activate {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(2, 6, 23, 0.28);
    cursor: pointer;
    z-index: 1;
}

.sellementor-video-overlay-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 88px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.35);
}

.sellementor-video-caption {
    position: absolute;
    inset: auto 0 0;
    min-height: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
}

.sellementor-video-caption-gradient {
    position: absolute;
    inset: auto 0 0;
    height: var(--sellementor-video-caption-gradient-height, 45%);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.82) 100%);
}

.sellementor-video-caption.is-center {
    justify-content: center;
    text-align: center;
}

.sellementor-video-caption.is-right {
    justify-content: flex-end;
    text-align: right;
}

.sellementor-video-caption-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 48px 26px 24px;
    width: min(100%, 980px);
    pointer-events: auto;
}

.sellementor-video-caption.is-center .sellementor-video-caption-content {
    align-items: center;
}

.sellementor-video-caption.is-right .sellementor-video-caption-content {
    align-items: flex-end;
}

.sellementor-video-caption-heading {
    color: var(--sellementor-video-caption-text-color, #ffffff);
    font-size: var(--sellementor-video-caption-font-size, 30px);
    font-weight: var(--sellementor-video-caption-font-weight, 700);
    line-height: var(--sellementor-video-caption-line-height, 1.2);
    text-shadow: 0 2px 18px rgba(2, 6, 23, 0.55);
    white-space: nowrap;
}

.sellementor-video-caption-subtext {
    color: var(--sellementor-video-caption-subtext-color, #ffffff);
    font-size: var(--sellementor-video-caption-subtext-font-size, 18px);
    font-weight: var(--sellementor-video-caption-subtext-font-weight, 600);
    line-height: var(--sellementor-video-caption-subtext-line-height, 1.4);
    text-shadow: 0 2px 18px rgba(2, 6, 23, 0.48);
    white-space: pre-line;
}

.sellementor-video-caption-link {
    color: inherit;
    text-decoration: none;
}

.sellementor-video-caption-link:hover {
    color: var(--sellementor-video-caption-link-hover-color, inherit);
    text-decoration: none;
}

.sellementor-video-caption-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--sellementor-video-caption-button-bg, #b91c1c);
    color: var(--sellementor-video-caption-button-color, #ffffff);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sellementor-video-caption-button.is-static {
    cursor: default;
}

.sellementor-video-caption-button:hover {
    background: var(--sellementor-video-caption-button-hover-bg, #991b1b);
    color: var(--sellementor-video-caption-button-hover-color, #ffffff);
    transform: translateY(-1px);
}

.sellementor-video-caption.has-native-controls .sellementor-video-caption-content {
    padding-bottom: 54px;
}

@media (max-width: 767px) {
    .sellementor-video-caption-content {
        width: 100%;
    }

    .sellementor-video-caption-heading {
        white-space: normal;
    }
}

.sellementor-video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(91, 91, 214, 0.18) 0%, rgba(16, 185, 129, 0.18) 100%),
        #0f172a;
}

.sellementor-image-placeholder {
    transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.sellementor-image-motion-fade-in .sellementor-image,
.sellementor-image-motion-fade-in .sellementor-image-placeholder {
    animation: sellementorImageFadeIn var(--sellementor-image-animation-duration, 700ms) ease var(--sellementor-image-animation-delay, 0ms) both;
}

.sellementor-image-motion-zoom-in .sellementor-image,
.sellementor-image-motion-zoom-in .sellementor-image-placeholder {
    animation: sellementorImageZoomIn var(--sellementor-image-animation-duration, 700ms) ease var(--sellementor-image-animation-delay, 0ms) both;
}

.sellementor-image-motion-slide-up .sellementor-image,
.sellementor-image-motion-slide-up .sellementor-image-placeholder {
    animation: sellementorImageSlideUp var(--sellementor-image-animation-duration, 700ms) ease var(--sellementor-image-animation-delay, 0ms) both;
}

.sellementor-image-motion-slide-left .sellementor-image,
.sellementor-image-motion-slide-left .sellementor-image-placeholder {
    animation: sellementorImageSlideLeft var(--sellementor-image-animation-duration, 700ms) ease var(--sellementor-image-animation-delay, 0ms) both;
}

.sellementor-image-motion-float .sellementor-image,
.sellementor-image-motion-float .sellementor-image-placeholder {
    animation: sellementorImageFloat var(--sellementor-image-animation-duration, 2400ms) ease-in-out var(--sellementor-image-animation-delay, 0ms) infinite;
}

.sellementor-image-motion-pulse .sellementor-image,
.sellementor-image-motion-pulse .sellementor-image-placeholder {
    animation: sellementorImagePulse var(--sellementor-image-animation-duration, 1800ms) ease-in-out var(--sellementor-image-animation-delay, 0ms) infinite;
}

.sellementor-image-motion-bounce .sellementor-image,
.sellementor-image-motion-bounce .sellementor-image-placeholder {
    animation: sellementorImageBounce var(--sellementor-image-animation-duration, 1400ms) ease var(--sellementor-image-animation-delay, 0ms) infinite;
}

.sellementor-image-hover-zoom-in:hover .sellementor-image,
.sellementor-image-hover-zoom-in:hover .sellementor-image-placeholder {
    transform: scale(1.06);
}

.sellementor-image-hover-zoom-out:hover .sellementor-image,
.sellementor-image-hover-zoom-out:hover .sellementor-image-placeholder {
    transform: scale(0.96);
}

.sellementor-image-hover-lift:hover .sellementor-image,
.sellementor-image-hover-lift:hover .sellementor-image-placeholder {
    transform: translateY(-8px);
}

.sellementor-image-hover-rotate:hover .sellementor-image,
.sellementor-image-hover-rotate:hover .sellementor-image-placeholder {
    transform: rotate(-2deg) scale(1.02);
}

.sellementor-image-hover-bounce:hover .sellementor-image,
.sellementor-image-hover-bounce:hover .sellementor-image-placeholder {
    animation: sellementorImageBounceHover 700ms ease;
}

.sellementor-image-caption {
    margin-top: 10px;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.sellementor-image-box {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    color: #0f172a;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sellementor-image-box-media {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.sellementor-image-box-image {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.sellementor-image-box-body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px;
    z-index: 1;
}

.sellementor-image-box-title {
    margin: 0;
    color: inherit;
    line-height: 1.25;
}

.sellementor-image-box-summary {
    color: inherit;
    line-height: 1.6;
}

.sellementor-image-box-summary > :first-child {
    margin-top: 0;
}

.sellementor-image-box-summary > :last-child {
    margin-bottom: 0;
}

.sellementor-image-box-button {
    display: inline-flex;
    align-self: flex-start;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #b91c1c;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.sellementor-image-box-summary-align-center {
    text-align: center;
    align-items: center;
}

.sellementor-image-box-summary-align-right {
    text-align: right;
    align-items: flex-end;
}

.sellementor-image-box.has-hover-zoom:hover .sellementor-image-box-image {
    transform: scale(1.08);
}

.sellementor-image-box.has-hover-reveal .sellementor-image-box-summary,
.sellementor-image-box.has-hover-reveal .sellementor-image-box-button {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.24s ease, opacity 0.24s ease, transform 0.24s ease, margin-top 0.24s ease, padding 0.24s ease;
}

.sellementor-image-box.has-hover-reveal .sellementor-image-box-body {
    gap: 0;
    padding-top: 14px;
    padding-bottom: 14px;
}

.sellementor-image-box.has-hover-reveal .sellementor-image-box-summary {
    margin-top: 0;
}

.sellementor-image-box.has-hover-reveal .sellementor-image-box-button {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.sellementor-image-box.has-hover-reveal:hover .sellementor-image-box-summary,
.sellementor-image-box.has-hover-reveal:hover .sellementor-image-box-button {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}

.sellementor-image-box.has-hover-reveal:hover .sellementor-image-box-body {
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sellementor-image-box.has-hover-reveal:hover .sellementor-image-box-button {
    padding-top: 10px;
    padding-bottom: 10px;
}

.sellementor-image-box-area-floating-box .sellementor-image-box-body {
    margin: -34px 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.sellementor-image-box-area-classic-curves .sellementor-image-box-body {
    margin: -26px 14px 14px;
    border-radius: 22px 22px 14px 14px;
    background: rgba(255, 255, 255, 0.98);
}

.sellementor-image-box-area-hover-border {
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.sellementor-image-box-area-hover-border:hover {
    border-color: rgba(185, 28, 28, 0.48);
}

.sellementor-image-box-area-side-line .sellementor-image-box-body {
    padding-left: 26px;
}

.sellementor-image-box-area-side-line .sellementor-image-box-body::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 999px;
    background: #b91c1c;
}

.sellementor-image-box-area-shadow-line .sellementor-image-box-body {
    box-shadow: inset 0 4px 0 #b91c1c;
}

.sellementor-image-box-area-simple .sellementor-image-box-body {
    background: #ffffff;
}

@keyframes sellementorImageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sellementorImageZoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes sellementorImageSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sellementorImageSlideLeft {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes sellementorImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sellementorImagePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes sellementorImageBounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-18px); }
    70% { transform: translateY(-9px); }
    90% { transform: translateY(-4px); }
}

@keyframes sellementorImageBounceHover {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-12px); }
    70% { transform: translateY(-6px); }
    90% { transform: translateY(-3px); }
}

.sellementor-post-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 20px;
    color: var(--sellementor-surface, #0f172a);
}

.sellementor-post-list-layout-inline {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sellementor-post-list-items {
    display: grid;
    grid-template-columns: inherit;
    gap: inherit;
    min-width: 0;
}

.sellementor-post-list-scroll {
    min-width: 0;
}

.sellementor-post-list.has-hover-scroll .sellementor-post-list-scroll {
    overflow: hidden;
    overscroll-behavior: contain;
}

.sellementor-post-list.has-hover-scroll:hover .sellementor-post-list-scroll {
    overflow-y: auto;
}

.sellementor-post-list-item {
    display: grid;
    gap: 12px;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.sellementor-post-list-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.sellementor-post-list-title {
    margin: 0;
    min-width: 0;
}

.sellementor-post-list-title a {
    color: inherit;
    text-decoration: none;
}

.sellementor-post-list-meta a,
.sellementor-post-list-excerpt a {
    color: inherit;
    text-decoration: none;
}

.sellementor-post-list-excerpt,
.sellementor-post-list-meta {
    color: rgba(15, 23, 42, 0.76);
    line-height: 1.6;
    min-width: 0;
    overflow-wrap: anywhere;
}

.sellementor-post-list-item > * {
    min-width: 0;
}

.sellementor-post-list-empty {
    padding: 18px;
    border: 1px dashed rgba(226, 232, 240, 0.28);
    border-radius: 14px;
    color: rgba(226, 232, 240, 0.78);
}

.sellementor-node-floating-button {
    position: relative;
    min-height: 68px;
}

.sellementor-node-floating-button .sellementor-floating-button {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* =========================================================================
   Scroll Slide-in Panel widget
   =========================================================================
   Runtime JS moves the live panel DOM into its host section and wraps it in
   a right-edge TRACK. The track is position:absolute pinned to the host's
   right gutter (so it scrolls with the host), and the panel itself is
   position:sticky within the track. That combination gives us:
     * panel locked to the host (scrolls away with it naturally, zero lag)
     * panel visually pinned below the site header / admin bar while the
       host is in view (so the top never gets cut off by fixed chrome)
     * no JavaScript scroll-follow loop

   At rest the panel is a COMPACT teaser card. When the visitor scrolls past
   the trigger threshold it MORPHS into a larger panel revealing the full
   curated content. */

/* Sticky-top offset: default assumes a ~60px theme header.
   WP admin bar adds 32px when logged in. Author's per-widget `offset`
   setting is additive on top via --sellementor-scroll-panel-offset. */
:root {
    --sellementor-scroll-panel-sticky-top: 60px;
}

body.admin-bar {
    --sellementor-scroll-panel-sticky-top: 92px;
}

/* Track wrapper: occupies the right gutter of the host section. Width
   matches the current panel width so the sticky panel sits flush to the
   host's right edge. Defaults are declared here so the track works even
   if the author-specific overrides haven't been copied across yet. */
.sellementor-scroll-panel-track {
    --sellementor-scroll-panel-collapsed-width: 280px;
    --sellementor-scroll-panel-expanded-width: min(54vw, 760px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: max(var(--sellementor-scroll-panel-collapsed-width), 380px);
    z-index: 10;
    pointer-events: none;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sellementor-scroll-panel-track.is-open {
    width: min(max(var(--sellementor-scroll-panel-expanded-width), 700px), 60vw);
}

.sellementor-scroll-panel--live {
    position: sticky;
    top: calc(var(--sellementor-scroll-panel-sticky-top, 60px) + var(--sellementor-scroll-panel-offset, 0px));
    right: 0;
    z-index: 10;
    pointer-events: auto;
    --sellementor-scroll-panel-collapsed-width: 280px;
    --sellementor-scroll-panel-expanded-width: min(54vw, 760px);
    --sellementor-scroll-panel-collapsed-height: 240px;
    --sellementor-scroll-panel-expanded-height: calc(100vh - var(--sellementor-scroll-panel-sticky-top, 60px) - var(--sellementor-scroll-panel-offset, 0px) - 20px);
    --sellementor-scroll-panel-offset: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

/* Host-section padding: while the panel is expanded and wants to push
   the host's content to the left, the host gets a right-side gutter so
   the image / text inside has space to breathe beside the panel. This
   is scoped to the host (not <body>) so sections below are unaffected.
   The padding value tracks the same --expanded-width variable so the
   reserved gutter and the actual panel width stay in lock-step. */
.sellementor-host-push-active {
    padding-right: min(max(var(--sellementor-scroll-panel-expanded-width, min(54vw, 760px)), 700px), 60vw) !important;
    transition: padding-right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

/* Body is the actual visible card. The panel width is driven by the
   track wrapper; the body fills it.
   Collapsed: auto-height, capped at --collapsed-height (shows the teaser).
   Expanded: explicit HEIGHT so the body always fills the configured
   expanded-height, regardless of how much content the author added.
   Without this the body would shrink to its content and look tiny even
   though the author configured a large panel. */
.sellementor-scroll-panel--live .sellementor-scroll-panel-body {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    color: #f8fafc;
    border-radius: 14px;
    box-shadow: -12px 18px 48px rgba(15, 23, 42, 0.3);
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: 340px;
    max-height: max(var(--sellementor-scroll-panel-collapsed-height), 340px);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.3s ease;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-body {
    height: var(--sellementor-scroll-panel-expanded-height);
    max-height: var(--sellementor-scroll-panel-expanded-height);
}

/* When expanded + push-mode, flatten right-side rounding so the card
   meets the host edge cleanly. */
.sellementor-scroll-panel--live.is-open[data-scroll-panel-push-content="1"] .sellementor-scroll-panel-body {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* Header row: label + chevron. Always clickable to toggle. */
.sellementor-scroll-panel--live .sellementor-scroll-panel-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-header:hover,
.sellementor-scroll-panel--live .sellementor-scroll-panel-header:focus-visible {
    filter: brightness(1.08);
    outline: none;
}

.sellementor-scroll-panel-header-icon {
    display: inline-flex;
    font-size: 16px;
    line-height: 1;
}

.sellementor-scroll-panel-header-label {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sellementor-scroll-panel-header-chevron {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-header-chevron {
    transform: rotate(180deg);
}

/* Content area — scrollable when content exceeds current max-height. */
.sellementor-scroll-panel--live .sellementor-scroll-panel-content {
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    line-height: 1.55;
    font-size: 14px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-content > *:first-child {
    margin-top: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-content > *:last-child {
    margin-bottom: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-content a {
    color: inherit;
    text-decoration: underline;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-section + .sellementor-scroll-panel-section {
    margin-top: 18px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-structured-expanded {
    display: none;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-structured-collapsed {
    display: none;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-structured-expanded {
    display: block;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-card {
    position: relative;
    overflow: hidden;
    min-height: 86px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-card.has-image {
    min-height: 112px;
    padding: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-media,
.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-overlay {
    position: absolute;
    inset: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-overlay {
    background: #0f172a;
    opacity: var(--sellementor-priority-overlay-opacity, 0.45);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: inherit;
    padding: 12px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-card:hover,
.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-card:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-title {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-teaser-card.has-image .sellementor-scroll-panel-priority-teaser-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.55);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-section-split {
    display: grid;
    gap: 18px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities,
.sellementor-scroll-panel--live .sellementor-scroll-panel-section--topics {
    border-radius: 14px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities[style],
.sellementor-scroll-panel--live .sellementor-scroll-panel-section--topics[style] {
    padding: 16px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-section-title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: inherit;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-grid {
    display: grid;
    gap: 12px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-card {
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-card.has-image {
    padding: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-media {
    position: relative;
    min-height: 128px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-media img {
    width: 100%;
    height: 100%;
    min-height: 128px;
    object-fit: cover;
    border-radius: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-media-overlay {
    position: absolute;
    inset: 0;
    background: #0f172a;
    opacity: var(--sellementor-priority-overlay-opacity, 0.45);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-card-body {
    padding: 14px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-title {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: inherit;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-title--overlay {
    position: absolute;
    inset: auto 14px 14px 14px;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 16px rgba(15, 23, 42, 0.65);
    z-index: 1;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-priority-summary {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.88;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-item {
    margin: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-link {
    display: grid;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-link:hover,
.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-link:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-thumb {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.08);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-topic-label {
    display: block;
    text-decoration: underline;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-media,
.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-media img {
    min-height: 92px;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-card-body {
    padding: 10px;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-title,
.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-title--overlay {
    font-size: 13px;
    line-height: 1.3;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-summary {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-btn {
    padding: 6px 12px;
    margin: 4px 0 0;
    font-size: 12px;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section-split .sellementor-scroll-panel-section {
    margin-top: 0;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--topics {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--topics[style] {
    padding-left: 16px;
    border-left: 0;
}

/* Dynamic post feed — renders below custom rich content in mixed mode. */
.sellementor-scroll-panel--live .sellementor-scroll-panel-posts {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post:first-child {
    border-top: 0;
    padding-top: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: block;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-title a {
    color: inherit;
    text-decoration: none;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-title a:hover,
.sellementor-scroll-panel--live .sellementor-scroll-panel-post-title a:focus-visible {
    text-decoration: underline;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-excerpt {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    opacity: 0.82;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-readmore {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    opacity: 0.85;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-post-readmore:hover,
.sellementor-scroll-panel--live .sellementor-scroll-panel-post-readmore:focus-visible {
    opacity: 1;
}

/* Button snippet inserted by the rich-editor "Insert Button" shortcut.
   Inherits the panel's text color with a subtle translucent border so it
   reads as a CTA regardless of the author's panel color choices. */
.sellementor-scroll-panel--live .sellementor-scroll-panel-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 8px 0;
    border-radius: 999px;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-btn:hover,
.sellementor-scroll-panel--live .sellementor-scroll-panel-btn:focus-visible {
    background: var(--sellementor-scroll-panel-btn-hover-bg, currentColor);
    color: var(--sellementor-scroll-panel-body-bg-invert, #0f172a);
    opacity: 1;
}

/* Editor placeholder: show new body colors + optional posts-feed hint. */
.sellementor-scroll-panel-placeholder-inner {
    transition: background 0.15s ease, color 0.15s ease;
}

.sellementor-scroll-panel-placeholder-posts-hint {
    margin-top: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.82;
}

/* Close button — only visible when expanded so user can re-collapse. */
.sellementor-scroll-panel--live .sellementor-scroll-panel-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-close {
    display: inline-flex;
}

.sellementor-scroll-panel--live .sellementor-scroll-panel-close:hover {
    opacity: 1;
}

/* Dismissed: slide entirely off the right edge. */
.sellementor-scroll-panel--live.is-dismissed {
    opacity: 0;
    pointer-events: none;
    transform: translateX(110%);
}

/* Out-of-scope: host section is scrolled out of the viewport. Since the
   panel is absolute-positioned inside the host, it's already off-screen
   via native scroll — this just belts-and-suspenders hides any remnant. */
.sellementor-scroll-panel--live.is-out-of-scope {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

@media (max-width: 782px) {
    .sellementor-scroll-panel-track {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
        pointer-events: auto;
    }

    .sellementor-scroll-panel-track.is-open {
        width: 100%;
    }

    .sellementor-scroll-panel--live {
        position: relative;
        top: auto;
        right: auto;
        --sellementor-scroll-panel-expanded-height: auto;
    }

    .sellementor-host-push-active {
        padding-right: 0 !important;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-body,
    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-body {
        height: auto;
        max-height: none;
        min-height: 0;
        border-radius: 14px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-content {
        overflow: visible;
        padding: 14px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-header {
        cursor: default;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-header-chevron,
    .sellementor-scroll-panel--live .sellementor-scroll-panel-close {
        display: none;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-structured-collapsed {
        display: none;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-structured-expanded,
    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-structured-expanded {
        display: block;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section-split,
    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section-split {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities[style],
    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--topics[style] {
        padding: 12px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--topics,
    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--topics {
        padding-left: 0;
        border-left: 0;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-grid,
    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-card {
        padding: 0;
        min-height: 0;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-media,
    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-media img {
        min-height: 84px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-card-body {
        padding: 8px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-card.has-image .sellementor-scroll-panel-priority-card-body {
        display: none;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-summary,
    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-btn {
        display: none;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-title,
    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-title--overlay {
        font-size: 11px;
        line-height: 1.15;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-title--overlay {
        inset: auto 8px 8px 8px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-topics {
        gap: 10px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-topic-link {
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: start;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-topic-thumb {
        aspect-ratio: auto;
        height: 72px;
    }

    .sellementor-scroll-panel--live .sellementor-scroll-panel-topic-label {
        text-decoration: none;
    }
}

@media (max-width: 1025px) and (min-width: 783px) {
    .sellementor-scroll-panel-track {
        width: min(max(var(--sellementor-scroll-panel-collapsed-width, 280px), 320px), 32vw);
    }

    .sellementor-scroll-panel-track.is-open {
        width: clamp(400px, 43vw, 460px);
    }

    .sellementor-host-push-active {
        padding-right: 0 !important;
    }

    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section-split {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--priorities .sellementor-scroll-panel-priority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .sellementor-scroll-panel--live.is-open .sellementor-scroll-panel-section--topics {
        padding-left: 0;
        border-left: 0;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }
}

/* ---- Editor placeholder card (in-flow preview only) ----
   On the live page the widget renders directly under <body>. In the editor,
   we show this compact card inline so authors can select & edit the node. */
.sellementor-scroll-panel-placeholder {
    display: block;
    margin: 12px 0;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(185, 28, 28, 0.06));
    border: 2px dashed rgba(185, 28, 28, 0.55);
    border-radius: 12px;
    color: #0f172a;
}

.sellementor-scroll-panel-placeholder-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sellementor-scroll-panel-placeholder-badge {
    align-self: flex-start;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sellementor-scroll-panel-placeholder-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.85);
}

.sellementor-scroll-panel-placeholder-hint {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(15, 23, 42, 0.7);
}

.sellementor-scroll-panel-placeholder-preview {
    margin-top: 4px;
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 13px;
    line-height: 1.55;
    color: #0f172a;
}

.sellementor-scroll-panel-placeholder-preview > *:first-child {
    margin-top: 0;
}

.sellementor-scroll-panel-placeholder-preview > *:last-child {
    margin-bottom: 0;
}
