/* Contenido Principal */
.content {
  flex: 1;
  display: grid;
  overflow-x: hidden;
  overflow-y: auto;
  grid-template-rows: auto 1fr; /* Define la altura de la primera columna*/
  gap: 0.75em;
  padding: 0.75em;
}

/* Primera fila */
.row:first-child {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

/* Segunda fila */
.row:last-child {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0.5em;
  align-items: center;
}

@media (max-width: 1300px) or (max-height: 915px) {
  .row > * {
    max-width: 52rem !important;
  }

  .row:last-child {
    flex-direction: column;
    justify-content: start;
  }
}

/* Segunda fila primera columna */
.row:last-child > *:first-child {
  justify-self: end;
}

/* Segunda fila segunda columna */
.row:last-child > *:last-child:not(:first-child) {
  justify-self: start;
}
