/* ============================================
   Sound Technologies - Home: About strip countries
   Chip-style country list with flags
   Mobile-first
   Scoped under .st-home-about-countries to avoid
   collisions with the About page country block
   ============================================ */

.st-home-about-countries {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st-home-about-countries .st-country-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--st-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--st-dark);
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.st-home-about-countries .st-country-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.st-home-about-countries .st-country-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Tablet */
@media (min-width: 600px) {
  .st-home-about-countries {
    margin: 28px 0 36px;
  }

  .st-home-about-countries .st-country-chip {
    font-size: 0.9rem;
    padding: 6px 13px 6px 6px;
  }

  .st-home-about-countries .st-country-flag {
    width: 24px;
    height: 18px;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .st-home-about-countries {
    margin: 32px 0 40px;
  }
}
