.ia-dd1b90b0-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    gap: 15px;
    overflow: hidden;
}

.ia-dd1b90b0-item {
    display: flex;
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    background-color: #f7f7f7;
}

.ia-dd1b90b0-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.ia-dd1b90b0-item.is-active {
    flex: 3;
}

.ia-dd1b90b0-item.is-active .ia-dd1b90b0-image-wrapper {
    width: 50%;
    filter: grayscale(0%);
}

.ia-dd1b90b0-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ia-dd1b90b0-item.is-active .ia-dd1b90b0-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.ia-dd1b90b0-icon {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1;
}
.ia-dd1b90b0-icon svg {
    width: 24px;
    height: 24px;
}

.ia-dd1b90b0-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
}

.ia-dd1b90b0-description {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.5;
}

.ia-dd1b90b0-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 767px) {
    .ia-dd1b90b0-container {
        flex-direction: column;
        height: auto;
    }
    .ia-dd1b90b0-item {
        flex: none;
        height: 120px;
        transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .ia-dd1b90b0-item.is-active {
        flex: none;
        height: 380px;
    }
    .ia-dd1b90b0-item.is-active .ia-dd1b90b0-image-wrapper {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    .ia-dd1b90b0-content {
        width: 100%;
        height: 50%;
        padding: 20px;
    }
}
