.ls-ce2d7de1-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.ls-ce2d7de1-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-ce2d7de1-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.ls-ce2d7de1-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.ls-ce2d7de1-slide.active .ls-ce2d7de1-bg {
    transform: scale(1);
}

.ls-ce2d7de1-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.ls-ce2d7de1-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 30px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.9s ease 0.4s;
}

.ls-ce2d7de1-slide.active .ls-ce2d7de1-content {
    transform: translateY(0);
    opacity: 1;
}

.ls-ce2d7de1-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
}

.ls-ce2d7de1-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.ls-ce2d7de1-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.ls-ce2d7de1-nav button {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    font-size: 1rem;
}

.ls-ce2d7de1-nav button:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}