/* ── Wrapper ─────────────────────────────────────────────────── */
.rc-wrap-d7a3c591 {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ── Left column ─────────────────────────────────────────────── */
.rc-left-d7a3c591 {
    flex: 1;
    min-width: 0;
}

/* Slides: only active visible */
.rc-slide-d7a3c591 {
    display: none;
}
.rc-slide-d7a3c591.is-active {
    display: block;
}

.rc-section-title-d7a3c591 {
    color: var(--color, #7e6bcc);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 24px;
    line-height: 1.2;
}

/* Items */
.rc-items-d7a3c591 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.rc-item-d7a3c591 {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 16px 20px;
}

.rc-item-title-d7a3c591 {
    color: var(--color, #7e6bcc);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.rc-item-desc-d7a3c591 {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Navigation */
.rc-nav-d7a3c591 {
    display: flex;
    gap: 12px;
}

.rc-nav-btn-d7a3c591 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #0b7a42;
    background: transparent;
    color: #0b7a42;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.rc-nav-btn-d7a3c591:hover {
    background-color: #0b7a42;
    color: #ffffff;
}

.rc-nav-btn-d7a3c591 svg {
    display: block;
    pointer-events: none;
}

/* ── Right column ────────────────────────────────────────────── */
.rc-right-d7a3c591 {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circle container */
.rc-circle-wrap-d7a3c591 {
    position: relative;
    width: 440px;
    height: 440px;
    flex-shrink: 0;
}

/* Circle border — color is set via CSS variable */
.rc-border-d7a3c591 {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--rc-color, #7e6bcc);
    box-shadow: inset 0 0 32px 8px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    transition: border-color 0.4s ease;
}

/* ── Rotating ring (SVG) ─────────────────────────────────────── */
.rc-ring-d7a3c591 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Curved text labels (SVG <text> elements) */
.rc-svg-label-d7a3c591 {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    dominant-baseline: middle;
    opacity: 0.45;
    cursor: pointer;
    transition: opacity 0.4s ease, font-size 0.4s ease;
}

.rc-svg-label-d7a3c591.is-active {
    opacity: 1;
    font-size: 26px;
    font-weight: 700;
}

/* ── Center texts ────────────────────────────────────────────── */
.rc-center-text-d7a3c591 {
    display: none;
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    pointer-events: none;
}

.rc-center-text-d7a3c591.is-active {
    display: flex;
}

/* ── Decorative dot ──────────────────────────────────────────── */
.rc-dec-dot-d7a3c591 {
    position: absolute;
    bottom: -100px;
    left: 20%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--rc-color, #7e6bcc);
    transition: background-color 0.4s ease;
    pointer-events: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rc-circle-wrap-d7a3c591 {
        width: 360px;
        height: 360px;
    }
    .rc-svg-label-d7a3c591.is-active {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .rc-wrap-d7a3c591 {
        flex-direction: column;
        gap: 40px;
    }
    .rc-right-d7a3c591 {
        width: 100%;
        align-items: center;
    }
    .rc-circle-wrap-d7a3c591 {
        width: min(320px, 90vw);
        height: min(320px, 90vw);
    }
    .rc-svg-label-d7a3c591 {
        font-size: 11px;
    }
    .rc-svg-label-d7a3c591.is-active {
        font-size: 16px;
    }
    .rc-center-text-d7a3c591 {
        padding: 60px 40px;
        font-size: 0.8rem;
    }
    .rc-dec-dot-d7a3c591 {
        width: 70px;
        height: 70px;
        bottom: -20px;
    }
}
