/**
 * @file
 * Is the responsive layout composition.
 *
 * Is intented to set basic layout rules to regions and global blocks.
 * Also add grid common rules.
 */


/**
 * Grid row
 */

.grid-row {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}
@media all and (min-width: 750px) {
  .grid-row {
    width: 82%;
    padding: 0;
  }
}
@media all and (min-width: 1300px) {
  .grid-row--12 {
    max-width: 1440px;
  }
  .grid-row--10 {
    max-width: 1200px;
  }
  .grid-row--8 {
    max-width: 960px;
  }
  .grid-row--6 {
    max-width: 710px;
  }
}

.node:has(.node__content--push_pages) {
  display: flex;
  flex-direction: column;
  gap: 32px;
}



@media all and (min-width:1300px) {
  .node:has(.node__content--push_pages) {
    flex-direction: row;
  }

  .node:has(.node__content--push_pages) .node__content {
    width: 100%;
    max-width: 950px;
  }

  .node__content--push_pages {
    max-width: 458px;
    width: 100%;
  }
}
