.widgets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.widget-item {
  width: 300px;
  height: 200px;
}

@media (max-width: 768px) {
  .widgets-row {
    flex-direction: column;
    align-items: center;
  }
}
