/* Mobile-first breakpoints per prompt */

@media (min-width: 640px) {
  .sm\:text-left {
    text-align: left;
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
