@charset "utf-8";
.foundation-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 85rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 64em) {
  .foundation-grid {
    padding: 0;
  }
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.w-full { width: 100%; }
.h-full { height: 100%; }
