.mvs-15989de8-container {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
    --mvs-expanded-width: 70%;
    --mvs-shrunk-width: 30%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mvs-15989de8-col {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex 0.6s ease-in-out, border-color 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.mvs-15989de8-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.6s ease, backdrop-filter 0.6s ease;
    z-index: 1;
}

.mvs-15989de8-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: #fff;
    max-width: 80%;
}

.mvs-15989de8-title {
    color: #fff;
    margin-bottom: 0;
    transition: transform 0.6s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mvs-15989de8-hidden-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease, transform 0.6s ease;
    transform: translateY(20px);
    margin-top: 20px;
}

.mvs-15989de8-desc {
    color: #fff;
    margin-bottom: 15px;
}

.mvs-15989de8-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: #f39c12;
    font-size: 20px;
    animation: pulse-15989de8 2s infinite;
}

@keyframes pulse-15989de8 {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Hover states */
@media (min-width: 768px) {
    .mvs-15989de8-container:hover .mvs-15989de8-col:hover {
        flex: var(--mvs-expanded-width) !important;
    }

    .mvs-15989de8-container:hover .mvs-15989de8-col:not(:hover) {
        flex: var(--mvs-shrunk-width) !important;
    }

    .mvs-15989de8-col:hover .mvs-15989de8-overlay {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mvs-15989de8-col:hover .mvs-15989de8-hidden-content {
        opacity: 1;
        max-height: 300px;
        transform: translateY(0);
    }

    .mvs-15989de8-col:hover .mvs-15989de8-title {
        transform: translateY(-10px);
    }
}

/* Responsive - Stacking on mobile */
@media (max-width: 767px) {
    .mvs-15989de8-container {
        flex-direction: column;
        height: auto;
    }
    .mvs-15989de8-col {
        min-height: 300px;
        flex: none !important;
        width: 100%;
    }
    .mvs-15989de8-col .mvs-15989de8-hidden-content {
        opacity: 1;
        max-height: 300px;
        transform: translateY(0);
    }
    .mvs-15989de8-col .mvs-15989de8-title {
        transform: translateY(-10px);
    }
}