/*
 * Original Design Specifications
 * Target: > 1800px
 * Test Resolution: 1920 x 1080
 */
:root {
  --button-list-gap: 2.8rem;
}

/*
 * XL Media Query (1280px)
 * Target: 1535px > 1280px
 * Test Resolution: 1280 x 720
 */
@media screen and (max-width: 1535px) {
  :root {
    --button-list-gap: 2.4rem;
  }
}

/*
 * S Media Query (640px)
 * Target: < 767px
 * Test Resolution: 390 x 844
 */
@media screen and (max-width: 767px) {
  :root {
    --button-list-gap: 1.5rem;
  }
}

.button-list {
  display: flex;
  flex-direction: column;
  gap: var(--button-list-gap);
  align-items: stretch;
}
