.is-wrapper-1439ee7f {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    overflow: hidden;
}

.is-item-1439ee7f {
    flex: 1 1 0;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.is-item-1439ee7f.is-active {
    flex: 4 1 0;
    cursor: default;
}

.is-content-1439ee7f {
    flex: 0 0 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
    white-space: normal;
}

.is-content-inner-1439ee7f {
    width: 250px; /* fixed width inside to prevent text jumping during expansion */
    padding: 0 2rem;
}

.is-item-1439ee7f.is-active .is-content-1439ee7f {
    flex: 1 1 auto;
    opacity: 1;
}

.is-image-wrap-1439ee7f {
    flex: 1 1 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.is-item-1439ee7f.is-active .is-image-wrap-1439ee7f {
    flex: 0 0 50%;
}

.is-image-1439ee7f {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.is-item-1439ee7f.is-active .is-image-1439ee7f {
    filter: grayscale(0%);
}

.is-content-1439ee7f h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.is-content-1439ee7f p {
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .is-wrapper-1439ee7f {
        flex-direction: column;
        height: 800px !important;
    }
    .is-item-1439ee7f.is-active .is-image-wrap-1439ee7f {
        flex: 0 0 40%;
    }
    .is-content-inner-1439ee7f {
        width: 100%;
        padding: 1rem;
    }
}
