/* --- Carousel Layout --- */
.lip-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.lip-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.lip-slide {
    min-width: 300px;
    max-width: 300px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}

.lip-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s ease;
}

/* --- Center Item Focus --- */
.lip-slide.active img {
    filter: none;
    transform: scale(1);
    opacity: 1;
}

/* --- Side items blurred + dimmed --- */
.lip-slide.dim img {
    filter: blur(4px) brightness(0.6);
    transform: scale(0.85);
    opacity: 0.7;
}

/* Text styling */
.lip-slide h3 {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.lip-slide p {
    font-size: 1rem;
    color: #d0438d;
    font-weight: bold;
}

/* Headings */
.lip-heading {
    font-size: 2rem;
    font-weight: 700;
}

.lip-sub {
    font-size: 1rem;
    color: #777;
}

