.ia-4c2edc8b-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    gap: 12px;
    border-radius: 16px;
    transform: translateZ(0); 
}

.ia-4c2edc8b-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    border-radius: 16px;
    min-width: 60px;
    will-change: flex;
}

.ia-4c2edc8b-item.is-active {
    flex: 5;
    cursor: default;
}

.ia-4c2edc8b-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: grayscale(100%);
    z-index: 1;
    will-change: filter, left, width;
}

.ia-4c2edc8b-item.is-active .ia-4c2edc8b-bg {
    filter: grayscale(0%);
    width: 60%;
    left: 40%;
}

.ia-4c2edc8b-content {
    position: relative;
    z-index: 2;
    width: 40%;
    padding: 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease 0s, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity, transform;
}

.ia-4c2edc8b-item.is-active .ia-4c2edc8b-content {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.6s ease 0.3s, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
}

.ia-4c2edc8b-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #125557; /* Brand Primary */
}

.ia-4c2edc8b-subtitle {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F; /* Brand Secondary */
}

.ia-4c2edc8b-button {
    display: inline-block;
    padding: 10px 20px;
    background: #125557; /* Brand Primary */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    align-self: flex-start;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.ia-4c2edc8b-button:hover {
    background: #61CE70; /* Brand Accent */
    color: #ffffff;
}

@media (max-width: 767px) {
    .ia-4c2edc8b-container {
        flex-direction: column;
        height: auto !important;
        min-height: 600px;
    }
    .ia-4c2edc8b-item {
        min-height: 80px;
    }
    .ia-4c2edc8b-item.is-active .ia-4c2edc8b-bg {
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
    }
    .ia-4c2edc8b-content {
        width: 100%;
        height: 50%;
        margin-top: auto;
        padding: 20px;
        transform: translateY(20px);
    }
    .ia-4c2edc8b-item.is-active .ia-4c2edc8b-content {
        transform: translateY(0);
    }
}
