/*
 * Original Design Specifications
 * Target: > 1800px
 * Test Resolution: 1920 x 1080
 */
:root {
  --tag-height: 3.5rem;
  --tag-padding-x: 2rem;
  --tag-font-size: 2rem;
}

/*
 * XL Media Query (1280px)
 * Target: 1535px > 1280px
 * Test Resolution: 1280 x 720
 */
@media screen and (max-width: 1535px) {
  :root {
    --tag-height: 2.2rem;
    --tag-padding-x: 1.5rem;
    --tag-font-size: 1.4rem;
  }
}

/*
 * S Media Query (640px)
 * Target: < 767px
 * Test Resolution: 390 x 844
 */
@media screen and (max-width: 767px) {
  :root {
    --tag-height: 2rem;
    --tag-padding-x: 1.2rem;
    --tag-font-size: 1.2rem;
  }
}

.tag {
  display: block;
  min-width: var(--tag-height);
  color: var(--theme-color-primary);
  background-color: var(--theme-color-accent);
  border-radius: calc(var(--tag-height) / 2);
  font-size: var(--tag-font-size);
  line-height: var(--tag-height);
  padding: 0 var(--tag-padding-x);
}
