/* Kitchen Sink Layout Components */
.ks--buttons-section {
  display: flex;
  flex-direction: column;
  width: fit-content;
  justify-content: center;

  border: 1px solid #d1d1d1;
  border-radius: 8px;
  padding: 1.5rem;

  margin: 2rem auto;
}

.ks--column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 1.5rem;
  min-width: 13.9rem;
  min-height: 3.06rem;
}

.ks--row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.ks--row-standard {
  align-items: flex-start;
}

.ks--row-dark {
  background-color: var(--tertiary-color);
  color: var(--secondary-color);
}

.ks--reference {
  color: var(--tertiary-color-hover);
}

.ks--text-showcase {
  text-align: left;
}

/* Responsive */
@media (max-width: 67.75rem) {
  .ks--buttons-section {
    flex-direction: column;
    /* make it scroll horizontally and respect max-width */
    overflow-x: auto;
    max-width: 100%;
  }

  .ks--column {
    margin: 0 0 1.5rem 0;
  }

  .ks--titles-row {
    display: none;
  }

  .ks--row {
    padding: 0.5rem 0;
    flex-direction: column;
  }

  .ks--row-standard {
    align-items: center;
  }
}
