*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: #f8fafc;
}

.layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1600px;
  margin: 20px auto;
  padding: 0 14px;
  gap: 30px;
}

.left-col,
.right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  max-width: 280px;
  gap: 20px;
}

.center-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1100px;
}

@media (max-width: 1400px) {
    .center-col {
      max-width: 800px;
    }
}


@media (max-width: 800px) {
  .layout {
      padding: 0 16px;
  }
  .right-col {
    display: none;
  }
}

@media (max-width: 800px) {
  .left-col {
    display: none;
  }
  .layout {
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .center-col {
    flex: unset;
  }
  .layout {
    margin-top: 8px;
  }
}


/*@media (min-width: [min]) and (max-width: [max]) {*/
  
/*}*/