.ira-container-435ec367 {
    display: flex;
    gap: 15px;
    width: 100%;
    overflow: hidden;
}

.ira-item-435ec367 {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #f9f9f9;
}

.ira-item-435ec367.active {
    flex: 5;
}

.ira-content-435ec367 {
    width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    transition: opacity 0.4s ease, padding 0.4s ease, width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.ira-item-435ec367.active .ira-content-435ec367 {
    width: 40%;
    opacity: 1;
    padding: 30px;
}

.ira-title-435ec367 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.ira-location-435ec367 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.ira-desc-435ec367 {
    margin: 0;
    line-height: 1.6;
}

.ira-image-wrap-435ec367 {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.ira-image-wrap-435ec367 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.ira-item-435ec367.active .ira-image-wrap-435ec367 img {
    filter: grayscale(0%);
}

@media (max-width: 767px) {
    .ira-container-435ec367 {
        flex-direction: column;
    }
    
    .ira-item-435ec367 {
        flex-direction: column;
    }
    
    .ira-content-435ec367 {
        width: 100%;
        height: 0;
        transition: opacity 0.4s ease, padding 0.4s ease, height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .ira-item-435ec367.active .ira-content-435ec367 {
        width: 100%;
        height: auto;
        padding: 20px;
    }
}