/* [ CONTAINERS ] */
.container {
  width: min(1140px, 100%);
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.container-wide {
  width: min(1600px, 100%);
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.container-narrow {
  width: min(800px, 100%);
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 595px) {
  .container,
  .container-wide,
  .container-narrow {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* [ SPACING / PADDING / MARGIN / GAP ] */
.tiny-spacing {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.min-spacing {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mid-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.max-spacing {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* [ MARGIN ] */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 2rem !important;
}
.mb-6,
.my-6 {
  margin-bottom: 2.5 !important;
}
.mb-7,
.my-7 {
  margin-bottom: 3rem !important;
}
.mb-8,
.my-8 {
  margin-bottom: 3.5rem !important;
}
.mb-9,
.my-9 {
  margin-bottom: 4rem !important;
}
.mb-10,
.my-10 {
  margin-bottom: 4.5rem !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mt-5,
.my-5 {
  margin-top: 2rem !important;
}
.mt-6,
.my-6 {
  margin-top: 2.5 !important;
}
.mt-7,
.my-7 {
  margin-top: 3rem !important;
}
.mt-8,
.my-8 {
  margin-top: 3.5rem !important;
}
.mt-9,
.my-9 {
  margin-top: 4rem !important;
}
.mt-10,
.my-10 {
  margin-top: 4.5rem !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* [ GAP ] */
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 2rem !important;
}

.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}

/* [ SIZES ] */
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
.h-100-vh {
  min-height: 100vh;
}
.w-100-vw {
  min-width: 100vw;
}
/* Responsive */
.wr-100 {
  width: min(100px, 100%) !important;
}
.wr-200 {
  width: min(200px, 100%) !important;
}
.wr-300 {
  width: min(300px, 100%) !important;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.centered-content.direction-row {
  flex-direction: row;
}

.grid-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-row--fill {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.flex-row {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.wrap-all > * {
  width: min(200px, 100%);
}
.grow-1 {
  flex-grow: 1;
}

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

@media screen and (max-width: 595px) {
  .row__double-column:is(:first-child) {
    grid-column: auto;
  }
  .row__double-column:is(:last-child) {
    grid-column: auto;
  }
}
