.diferenciales-list-e9d08e4e {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Default gap, overriden by Elementor */    
}

/* Flex layout with stretch alignment for same height items */
.diferencial-item-e9d08e4e {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px; /* Default gap, overriden by Elementor */
		height: 150px;
}

.diferencial-image-e9d08e4e {
    flex-shrink: 0;
    width: 350px; /* Default width, overriden by Elementor */
	border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    position: relative;
}

.diferencial-image-e9d08e4e img {
    max-width: 100%;
    display: block;
    object-fit: contain;
	height: 160px;
	width: auto;
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
	object-position: bottom;
}

/* Flex column with gap for spacing between texts */
.diferencial-content-e9d08e4e {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    gap: 10px; /* Default gap, overriden by Elementor */
}

/* Reset margins since we use flex gap for spacing */
.diferencial-title-e9d08e4e,
.diferencial-subtitle-e9d08e4e,
.diferencial-desc-e9d08e4e,
.diferencial-desc-e9d08e4e p:last-child {
    margin: 0;
}

.diferencial-subtitle-e9d08e4e {
    font-weight: normal;
}

@media (max-width: 767px) {
    .diferencial-item-e9d08e4e {
        flex-direction: column;
        align-items: center;
        text-align: center;
		height: auto;
    }
    
    .diferencial-image-e9d08e4e {
        width: 100%; 
		height: 150px;
		border-top-left-radius: 22px;
    	border-bottom-left-radius: 0;
		border-top-right-radius: 22px;
    	border-bottom-right-radius: 0;
    }
    
    .diferencial-image-e9d08e4e img {
        
    }
}