Link: https://www.youtube.com/watch?v=TpLS6L5sVlc

/* MAGICAL CSS Rule */
selector .elementor-container .elementor-row {
flex-wrap: wrap;
/* uncomment for columns alignment */
/* justify-content: center; */
}

/* Responsive Columns Alignment – Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
selector .elementor-container .elementor-row {
justify-content: end;
}
}

/* Media Query – Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
selector {
width: 100%; /* or whatever you like */
}
}

/* Media Query – Mobile */
@media (max-width: 767px) {
selector {
width: 100%; /* or whatever you like */
}
}

/* Merged Media Query – Tablet and Mobile */
/*
@media (min-width: 1px) and (max-width: 1024px) {
selector {
width: 100%;
}
}
*/