.pp-wrapper-bb428b14 {
    position: relative;
    overflow: hidden;
    height: 500px; /* Default overridden by control */
    width: 100%;
    background-color: #fafafa;
    border-radius: 12px;
}

.pp-container-bb428b14 {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: none; /* Prevent browser handling of gestures */
}

.pp-slide-bb428b14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
    background-color: #ffffff;
}

.pp-slide-inner-bb428b14 {
    max-width: 800px;
}

.pp-subtitle-bb428b14 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pp-title-bb428b14 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pp-excerpt-bb428b14 {
    font-size: 1.1rem;
    line-height: 1.6;
}

.pp-nav-bb428b14 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pp-nav-dot-bb428b14 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pp-nav-dot-bb428b14:hover {
    background-color: rgba(0,0,0,0.6);
}

.pp-nav-dot-bb428b14.active {
    background-color: #000;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .pp-slide-bb428b14 {
        padding: 30px;
        padding-left: 50px; /* Space for dots */
    }
    .pp-title-bb428b14 {
        font-size: 2rem;
    }
}