.uma-fafff2fd-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}
.uma-fafff2fd-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.uma-fafff2fd-item.active {
    flex: 5;
}
.uma-fafff2fd-image {
    width: 100%;
}
.uma-fafff2fd-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.uma-fafff2fd-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.uma-fafff2fd-description {
    display: none;
}
.uma-fafff2fd-item.active .uma-fafff2fd-description {
    display: block;
}

@media (max-width: 767px) {
    .uma-fafff2fd-wrapper {
        flex-direction: column;
    }
    .uma-fafff2fd-item {
        flex: none;
        width: 100%;
    }
    .uma-fafff2fd-item.active {
        flex: none;
    }
}
