/* CSS rules for SONAPRO Interactive Panels */

.sonapro-wrapper-47149c0a {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 580px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px -10px rgba(76, 55, 117, 0.05);
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.sonapro-panel-47149c0a {
    flex: 1 1 50%;
    position: relative;
    padding: 50px;
    background-color: #ffffff;
    transition: flex 650ms cubic-bezier(0.22, 1, 0.36, 1), background-color 400ms ease;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Border separator between panels */
.sonapro-panel-47149c0a:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.sonapro-panel-inner-47149c0a {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Header */
.sonapro-panel-header-47149c0a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sonapro-num-47149c0a {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #4c3775;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sonapro-label-47149c0a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4c3775;
    opacity: 0.8;
}

/* Title */
.sonapro-title-47149c0a {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.3;
    transition: font-size 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Content Area */
.sonapro-body-47149c0a {
    flex-grow: 1;
    overflow: hidden;
    opacity: 1;
    transition: opacity 500ms ease;
}

.sonapro-body-inner-47149c0a {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    max-width: 600px;
}

.sonapro-body-inner-47149c0a p {
    margin-bottom: 1.25rem;
}

.sonapro-body-inner-47149c0a p:last-child {
    margin-bottom: 0;
}

/* Footer / Interactions */
.sonapro-footer-47149c0a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.sonapro-active-indicator-47149c0a {
    height: 3px;
    width: 0;
    background-color: #4c3775;
    transition: width 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sonapro-arrow-47149c0a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(76, 55, 117, 0.15);
    color: #4c3775;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), background-color 400ms, border-color 400ms;
}

.sonapro-arrow-47149c0a svg {
    width: 20px;
    height: 20px;
    fill: none;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER / ACTIVE STATES (Flex Layout Expansion) */
/* Initially Panel 1 is active-initially, but as soon as wrapper is interacted with, it yields */

/* Hover logic on wrapper */
.sonapro-wrapper-47149c0a.is-hovered .sonapro-panel-47149c0a {
    flex: 1 1 28%;
}

.sonapro-wrapper-47149c0a.is-hovered .sonapro-panel-47149c0a.is-active {
    flex: 1 1 72%;
    background-color: #faf9fc;
}

/* Default active-initially state when wrapper has NOT been interacted with */
.sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a.active-initially {
    flex: 1 1 72%;
    background-color: #faf9fc;
}

/* Active Panel Specific Elements transition */
.sonapro-panel-47149c0a.is-active .sonapro-num-47149c0a,
.sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a.active-initially .sonapro-num-47149c0a {
    transform: translateY(-5px) scale(1.1);
}

.sonapro-panel-47149c0a.is-active .sonapro-active-indicator-47149c0a,
.sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a.active-initially .sonapro-active-indicator-47149c0a {
    width: 60px;
}

.sonapro-panel-47149c0a.is-active .sonapro-arrow-47149c0a,
.sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a.active-initially .sonapro-arrow-47149c0a {
    background-color: #4c3775;
    border-color: #4c3775;
    color: #ffffff;
}

.sonapro-panel-47149c0a.is-active .sonapro-arrow-47149c0a svg,
.sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a.active-initially .sonapro-arrow-47149c0a svg {
    transform: translateX(3px);
    stroke: #ffffff;
}

/* Shrinking panel specifics */
.sonapro-wrapper-47149c0a.is-hovered .sonapro-panel-47149c0a:not(.is-active) .sonapro-body-47149c0a,
.sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a:not(.active-initially) .sonapro-body-47149c0a {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .sonapro-wrapper-47149c0a {
        min-height: 520px;
    }
    .sonapro-panel-47149c0a {
        padding: 40px;
    }
    .sonapro-title-47149c0a {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    /* Vertical layout on mobile */
    .sonapro-wrapper-47149c0a {
        flex-direction: column;
        min-height: auto;
    }
    
    .sonapro-panel-47149c0a {
        flex: none !important;
        width: 100% !important;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transition: padding 500ms ease, background-color 500ms ease;
    }

    .sonapro-panel-47149c0a:last-child {
        border-bottom: none;
    }

    /* Content toggling on mobile via class */
    .sonapro-panel-47149c0a .sonapro-body-47149c0a {
        max-height: 0;
        opacity: 0;
        transition: max-height 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms ease;
    }

    /* Active state vertical expands */
    .sonapro-panel-47149c0a.is-active .sonapro-body-47149c0a,
    .sonapro-wrapper-47149c0a:not(.is-hovered) .sonapro-panel-47149c0a.active-initially .sonapro-body-47149c0a {
        max-height: 1000px; /* arbitrary high limit to allow dynamic expansion */
        opacity: 1;
        margin-top: 15px;
    }
}

/* Accessibility features */
@media (prefers-reduced-motion: reduce) {
    .sonapro-panel-47149c0a,
    .sonapro-num-47149c0a,
    .sonapro-active-indicator-47149c0a,
    .sonapro-arrow-47149c0a,
    .sonapro-arrow-47149c0a svg,
    .sonapro-body-47149c0a {
        transition: none !important;
    }
}
