/* ── Animated circle decoration ── */

.ss-anim-wrap {
    position: absolute;
    top: 0;
    left: -20%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ss-anim-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* ── Panel background (custom color not in Tailwind config) ── */

.ss-panel {
    background-color: #101D49;
    z-index: 1;
}

/* ── WYSIWYG typography ── */

.ss-content h1,
.ss-content h2,
.ss-content h3,
.ss-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.ss-content p {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 768px) {
    .ss-content h1,
    .ss-content h2,
    .ss-content h3,
    .ss-content h4 {
        font-size: 26px;
    }
}

/* ── Dot navigation (needs !important to override global button resets) ── */

.success-stories-block .ss-dot {
    width: 8px !important;
    height: 8px !important;
    min-height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 200ms ease;
}

.success-stories-block .ss-dot:hover {
    background: rgba(255, 255, 255, 0.6) !important;
}

.success-stories-block .ss-dot.is-active {
    background: #FFFFFF !important;
}
